From b955eed506f28d9d92c0e5da921f52bbc17565ae Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 10:04:30 -0400 Subject: [PATCH 01/42] Project scaffolding (pyproject, src layout, configs, dormant CI, docs skeleton) Co-Authored-By: Claude Fable 5 --- .gitattributes | 9 +++++ .github/workflows/ci.yml | 51 +++++++++++++++++++++++++++ .gitignore | 25 +++++++++++++ CHANGELOG.md | 14 ++++++++ LICENSE | 2 +- README.md | 45 ++++++++++++++++++++++++ crowdin.yml | 8 +++++ docs/en/fidelity.md | 14 ++++++++ docs/en/index.md | 20 +++++++++++ mkdocs.yml | 29 +++++++++++++++ pyproject.toml | 76 ++++++++++++++++++++++++++++++++++++++++ scripts/check.py | 32 +++++++++++++++++ src/sil_lift/__init__.py | 9 +++++ src/sil_lift/py.typed | 0 tests/test_package.py | 15 ++++++++ 15 files changed, 348 insertions(+), 1 deletion(-) create mode 100644 .gitattributes create mode 100644 .github/workflows/ci.yml create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 README.md create mode 100644 crowdin.yml create mode 100644 docs/en/fidelity.md create mode 100644 docs/en/index.md create mode 100644 mkdocs.yml create mode 100644 pyproject.toml create mode 100644 scripts/check.py create mode 100644 src/sil_lift/__init__.py create mode 100644 src/sil_lift/py.typed create mode 100644 tests/test_package.py diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f9df029 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# Normalize line endings for source files. +* text=auto + +# Fidelity-critical payloads: corpus fixtures and vendored schemas/XSLTs must be +# stored byte-for-byte as fetched — git must never touch their line endings +# (byte-identity round-trip tests depend on this). +tests/corpus/** -text +src/sil_lift/schemas/*.rng -text +tests/tools/xslt/* -text diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..1ad36c6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,51 @@ +# DORMANT: this repo has no remote yet (Phase 3 is local-only, decision D8). +# The workflow is authored so that pushing to a remote later activates CI with +# no restructuring. Until then, the equivalent local command is: +# python scripts/check.py +name: CI + +on: + push: + branches: [main] + pull_request: + +jobs: + test: + strategy: + fail-fast: false + matrix: + python-version: ["3.11", "3.12", "3.13", "3.14"] + os: [ubuntu-latest, windows-latest] + include: + # macOS as a canary on the latest Python only. + - python-version: "3.14" + os: macos-latest + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Install + run: python -m pip install -e .[dev] + - name: Lint + run: | + python -m ruff check . + python -m ruff format --check . + - name: Type-check + run: python -m mypy + - name: Test + run: python -m pytest --cov=sil_lift --cov-report=term-missing + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - name: Build distribution + run: | + python -m pip install build twine + python -m build + python -m twine check dist/* diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..188f0a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# Environments +.venv/ +venv/ + +# Byte-compiled / caches +__pycache__/ +*.py[cod] +.mypy_cache/ +.ruff_cache/ +.pytest_cache/ +.hypothesis/ +.coverage +coverage.xml +htmlcov/ + +# Build artifacts +build/ +dist/ +*.egg-info/ + +# Docs build +site/ + +# Generated corpus (synthetic large files — regenerate with tests/tools/generate_large.py) +tests/corpus/generated/ diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c416d92 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +During 0.x, minor releases may contain breaking changes. + +## [Unreleased] + +### Added + +- Project scaffolding: package skeleton, vendored LIFT 0.13 RELAX NG schema, + test corpus with provenance, corpus-prep and large-file-generator tooling. diff --git a/LICENSE b/LICENSE index fb49ab9..c8d51cc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2026 SIL LSDev +Copyright (c) 2026 SIL Global Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md new file mode 100644 index 0000000..f3d8907 --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +# sil-lift + +A Python library for [LIFT](https://github.com/sillsdev/lift-standard) (Lexicon +Interchange Format) 0.13: lossless read/write of the LIFT folder (`.lift` + +`.lift-ranges` + media references), RELAX NG and semantic validation, and +canonical sorting — with streaming APIs for large lexicons. + +```python +import sil_lift + +lex = sil_lift.load("thesaurus.lift") +for entry in lex.entries: + ... +lex.save() +``` + +**Status: pre-release, under active development.** The API is not yet stable. + +## Fidelity guarantees + +`sil-lift` treats LIFT as an *interchange* format: it never drops what it does +not understand. + +- Entries you did not modify are written back **byte-identical**. +- Entries you did modify are re-serialized in a documented canonical form, with + all out-of-schema content (unknown elements, attributes, comments) preserved. + +## Scope + +- LIFT **0.13 only** — the de facto standard version. Other versions are + rejected with a clear error; one-off migration of legacy files is possible + with the XSLTs in the [lift-standard](https://github.com/sillsdev/lift-standard) + repository. +- No merging (see [Chorus](https://github.com/sillsdev/chorus)) and no LDML + interpretation (writing-system files are carried, not parsed). + +## Versioning + +[SemVer](https://semver.org/). During 0.x, minor releases may contain breaking +changes; see `CHANGELOG.md`. The public API is exactly what `sil_lift` +re-exports at the top level. + +## License + +[MIT](LICENSE) diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 0000000..b5efd21 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,8 @@ +# Crowdin source/translation mapping (decision B8/D11). +# Dormant until a remote repo and a Crowdin project exist (post-Phase 3, D8). +# docs/en/ is the only human-edited docs tree; translated trees +# (docs//) are machine-managed by Crowdin sync and must never be +# hand-edited in-repo. +files: + - source: /docs/en/**/*.md + translation: /docs/%two_letters_code%/**/%original_file_name% diff --git a/docs/en/fidelity.md b/docs/en/fidelity.md new file mode 100644 index 0000000..a69bdc2 --- /dev/null +++ b/docs/en/fidelity.md @@ -0,0 +1,14 @@ +# Fidelity guarantees + +LIFT is an *interchange* format: the cardinal rule is **never drop what you do +not understand**. `sil-lift`'s contract: + +- **Untouched entries are written back byte-identical.** Opening a file and + saving it does not reformat, reorder, or re-escape entries you did not + modify. +- **Modified entries are re-serialized canonically and completely.** All + out-of-schema content — unknown elements, unknown attributes, XML comments — + is preserved in place. + +The precise rules (including the short list of documented normalizations at +the document level) will be specified here as the writer lands. diff --git a/docs/en/index.md b/docs/en/index.md new file mode 100644 index 0000000..b7fbbdf --- /dev/null +++ b/docs/en/index.md @@ -0,0 +1,20 @@ +# sil-lift + +A Python library for [LIFT](https://github.com/sillsdev/lift-standard) +(Lexicon Interchange Format) 0.13: lossless read/write of the LIFT folder +(`.lift` + `.lift-ranges` + media references), schema and semantic +validation, and canonical sorting — with streaming APIs for large lexicons. + +**Status: pre-release, under active development.** + +```python +import sil_lift + +lex = sil_lift.load("thesaurus.lift") +for entry in lex.entries: + ... +lex.save() +``` + +Task-oriented guides (reading and editing a lexicon, validating, working with +large files, media handling) will be added as the corresponding features land. diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..6db1b6c --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,29 @@ +site_name: sil-lift +site_description: >- + Read, write, and validate LIFT (Lexicon Interchange Format) 0.13 lexicons. +docs_dir: docs + +theme: + name: material + features: + - navigation.sections + - content.code.copy + +plugins: + - search + - i18n: + docs_structure: folder + fallback_to_default: true + languages: + - locale: en + name: English + default: true + build: true + - mkdocstrings: + handlers: + python: + paths: [src] + +nav: + - Home: index.md + - Fidelity guarantees: fidelity.md diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..cf261a1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,76 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "sil-lift" +dynamic = ["version"] +description = "Read, write, and validate LIFT (Lexicon Interchange Format) 0.13 lexicon files" +readme = "README.md" +requires-python = ">=3.11" +license = "MIT" +license-files = ["LICENSE"] +authors = [{ name = "SIL Global" }] +keywords = [ + "LIFT", + "lexicon", + "lexicography", + "linguistics", + "dictionary", + "FieldWorks", + "FLEx", + "SIL", +] +classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +dependencies = ["lxml>=5.0"] + +[project.optional-dependencies] +# The demo CLI (milestone M7) uses only the stdlib; the extra exists so +# `pip install sil-lift[cli]` is the documented install from day one. +cli = [] +dev = [ + "pytest>=8", + "pytest-cov>=5", + "hypothesis>=6", + "mypy>=1.14", + "ruff>=0.8", + "lxml-stubs", +] +docs = [ + "mkdocs-material>=9", + "mkdocstrings[python]>=0.27", + "mkdocs-static-i18n>=1.2", +] + +[tool.hatch.version] +path = "src/sil_lift/__init__.py" + +[tool.hatch.build.targets.wheel] +packages = ["src/sil_lift"] + +[tool.ruff] +line-length = 100 +src = ["src", "tests", "scripts"] + +[tool.ruff.lint] +select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM", "RUF"] + +[tool.mypy] +strict = true +python_version = "3.11" +files = ["src", "tests", "scripts"] + +[tool.pytest.ini_options] +testpaths = ["tests"] diff --git a/scripts/check.py b/scripts/check.py new file mode 100644 index 0000000..6a4f4f7 --- /dev/null +++ b/scripts/check.py @@ -0,0 +1,32 @@ +"""Local stand-in for CI while the repo has no remote: run all checks. + +Usage: python scripts/check.py +""" + +import subprocess +import sys + +CHECKS: list[list[str]] = [ + [sys.executable, "-m", "ruff", "check", "."], + [sys.executable, "-m", "ruff", "format", "--check", "."], + [sys.executable, "-m", "mypy"], + [sys.executable, "-m", "pytest"], +] + + +def main() -> int: + failed: list[str] = [] + for cmd in CHECKS: + name = " ".join(cmd[2:]) + print(f"\n=== {name} ===", flush=True) + if subprocess.run(cmd).returncode != 0: + failed.append(name) + if failed: + print(f"\nFAILED: {', '.join(failed)}") + return 1 + print("\nAll checks passed.") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/src/sil_lift/__init__.py b/src/sil_lift/__init__.py new file mode 100644 index 0000000..51e897f --- /dev/null +++ b/src/sil_lift/__init__.py @@ -0,0 +1,9 @@ +"""Read, write, and validate LIFT (Lexicon Interchange Format) 0.13 lexicons. + +The public API is exactly what this module re-exports; underscore-prefixed +modules are implementation details. +""" + +__version__ = "0.1.0.dev0" + +__all__: list[str] = [] diff --git a/src/sil_lift/py.typed b/src/sil_lift/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_package.py b/tests/test_package.py new file mode 100644 index 0000000..f3e8770 --- /dev/null +++ b/tests/test_package.py @@ -0,0 +1,15 @@ +from pathlib import Path + +from lxml import etree + +import sil_lift + + +def test_version() -> None: + assert sil_lift.__version__ + + +def test_vendored_rng_is_loadable() -> None: + rng_path = Path(sil_lift.__file__).parent / "schemas" / "lift-0.13.rng" + schema = etree.RelaxNG(etree.parse(rng_path)) + assert schema is not None From 3149084a8ba9c7ba688fcd8a2d6bc8fdf58d9880 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Tue, 14 Jul 2026 20:29:44 -0400 Subject: [PATCH 02/42] Vendor lift-0.13.rng + assemble test corpus with provenance Sources pinned by SHA in PROVENANCE.md files. Corpus bytes are normalization-exempt via .gitattributes (fidelity tests depend on it). Co-Authored-By: Claude Fable 5 --- src/sil_lift/schemas/PROVENANCE.md | 21 + src/sil_lift/schemas/lift-0.13.rng | 625 + tests/corpus/PROVENANCE.md | 108 + .../flex/AllFLExFields/AllFLExFields.lift | 192 + .../AllFLExFields/AllFLExFields.lift-ranges | 33059 ++++ .../flex/AllFLExFields/WritingSystems/en.ldml | 36 + .../flex/AllFLExFields/WritingSystems/fr.ldml | 35 + .../flex/AllFLExFields/WritingSystems/th.ldml | 36 + tests/corpus/folder/Moma/Moma.lift | 79 + .../folder/Moma/audio/adat-63531587437330.wav | Bin 0 -> 48874 bytes .../folder/Moma/audio/loka-63531587541460.wav | Bin 0 -> 81434 bytes .../folder/Moma/audio/loka-63531587545733.wav | Bin 0 -> 50194 bytes .../folder/Moma/audio/mata-63531587590792.wav | Bin 0 -> 34794 bytes .../folder/Moma/audio/mata-63531587597879.wav | Bin 0 -> 50194 bytes .../folder/Moma/pictures/cultural law.png | Bin 0 -> 18106 bytes tests/corpus/folder/Moma/pictures/sdd.png | Bin 0 -> 14646 bytes tests/corpus/large/sango/sango.lift | 118199 +++++++++++++++ tests/corpus/large/sango/sango.lift-ranges | 32039 ++++ tests/corpus/misc/sample.lift | 259 + tests/corpus/ranges/test20080407.lift | 50 + tests/corpus/ranges/test20080407.lift-ranges | 20 + .../spec-examples/0.12/baseformrelation.lift | 81 + .../spec-examples/0.12/change-history.lift | 21 + tests/corpus/spec-examples/0.12/dates.lift | 23 + tests/corpus/spec-examples/0.12/dialects.lift | 61 + .../spec-examples/0.12/fields any order.lift | 107 + .../corpus/spec-examples/0.12/full-entry.lift | 76 + tests/corpus/spec-examples/0.12/header.lift | 206 + .../spec-examples/0.12/hugal-ideal.lift | 149 + .../corpus/spec-examples/0.12/hugal-mdf.lift | 126 + .../corpus/spec-examples/0.12/hugal-plb.lift | 130 + .../spec-examples/0.12/lexical-relations.lift | 37 + tests/corpus/spec-examples/0.12/minimal.lift | 3 + .../spec-examples/0.12/multiple-forms.lift | 46 + .../0.12/reversals-hierarchy.lift | 47 + .../corpus/spec-examples/0.12/reversals.lift | 47 + tests/corpus/spec-examples/0.12/simple.lift | 28 + .../corpus/spec-examples/0.12/subentries.lift | 81 + .../corpus/spec-examples/0.12/subsenses.lift | 63 + .../spec-examples/0.12/traits-in-forms.lift | 24 + tests/tools/xslt/LIFT-0.12-0.13.xsl | 229 + 41 files changed, 186343 insertions(+) create mode 100644 src/sil_lift/schemas/PROVENANCE.md create mode 100644 src/sil_lift/schemas/lift-0.13.rng create mode 100644 tests/corpus/PROVENANCE.md create mode 100644 tests/corpus/flex/AllFLExFields/AllFLExFields.lift create mode 100644 tests/corpus/flex/AllFLExFields/AllFLExFields.lift-ranges create mode 100644 tests/corpus/flex/AllFLExFields/WritingSystems/en.ldml create mode 100644 tests/corpus/flex/AllFLExFields/WritingSystems/fr.ldml create mode 100644 tests/corpus/flex/AllFLExFields/WritingSystems/th.ldml create mode 100644 tests/corpus/folder/Moma/Moma.lift create mode 100644 tests/corpus/folder/Moma/audio/adat-63531587437330.wav create mode 100644 tests/corpus/folder/Moma/audio/loka-63531587541460.wav create mode 100644 tests/corpus/folder/Moma/audio/loka-63531587545733.wav create mode 100644 tests/corpus/folder/Moma/audio/mata-63531587590792.wav create mode 100644 tests/corpus/folder/Moma/audio/mata-63531587597879.wav create mode 100644 tests/corpus/folder/Moma/pictures/cultural law.png create mode 100644 tests/corpus/folder/Moma/pictures/sdd.png create mode 100644 tests/corpus/large/sango/sango.lift create mode 100644 tests/corpus/large/sango/sango.lift-ranges create mode 100644 tests/corpus/misc/sample.lift create mode 100644 tests/corpus/ranges/test20080407.lift create mode 100644 tests/corpus/ranges/test20080407.lift-ranges create mode 100644 tests/corpus/spec-examples/0.12/baseformrelation.lift create mode 100644 tests/corpus/spec-examples/0.12/change-history.lift create mode 100644 tests/corpus/spec-examples/0.12/dates.lift create mode 100644 tests/corpus/spec-examples/0.12/dialects.lift create mode 100644 tests/corpus/spec-examples/0.12/fields any order.lift create mode 100644 tests/corpus/spec-examples/0.12/full-entry.lift create mode 100644 tests/corpus/spec-examples/0.12/header.lift create mode 100644 tests/corpus/spec-examples/0.12/hugal-ideal.lift create mode 100644 tests/corpus/spec-examples/0.12/hugal-mdf.lift create mode 100644 tests/corpus/spec-examples/0.12/hugal-plb.lift create mode 100644 tests/corpus/spec-examples/0.12/lexical-relations.lift create mode 100644 tests/corpus/spec-examples/0.12/minimal.lift create mode 100644 tests/corpus/spec-examples/0.12/multiple-forms.lift create mode 100644 tests/corpus/spec-examples/0.12/reversals-hierarchy.lift create mode 100644 tests/corpus/spec-examples/0.12/reversals.lift create mode 100644 tests/corpus/spec-examples/0.12/simple.lift create mode 100644 tests/corpus/spec-examples/0.12/subentries.lift create mode 100644 tests/corpus/spec-examples/0.12/subsenses.lift create mode 100644 tests/corpus/spec-examples/0.12/traits-in-forms.lift create mode 100644 tests/tools/xslt/LIFT-0.12-0.13.xsl diff --git a/src/sil_lift/schemas/PROVENANCE.md b/src/sil_lift/schemas/PROVENANCE.md new file mode 100644 index 0000000..061de48 --- /dev/null +++ b/src/sil_lift/schemas/PROVENANCE.md @@ -0,0 +1,21 @@ +# Schema provenance + +## lift-0.13.rng + +- **Source**: `sillsdev/lift-standard`, path `LIFTDotNet/LiftIO/Validation/lift-0.13.rng` +- **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` (master; the commit examined + throughout Phase 1 research) +- **Fetched**: 2026-07-14, byte-identical copy (17,885 bytes); stored with git + line-ending normalization disabled (`.gitattributes`) +- **Note**: this is the operative LIFT 0.13 grammar. The same content (modulo + whitespace/comment ordering) is embedded as `lift.rng` in both the spec repo's + LiftIO and libpalaso's `SIL.Lift/Validation/` and used by the C# `Validator`. +- **License**: the lift-standard repo has **no license file** (known upstream gap, + research finding 05). SIL-internal use; resolve with upstream before any public + release of this package. + +## lift-ranges-0.13.rng (planned, milestone M3) + +To be authored by this project — no schema for standalone `.lift-ranges` files +exists anywhere (research finding 05). Will reuse the `range`/`range-element` +defines from `lift-0.13.rng`. diff --git a/src/sil_lift/schemas/lift-0.13.rng b/src/sil_lift/schemas/lift-0.13.rng new file mode 100644 index 0000000..47f693b --- /dev/null +++ b/src/sil_lift/schemas/lift-0.13.rng @@ -0,0 +1,625 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Forms should be in different langs. + There is only one form with a given lang allowed in any parent element. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fields should have different types. + There is only one field with a given type allowed in any parent element. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Notes should be of different types. + There is only one note with a given type allowed in any parent element. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A main should not exist without a parent form + + + + + + + + + + + + + + + + + + + + + + + + + + Translations should be of different types. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.13 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md new file mode 100644 index 0000000..42729f7 --- /dev/null +++ b/tests/corpus/PROVENANCE.md @@ -0,0 +1,108 @@ +# Test corpus provenance + +All files fetched 2026-07-14 as byte-identical copies from public GitHub repos at +the commits recorded below (raw.githubusercontent.com at pinned SHA). Git +line-ending normalization is disabled for everything under `tests/corpus/` +(`.gitattributes`) — fidelity tests depend on the bytes staying exactly as fetched. + +**License review flag (pre-release)**: `lift-standard` and `LiftTweaker` have no +license file; `flashgrab`'s LICENSE reads "Free and open source, under Anki's +license" (Anki is AGPL-3.0). All are SIL-authored repos and this use is +SIL-internal test data, but resolve licensing before any public release +(tracked with the other release gates in milestone M7). + +## spec-examples/0.12/ — 19 files + +- **Source**: `sillsdev/lift-standard` `examples/*.lift` +- **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` (master) +- **License**: none in repo (see flag above) +- All are ``, small (≤205 lines). Includes + `fields any order.lift` (filename with a space — path-handling edge case). + The upstream `VerifyExamples.proj` (MSBuild/Jing harness) was not taken — + not corpus data. These originals also serve as version-guard fixtures + (the library rejects non-0.13 input per decision D2). + +## spec-examples/0.13/ — generated + +Produced from `spec-examples/0.12/` by `tests/tools/migrate_corpus.py` using the +vendored upstream XSLT (`tests/tools/xslt/LIFT-0.12-0.13.xsl`). Regenerate with +that script; committed so tests don't depend on regeneration. + +## ranges/ — test20080407 pair + +- **Source**: `sillsdev/lift-standard` `LIFTDotNet/LiftIO.Tests/test20080407.lift` + + `.lift-ranges` +- **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` +- **License**: none in repo (see flag above) +- The only `.lift` + external `.lift-ranges` sample pair in existence + (research finding 05); primary ranges fixture. `version="0.13"`, + `producer="hand crafted"`. + +## flex/AllFLExFields/ — FLEx-flavored 0.13 reference fixture + +- **Source**: `sillsdev/web-languageforge` + `sample_data/lift/AllFLExFields/{AllFLExFields.lift, AllFLExFields.lift-ranges, + WritingSystems/{en,fr,th}.ldml}` +- **Commit**: `6ea4d7b0d39c0263f531e13246d5942550bf58ba` (HEAD of default branch + at fetch time) +- **License**: MIT +- A FLEx export (`producer="SIL.FLEx 8.0.9.41689"`) exercising all FLEx fields — + the reference file for residue/round-trip tests. **Deliberately not taken**: + the upstream `audio/Kalimba.mp3` (8.4 MB), `pictures/Desert.jpg`, and + `others/Hydrangeas.jpg` — Windows sample-file filler with no test value beyond + existence; media-existence tests use the Moma folder fixture instead. The + LDML files are carried (never parsed — out of scope) as folder-layout data. + +## folder/Moma/ — complete LIFT folder fixture + +- **Source**: `sillsdev/flashgrab` `tests/Moma/{Moma.lift, audio/*.wav, pictures/*.png}` +- **Commit**: `b75f7e2fa178aa27f1fd6c7789032f2087e3e0a7` (HEAD of default branch + at fetch time) +- **License**: see flag above (flashgrab/Anki) +- A WeSay-produced lexicon (`producer="Palaso.DictionaryServices.LiftWriter"`, + `version="0.13"`) with real referenced media: 5 wav + 2 png, including + `pictures/cultural law.png` (space in filename). The file has a UTF-8 BOM and + tab-indented attribute-per-line formatting — a byte-fidelity edge case. + Upstream `Moma.WeSayConfig` not taken (not LIFT). Primary fixture for + media_refs()/missing_media() (milestone M3). + +## misc/sample.lift + +- **Source**: `sillsdev/LiftTweaker` `sample/sample.lift` +- **Commit**: `b7857369ccca99884c911515b8ad46cd7ba0155c` (HEAD of default branch + at fetch time) +- **License**: none in repo (see flag above) +- **Note**: contrary to the Phase 1 triage note, this file is + `` (`producer="SIL.FLEx 2.4.0.39737"`), so + `migrate_corpus.py` also produces `misc/sample.0.13.lift` from it. + +## large/sango/ — real 3507-entry FLEx export + +- **Source**: `sil-car/lift-utils` `tests/data/sango/{sango.lift, sango.lift-ranges}` +- **Commit**: `3b2359defe6c4ac0c223864cdcff8925778538b9` (HEAD of default branch + at fetch time) +- **License**: MIT +- 4.8 MB / 3507 entries (`producer="SIL.FLEx 9.1.15.658"`, `version="0.13"`) + + 1.5 MB ranges companion. Credit Nate Marti (SIL Cameroon) if used in any + published material (decision D1). Upstream `WritingSystems/` not taken (the + AllFLExFields fixture already covers LDML-carry). + +## Not fetchable as files + +- **chorus / LiftTools test data** (corpus plan §C.4): verified at the Phase 1 + pinned SHAs (`7313dd6…`, `f3e87cc…`) that neither repo contains any standalone + `.lift`/`.lift-ranges` file — their LIFT test data is inline C# strings. The + C# suites remain a behavioral oracle; targeted extraction into + `negative/`/edge-case fixtures happens per-milestone (§C.5, M4). +- **libpalaso inline edge-case XML** (§C.5): extracted per-milestone as needed. +- **Enggano export** (§C.8): license/permission check pending; not fetched. + +## generated/ — synthetic large files (not committed) + +Produced by `tests/tools/generate_large.py` for streaming/perf tests (M6); +git-ignored, regenerated on demand. + +## negative/ — invalid fixtures (milestone M4) + +Hand-authored schema-invalid / semantically-broken files; authored with the +validator (§C.7), each documenting the defect it carries. diff --git a/tests/corpus/flex/AllFLExFields/AllFLExFields.lift b/tests/corpus/flex/AllFLExFields/AllFLExFields.lift new file mode 100644 index 0000000..c8d487d --- /dev/null +++ b/tests/corpus/flex/AllFLExFields/AllFLExFields.lift @@ -0,0 +1,192 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
This records the syllable pattern for a LexPronunciation in FieldWorks.
+
+ +
This records the tone information for a LexPronunciation in FieldWorks.
+
+ +
This records a comment (note) in a LexEtymology in FieldWorks.
+
+ +
This records residue left over from importing a standard format file into FieldWorks (or LinguaLinks).
+
+ +
This field is used to store a literal meaning of the entry. Typically, this field is necessary only for a compound or an idiom where the meaning of the whole is different from the sum of its parts.
+
+ +
A summary definition (located at the entry level in the Entry pane) is a general definition summarizing all the senses of a primary entry. It has no theoretical value; its use is solely pragmatic.
+
+ +
This field stores the scientific name pertinent to the current sense.
+
+
+
+ + +
คาม
+
+ + +
คาม
+
+ +
A Bibliography
+
+ +
A Note
+
+ +
A Literal Meaning
+
+ +
A Restrictions
+
+ +
A Summary Defn
+
+ +
A Import Residue
+
+ +
คาม
+
A Etymology
+A Etymology Gloss + +
A Etymology Comment
+
+
+ + + +
Secondary relationship
+
+
+ +
คาม
+ + +
A CV Pattern
+
+ +
Mid
+
+
+ + + +A Word + +
A Word Defn
+
+ +
ใหท่ มี
+ +
A Tranalstion
+
+
+ + +
A Anthropology Note
+
+ +
A Sense Biliography
+
+ +
A Discourse Note
+
+ +
A Encylopdeic Info
+
+ +
A General Note
+
+ +
A Grammar Note
+
+ +
A Sense Import Resdue
+
+ +
A Phonolgy Note
+
+ +
A Restrictions
+
+ +
A Scientific Name
+
+ +
A Semantics Note
+
+ +
A Sociolinguistics NoteC:\ProgramData\SIL\FieldWorks\Projects\AllFLExFields\LinkedFiles\Others\Hydrangeas.jpg
+
+ +
A Sense Source
+
+ + +
A Reversal Entries
+
+ + + + + +
+
+ + +
คาม ๒
+
+ + + + + + + + + + + + +B Word + +
+
diff --git a/tests/corpus/flex/AllFLExFields/AllFLExFields.lift-ranges b/tests/corpus/flex/AllFLExFields/AllFLExFields.lift-ranges new file mode 100644 index 0000000..8365364 --- /dev/null +++ b/tests/corpus/flex/AllFLExFields/AllFLExFields.lift-ranges @@ -0,0 +1,33059 @@ + + + + + + +
The word is borrowed from another language
+
+ + +
The proto form of the word in another language
+
+
+ + + + + +
adv
+
adv
+
+ +
An adverb, narrowly defined, is a part of speech whose members modify verbs for such categories as time, manner, place, or direction. An adverb, broadly defined, is a part of speech whose members modify any constituent class of words other than nouns, such as verbs, adjectives, adverbs, phrases, clauses, or sentences. Under this definition, the possible type of modification depends on the class of the constituent being modified.
+
Dans un sens restreint, un adverbe modifie un verbe à propos d’informations concernant le moment, le lieu, la manière ou la direction. Dans un sens plus large, un adverbe modifie n’importe quel autre constituant autre que le nom, tel qu’un verbe, un adjectif, un adverbe, un syntagme, une proposition ou une phrase. Dans cette acception, le type de modification apportée par l’adverbe dépend de la classe du constituant qui est modifié.
+
+
+ + + +
n
+
n
+
+ +
A noun is a broad classification of parts of speech which include substantives and nominals.
+
+
+
+ + + +
pro-form
+
proforme
+
+ +
A pro-form is a part of speech whose members usually substitute for other constituents, including phrases, clauses, or sentences, and whose meaning is recoverable from the linguistic or extralinguistic context.
+
+
+
+ + + +
pro
+
pron
+
+ +
A pronoun is a pro-form which functions like a noun and substitutes for a noun or noun phrase.
+
Un pronom se substitue à un nominal (nom ou syntagme nominal).
+
+
+ + + +
v
+
v
+
+ +
A verb is a part of speech whose members typically signal events and actions; constitute, singly or in a phrase, a minimal predicate in a clause; govern the number and types of other constituents which may occur in the clause; and, in inflectional languages, may be inflected for tense, aspect, voice, modality, or agreement with other constituents in person, number, or grammatical gender.
+
Un verbe est une partie du discours caractérisée syntaxiquement par sa fonction de prédicat. En tant que tel, il gouverne la structure argumentale de la proposition, c’est-à-dire le nombre d’arguments possibles. Dans les langues flexionnelles, il peut être fléchi en ce qui concerne le temps, l’aspect, la voix ou le mode ; il peut aussi être en accord avec d’autres constituants en ce qui concerne la personne, le nombre ou le genre. Du point de vue sémantique, il désigne généralement des événements et des actions ou encore des états.
+
+
+
+ + + + + +
pt
+
pt
+
+ +
A part/whole relation establishes a link between the sense for the whole (e.g., room), and senses for the parts (e.g., ceiling, wall, floor).
+
Une relation partie / tout établi un lien en ce qui concerne le sens tel que le tout (p.ex. chambre) désigne l’ensemble constitué par les parties recevant chacune une dénomination particulière (p.ex. plafond, mur, plancher, …)
+
+ +
Whole
+
Tout
+
+ +
wh
+
Tt
+
+ +
+ + + +
spec
+
spéc
+
+ +
A generic/specific relation establishes a link between the sense for the generic (e.g., bird), and senses for the specifics (e.g., robin, cardinal, dove).
+
Une relation générique / spécifique établi un lien en ce qui concerne le sens tel que le générique (p.ex. oiseau) s’applique à tous les membres d’une classe naturelle d’objets recevant chacun une dénomination spécifique (p.ex. pie, mésange, moineau, pigeon, …).
+
+ +
Generic
+
Générique
+
+ +
gen
+
gén
+
+ +
+ + + +
syn
+
syn
+
+ +
Use this type for synonym relationships (e.g., fast, fleet, hasty).
+
Utiliser ce champ pour les relations de synonymie, c’est-à-dire pour des mots ayant approximativement le même sens (p.ex. vite, rapidement, à la hâte, promptement, …).
+
+ +
+ + + +
ant
+
ant
+
+ +
Use this type for antonym relationships (e.g., fast, slow).
+
Utiliser ce champ pour les relations d’antonymie, c’est-à-dire pour des mots dont le sens est opposé ou contraire (p.ex. vite, lentement).
+
+ +
+ + + +
cal
+
cal
+
+ +
Use this type for calendar relationships (e.g., days of week, months in year).
+
Utiliser ce champ pour des relations calendaires (p.ex. jours / semaine, mois / année).
+
+ +
+ + + +
cf
+
cf
+
+ +
Use this type for relationships that cannot be classified by a specific label, or of which there are too few examples to warrant creating a custom lexical relation.
+
Utiliser ce champ pour des relations qui n’entrent pas clairement sous une rubrique existante, ou qui sont attestées par trop peu d’exemples pour que la création d’une relation lexicale spécifique soit justifiée.
+
+ +
+ + + +
clf. for
+
n.clfé
+
+ +
Use this relation for linking classifiers to the words that they classify.
+
Utiliser ce champ pour établir un lien entre les classificateurs et les mots qu’ils classifient.
+
+ +
Classifier
+
Classificateur
+
+ +
clf
+
clfr
+
+ +
+
+ + + + +
Gives anthropological information.
+
+ + +
Biblographic information.
+
+ + +
This note is an arbitrary comment not for publication
+
+ + +
Gives discourse information about a sense.
+
+ + +
This note gives encyclopedic information.
+
+ + +
General notes that do not fall in another clear category
+
+ + +
Gives grammatical information about a word.
+
+ + +
Gives phonological information about a word.
+
+ + +
Contains questions yet to be answered
+
+ + +
Gives information on the restriction of usage of a word.
+
+ + +
Gives the scientific name of a sense
+
+ + +
Gives sociolinguistic information about a sense.
+
+ + +
Contains information on sources
+
+ + +
Gives information on usage
+
+ + + +
Gives the literal meaning of a word.
+
+ + +
Gives semantic information about a sense.
+
+ + +
Gives a summary definition of a word.
+
+
+ + + +
1st dual
+
+ + +
1st exclusive
+
+ + +
1st inclusive
+
+ + +
1st person plural
+
+ + +
1st person singular
+
+ + +
2nd dual
+
+ + +
2nd plural
+
+ + +
2nd singular
+
+ + +
3rd dual
+
+ + +
3rd plural
+
+ + +
3rd singular
+
+ + +
-dual non-human or inanimate dual
+
+ + +
-plural non-human or inanimate plural
+
+ + +
-sing non-human or inanimate singulare
+
+ + +
plural form
+
+ + +
reduplication form
+
+ + +
singular
+
+
+ + + + + + + + + +
1
+
+ +
Use this domain for general words referring to the physical universe. Some languages may not have a single word for the universe and may have to use a phrase such as 'rain, soil, and things of the sky' or 'sky, land, and water' or a descriptive phrase such as 'everything you can see' or 'everything that exists'.
+
Classer dans ce champ lexical les termes génériques désignant le monde physique. Certaines langues peuvent avoir plusieurs mots pour désigner l’univers et employer des expressions telles que : « La pluie, le sol, les choses du ciel » ou « le ciel, la terre, et l’eau » ou une expression descriptive comme « tout ce qui est visible » ou « tout ce qui existe ».
+
+
+ + + +
1.1
+
+ +
Use this domain for words related to the sky.
+
Classer dans ce champ lexical le vocabulaire associé au ciel.
+
+
+ + + +
1.1.1
+
+ +
Use this domain for words related to the sun. The sun does three basic things. It moves, it gives light, and it gives heat. These three actions are involved in the meanings of most of the words in this domain. Since the sun moves below the horizon, many words refer to it setting or rising. Since the sun is above the clouds, many words refer to it moving behind the clouds and the clouds blocking its light. The sun's light and heat also produce secondary effects. The sun causes plants to grow, and it causes damage to things.
+
Classer dans ce champ lexical le vocabulaire associé au soleil. Le soleil a 3 fonctions principales : il se déplace, il donne de la lumière et de la chaleur. Ces trois fonctions sont présentes dans la plupart des mots dans ce champ lexical. Puisque le soleil descend et disparaît sous l’horizon, il existe bon nombre de mots ou d’expressions qui désignent son coucher et son lever. Comme il est au-dessus des nuages, plusieurs mots désignent sa disparition derrière les nuages et le fait que les nuages arrêtent ses rayons. Sa lumière et sa chaleur ont aussi d’autres effets. Le soleil fait croître les plantes, mais peut aussi causer des dommages.
+
+
+ + + +
1.1.1.1
+
+ +
Use this domain for words related to the moon. In your culture people may believe things about the moon. For instance in European culture people used to believe that the moon caused people to become crazy. So in English we have words like "moon-struck" and "lunatic." You should include such words in this domain.
+
Classer dans ce champ lexical le vocabulaire associé à la lune. Dans votre culture, il existe peut-être des croyances relatives à la lune. En Europe, par exemple, on pensait que la lune rend les gens fous. Ainsi en français, il existe des mots et des expressions tels que « coup de lune », et « lunatique » que l’on peut inclure dans ce champ lexical.
+
+
+ + + +
1.1.1.2
+
+ +
Use this domain for words related to the stars and other heavenly bodies.
+
Classer dans ce champ lexical le vocabulaire associé aux étoiles et aux autres corps célestes.
+
+
+ + + +
1.1.1.3
+
+ +
Use this domain for words related to planets (large objects that circle the sun, looking like bright wandering stars in the sky), comets (objects that circle the sun, looking like a star with a tail), meteors (small objects that come from space and burn up when they hit the earth's atmosphere, causing a streak of light across the sky), and asteroids (small objects that circle the sun), planetary moons (large objects that circle the planets). Some cultures do not study the stars and will have few or no words in this domain. Others cultures that study the stars will have many words. There are only five planets that people can see in the sky--Mercury, Venus, Mars, Jupiter, and Saturn. The others are only known from the scientific study of astronomy.
+
Classer dans ce champ lexical le vocabulaire associé aux planètes (gros objets gravitant autour du soleil, semblables à de grandes étoiles brillantes en mouvement dans le ciel), aux comètes (objets tournant autour du soleil, semblables à des étoiles avec une queue), météores ou météorites (petits objets venant de l’espace qui s’enflamment quand ils heurtent l’atmosphère terrestre, et qui se manifestent par une traînée lumineuse dans le ciel), sans oublier les astéroïdes (petits objets gravitant autour du soleil), les lunes planétaires (grands objets gravitant autour des planètes). Certaines cultures ne s’intéressent pas aux étoiles et n’ont que peu, voire pas, de termes dans ce champ lexical. D’autres cultures qui étudient les étoiles disposeront de nombreux termes. Seules cinq planètes sont visibles dans le ciel : Mercure, Vénus, mars, Jupiter et Saturne. Les autres ne sont connues que des astronomes.
+
+
+ + + +
1.1.2
+
+ +
Use this domain for words related to the air around us, including the air we breathe and the atmosphere around the earth.
+
Classer dans ce champ lexical le vocabulaire associé à l’air qui nous entoure, que l’on respire et à l’atmosphère qui enveloppe la terre.
+
+
+ + + +
1.1.2.1
+
+ +
Use this domain for words related to causing air to move.
+
Classer dans ce champ lexical le vocabulaire associé aux déplacements d’air.
+
+
+ + + +
1.1.3
+
+ +
Use this domain for words related to the weather.
+
Classer dans ce champ lexical le vocabulaire associé au temps, à la météorologie.
+
+
+ + + +
1.1.3.1
+
+ +
Use this domain for words related to the wind. Some words refer to when the wind begins and ends. The wind changes in speed, so some words refer to how fast the wind is moving. Try to rank these on a scale from very slow to very fast. These words may also be distinguished by what the wind does, since a fast wind does more things. These words may also be distinguished by how long the wind blows. Some words refer to the speed of the wind becoming faster or slower. Some words distinguish a steady wind from a wind in which the speed keeps changing. Some words refer to when the speed of the wind becomes faster for a short time. A steady wind moves in a particular direction, so there are words that include the direction of the wind. The direction of the wind may refer to the points of the compass, a neighboring geographical feature or area, or the direction in which the speaker is moving. Some words refer to a wind that moves in a small circle, making a pillar of dust or a funnel-shaped cloud. Some words refer to what the wind does, such as when it moves or damages something. People can feel the wind, so some words refer to how it feels. The wind makes noise, so there are words that refer to the sound of the wind. In some cultures there is a relation between the wind and spirits, so some words may refer to the activity of the spirits in the wind, or that the wind brings disease.
+
Classer dans ce champ lexical le vocabulaire associé au vent. Certains termes désignent le moment où le vent se lève ou s’arrête (tombe). La vitesse du vent est variable : il existe donc des mots qui décrivent la rapidité avec laquelle le vent souffle. Classer de préférence ces mots du plus lent au plus rapide. On peut distinguer aussi les mots qui désignent des effets particuliers du vent, comme ceux d’un vent fort par exemple ; les mots qui désignent la durée pendant laquelle le vent souffle ; ceux qui suggèrent une accélération ou un ralentissement de la vitesse du vent ; les mots qui permettent de différencier un vent constant d’un vent variable ; les mots associés à une brève accélération de la vitesse du vent. Un vent constant souffle dans une direction particulière : il existe donc des mots qui désignent la direction du vent. Il peut s’agir des points cardinaux, d’une région ou d’une zone géographique voisine ou de la direction dans laquelle se déplace celui qui parle. Certains mots s’appliquent au vent qui souffle en décrivant un petit cercle ou une spirale, soulevant une colonne de poussière ou un nuage en forme d’entonnoir. D’autres désignent les effets du vent (déplacement d’objets, dégâts, par exemple). Puisque l’on peut sentir le vent, il existe des mots pour décrire cette sensation. Le vent fait aussi du bruit : il existe donc des mots pour décrire le bruit du vent. Dans certaines cultures, le vent est lié aux esprits. Il existe donc des mots pour désigner l’activité des esprits dans le vent ou pour dire que le vent est cause de maladies.
+
+
+ + + +
1.1.3.2
+
+ +
Use this domain for words related to the clouds.
+
Classer dans ce champ lexical le vocabulaire associé aux nuages.
+
+
+ + + +
1.1.3.3
+
+ +
Use this domain for words related to the rain.
+
Classer dans ce champ lexical le vocabulaire associé à la pluie.
+
+
+ + + +
1.1.3.4
+
+ +
Use this domain for words related to snow, ice, sleet, and hail.
+
Classer dans ce champ lexical les mots qu’on associe à la neige, au verglas, à la neige fondue et à la grêle.
+
+
+ + + +
1.1.3.5
+
+ +
Use this domain for words related to storms.
+
Classer dans ce champ lexical les mots associés aux tempêtes.
+
+
+ + + +
1.1.3.6
+
+ +
Use this domain for words related to lightning and thunder.
+
Classer dans ce champ lexical les mots associés aux éclairs et au tonnerre.
+
+
+ + + +
1.1.3.7
+
+ +
Use this domain for words related to floods.
+
Classer dans ce champ lexical les mots associés aux inondations.
+
+
+ + + +
1.1.3.8
+
+ +
Use this domain for words related to drought.
+
Classer dans ce champ lexical les mots associés à la sécheresse.
+
+
+ + + +
1.2
+
+ +
Use this domain for words referring to the planet we live on.
+
Classer dans ce champ lexical les mots ou expressions faisant référence à la planète où nous vivons.
+
+
+ + + +
1.2.1
+
+ +
Use this domain for words referring to the ground we stand on, the earth versus the sky.
+
Classer dans ce champ lexical le vocabulaire associé au sol sur lequel nous nous tenons, à la terre par opposition au ciel.
+
+
+ + + +
1.2.1.1
+
+ +
Use this domain for words related to mountains.
+
Classer dans ce champ lexical le vocabulaire associé aux montagnes.
+
+
+ + + +
1.2.1.2
+
+ +
Use this domain for words related to volcanoes.
+
Classer dans ce champ lexical le vocabulaire associé aux volcans.
+
+
+ + + +
1.2.1.3
+
+ +
Use this domain for words referring to land that is flat.
+
Classer dans ce champ lexical le vocabulaire associé à un terrain plat.
+
+
+ + + +
1.2.1.4
+
+ +
Use this domain for words related to valleys.
+
Classer dans ce champ lexical le vocabulaire associé aux vallées.
+
+
+ + + +
1.2.1.5
+
+ +
Use this domain for words referring to the area under the ground, and to holes in the ground.
+
Classer dans ce champ lexical le vocabulaire associé au sous-sol et aux trous dans le sol.
+
+
+ + + +
1.2.1.6
+
+ +
Use this domain for words referring to an area of land that has particular types of plants growing in it.
+
Classer dans ce champ lexical le vocabulaire associé aux types de plantes qui poussent dans un endroit donné.
+
+
+ + + +
1.2.1.7
+
+ +
Use this domain for words related to earthquakes. In some languages earthquakes are thought of as moving somewhere. In Amele (PNG) they say "mim nen" which means 'the earthquake came down (from above)'. In Northern Embera an earthquake is a "house-shaking". They say "a house-shaking went."
+
Classer dans ce champ lexical le vocabulaire associé aux tremblements de terre. Dans certaines langues, les tremblements de terre sont considérés comme venant d’ailleurs. En amélé (PNG), on dit « mim nen » ce qui signifie « le tremblement de terre est descendu » (d’au-dessus). En embéra du Nord, un tremblement de terre est un « tremblement de maison ». On dit « il est passé un tremblement de maison
+
+
+ + + +
1.2.2
+
+ +
Use this domain for general words referring to matter--what something is made out of, or a type of solid, liquid, or gas.
+
Classer dans ce champ lexical le vocabulaire générique qui fait référence à la matière : aux matériaux.
+
+
+ + + +
1.2.2.1
+
+ +
Use this domain for words referring to soil and dirt.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la terre et à la boue.
+
+
+ + + +
1.2.2.2
+
+ +
Use this domain for words referring to rock.
+
Classer dans ce champ lexical le vocabulaire associé à la roche.
+
+
+ + + +
1.2.2.3
+
+ +
Use this domain for words referring to metal.
+
Classer dans ce champ lexical le vocabulaire associé au métal.
+
+
+ + + +
1.2.2.4
+
+ +
Use this domain for naturally occurring elements, compounds, and minerals--things you can find in the ground.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des éléments naturels ou composites et à des minéraux, c’est-à-dire à ce qu’on trouve dans le sol.
+
+
+ + + +
1.2.2.5
+
+ +
Use this domain for words referring to jewels and precious stones.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux pierres précieuses.
+
+
+ + + +
1.2.3
+
+ +
Use this domain for words describing the different states of matter (solid, liquid, and gas), and words for changing from one to another.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux différents états de la matière (solide, liquide, gazeux) et qui sert à exprimer le passage d’un état à l’autre.
+
+
+ + + +
1.2.3.1
+
+ +
Use this domain for words referring to liquids.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux liquides.
+
+
+ + + +
1.2.3.2
+
+ +
Use this domain for words referring to oil.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au pétrole, à l’huile, à la graisse.
+
+
+ + + +
1.2.3.3
+
+ +
Use this domain for words referring to gas.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au gaz.
+
+
+ + + +
1.3
+
+ +
Use this domain for general words referring to water.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’eau.
+
+
+ + + +
1.3.1
+
+ +
Use this domain for general words referring to bodies of water.
+
Classer dans ce champ lexical les termes génériques qui font référence à des étendues d’eau.
+
+
+ + + +
1.3.1.1
+
+ +
Use this domain for words referring to bodies of standing water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des étendues d’eau.
+
+
+ + + +
1.3.1.2
+
+ +
Use this domain for words referring to bodies of standing water with plants growing in them.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des étendues d’eau où poussent des plantes.
+
+
+ + + +
1.3.1.3
+
+ +
Use this domain for words referring to bodies of flowing water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des masses d’eau qui se déplacent.
+
+
+ + + +
1.3.1.4
+
+ +
Use this domain for words referring to a place where water comes out of the ground.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un endroit où l’eau sort de terre.
+
+
+ + + +
1.3.1.5
+
+ +
Use this domain for words referring to land in contrast with the sea or river.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la terre par rapport à la mer ou à un cours d’eau.
+
+
+ + + +
1.3.2
+
+ +
Use this domain for words referring to the way in which water and other liquids move.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la manière dont l’eau et autres liquides se déplacent.
+
+
+ + + +
1.3.2.1
+
+ +
Use this domain for words referring to the way water moves over a surface, such as in a river or along the ground.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la manière dont l’eau se déplace sur une surface, par exemple dans un cours d’eau ou sur le sol.
+
+
+ + + +
1.3.2.2
+
+ +
Use this domain for words referring to water coming out of something (such as a container), or causing water to come out of something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’eau qui sort de quelque chose (un récipient, par exemple) ou à ce qui en fait sortir l’eau.
+
+
+ + + +
1.3.2.3
+
+ +
Use this domain for words referring to drops of water and what they do.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux gouttes d’eau et à ce qu’elles font.
+
+
+ + + +
1.3.2.4
+
+ +
Use this domain for words related to waves and what they do.
+
Classer dans ce champ lexical le vocabulaire associé aux vagues et à ce qu’elles font.
+
+
+ + + +
1.3.2.5
+
+ +
Use this domain for words describing the surface of water.
+
Classer dans ce champ lexical le vocabulaire qui sert à décrire la surface de l’eau.
+
+
+ + + +
1.3.2.6
+
+ +
Use this domain for words related to the tide.
+
Classer dans ce champ lexical le vocabulaire associé à la marée.
+
+
+ + + +
1.3.3
+
+ +
Use this domain for words referring to when something has water on it or water has soaked into it.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des choses sur lesquelles il y a de l’eau (ou qui sont gorgées d’eau).
+
+
+ + + +
1.3.3.1
+
+ +
Use this domain for words describing something that is dry.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de sec.
+
+
+ + + +
1.3.4
+
+ +
Use this domain for words referring to being in water or putting something in water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d’être dans l’eau ou de mettre quelque chose dans l’eau.
+
+
+ + + +
1.3.5
+
+ +
Use this domain for words referring to a mixture of water and a substance (such as salt or sugar) that dissolves in water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un mélange d’eau et d’autre chose (sel, sucre…) qui se dissout dans l’eau.
+
+
+ + + +
1.3.6
+
+ +
Use this domain for words describing the quality or condition of water.
+
Classer dans ce champ lexical le vocabulaire qui décrit la qualité ou l’état de l’eau.
+
+
+ + + +
1.4
+
+ +
Use this domain for general words that relate to all living things.
+
Classer dans ce champ lexical le vocabulaire générique associé à tout ce qui vit.
+
+
+ + + +
1.4.1
+
+ +
Use this domain for words referring to dead things--things that were alive before, but aren't now.
+
Classer dans ce champ lexical les mots ou expressions qui font référence aux choses qui sont mortes : celles qui auparavant étaient en vie, mais qui ne le sont plus.
+
+
+ + + +
1.4.2
+
+ +
Use this domain for words referring to the spirits of things.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’esprit des choses.
+
+
+ + + +
1.5
+
+ +
Use this domain for general words for all plants. Use a book of pictures to identify plant names and the scientific name. Languages divide plants into various domains that are not always comparable from language to language. Criterial features may be characteristics (trees and bushes are distinguished by size and number of trunks) and use (grass and weeds are distinguished by their desirability). A common distinction is between trees and non-trees, with trees described as being big, woody, and having a life expectancy of several years, while non-trees are small, non-woody, and have a life expectancy of typically not more than one year (Heine, Bernd and Karsten Legere. 1995. Swahili plants. Rudiger Koppe Verlag: Koln.). Agricultural societies will divide plants into wild and cultivated. However most plants for which there are names have some use. Therefore it does not seem helpful to divide plant names into domains for useful and non-useful plants. Since only parts of plants are eaten, edible parts of plants are listed under the domain 'Food'. Some languages may have more domains than are used in this list, others may have fewer. The classification system used here does not agree entirely with the system used by botanists. For instance botanists do not classify all the tree species together. The palm trees belong to the class Monocotyledoneae and are classified with lilies, bananas, and orchids. Apple and cherry trees belong to the class Dicotyledoneae and are classified in the rose family along with roses and blackberries. The acacia tree also belongs to the class Dicotyledoneae and is classified in the pulse family along with lupines and beans. However most folk taxonomies bring all the trees together. The scientific classification system for plants and animals is taken from: Carruth, Gorton, ed. 1989. The Volume Library, Vols. 1 and 2. The Southwestern Company: Nashville.
+
Classer dans ce champ lexical les termes génériques pour tous les végétaux. Repérer sur un livre illustré le nom courant des végétaux et leur nom scientifique. Chaque langue a une manière spécifique de classer les végétaux, qui n’a pas nécessairement d’équivalence dans une autre langue. On peut distinguer les végétaux selon leur aspect (arbres, arbustes et buissons diffèrent par le nombre et la taille de leurs troncs) et par l’usage que l’on en fait. Ce qui différencie l’herbe (gazon, pelouse, herbage) des mauvaises herbes est qu’on recherche le gazon mais qu’on évacue les mauvaises herbes. On distingue en général entre les arbres et les arbustes ou arbrisseaux : on dit que les arbres sont grands et ligneux et qu’ils vivent plusieurs années, alors que les autres sont petits, non ligneux et que leur espérance de vie ne dépasse pas un an en général (HEINE (Bernd) et LEGERE (Karsten), Swahili plants, Cologne, édition Rudiger Koppe, 1995.) Dans les communautés rurales, les plantes sont classées en deux catégories : sauvages et cultivées. Cependant, la plupart des végétaux qui portent un nom servent à quelque chose. Il ne semble donc pas pertinent d’établir des listes de plantes utiles et de plantes inutiles. Puisqu’on consomme seulement certaines parties des végétaux, on classe leurs parties comestibles dans le champ lexical intitulé « nourriture ». Le nombre de champs lexicaux varie selon les langues. Le système de classification employé ici ne correspond pas tout à fait à celui des botanistes. En botanique, on ne met pas toutes les espèces d’arbres dans la même catégorie. Les palmiers, par exemple, font partie de l’embranchement des monocotylédones qui comprend les nénuphars, les bananiers et les orchidées. Les pommiers et les cerisiers font partie des dicotylédones, ainsi que les rosiers et les mûriers. L’acacia est lui aussi une dicotylédone, mais il fait partie de la famille des légumineuses avec les lupins et les haricots. Cependant, la plupart des classifications populaires mettent tous les arbres ensemble. Le système de classification scientifique des végétaux et des animaux est tiré de CARRUTH (Gorton), The Volume Library, Vol. 1 et 2, Nashville, The Southwestern Company, 1989.
+
+
+ + + +
1.5.1
+
+ +
Use this domain for trees--flowering plants with roots, stems, and leaves, which are large and have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the evergreen trees (Phylum Spermatophyta, Subdivision Gymnospermae). Evergreen trees do not have flowers, but have cone like fruits (pinecones) that contain seeds. Their leaves are shaped like needles and are retained for over a year.
+
ใช้คำซึ่งกล่าวถึงพืชซึ่งมีขนาดใหญ่และมีลำต้นเป็นเนื้อไม้
+
Classer dans ce champ lexical le vocabulaire qui s’applique aux arbres et plus précisément à ceux qui fleurissent et qui ont un gros tronc ligneux, des racines, des branches et des feuilles (phylum des spermaphytes, embranchement des angiospermes) ainsi que les arbres à feuillage persistant (phylum des spermaphytes, embranchement des gymnospermes). Ces derniers n’ont pas de fleurs, mais ont des fruits en forme de cônes (pommes de pin) qui contiennent des graines nues. Ils conservent toute l’année leurs feuilles en forme d’aiguilles.
+
+
+ + + +
1.5.2
+
+ +
Use this domain for bushes and shrubs--plants that are smaller than trees and have several wooden trunks (Phylum Spermatophyta, Subdivision Angiospermae).
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux buissons et arbustes : végétaux plus petits que des arbres et qui ont plusieurs troncs (phylum des spermaphytes, embranchement des angiospermes).
+
+
+ + + +
1.5.3
+
+ +
Use this domain for small plants that have roots, stems, flowers, and seeds, but do not have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the seedless plants, such as ferns (phylum Pteridophyta, class Felicineae), horsetails (phylum Pteridophyta, class Equisetineae), and club mosses (phylum Pteridophyta, class Lycopodineae). Plants of the Pteridophyta phylum have no flowers or seeds. Ferns have large, divided, feather-like leaves, or fronds. Club mosses are small (rarely over one meter) evergreen plants with simple leaves resembling pine or hemlock needles. Sometimes they grow upright, but often trail on the ground, where they propagate by means of runners. Horsetails send up tall, vertical, jointed stalks with branches covered with scale like leaves.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux petites plantes qui ont des racines, des tiges, des fleurs et des graines, mais pas de tronc (phylum des spermaphytes, embranchement des angiospermes). On y inclut aussi des plantes dépourvues de graines telles que les fougères (phylum des ptéridophytes, famille des felicineae), la prêle (phylum des ptéridophytes, famille des équisétinées) et les mousses à tiges (phylum des ptéridophytes famille des lycopodiacées). Les ptéridophytes n’ont ni fleurs, ni graines. Les fougères ont de grandes feuilles en forme de plumes appelées frondes. Les mousses à tiges sont de petites plantes vertes à feuilles persistantes (elles dépassent rarement un mètre de haut) qui ressemblent à des aiguilles de pins ou de sapin-ciguë. Elles se développent vers le haut ou bien rampent sur le sol où elles se reproduisent par marcottage. Les prêles forment un bouquet de grandes tiges jointes et ramifiées, couvertes de feuilles en forme d’écailles.
+
+
+ + + +
1.5.4
+
+ +
Use this domain for mosses (phylum Bryophyta, class Musci), liverworts (phylum Bryophyta, class Hepaticae), fungi (phylum Thallophyta, subdivision Fungi), algae (phylum Thallophyta, subdivision Algae), and lichens. These plants do not have true roots, stems, or leaves. The mosses are small, green, flowerless plants that grow in moist environments and look like velvety or feathery growths carpeting the ground, tree trunks, and rocks. The liverworts are similar to the mosses with a flat and branching growth pattern. The algae possess green chlorophyll. They vary from one-celled organisms, which sometimes live in colonies such as pond scum, to complex organisms such as seaweed. The fungi do not possess chlorophyll and feed off of other organic material. Lichens consist of a fungus and an algae growing together. They commonly grow on trunks of trees and rocks. Some are flat and leafy, and some are moss like.
+
Classer dans ce champ lexical le vocabulaire qui désigne les mousses (phylum des bryophytes, famille des mousses), les hépatiques (phylum des bryophytes, famille des hépatiques), les champignons (phylum des thallophytes, embranchement des champignons), les algues (phylum des thallophytes, embranchement des algues) ainsi que les lichens. Ces plantes n’ont pas vraiment de racines, de tiges ou de feuilles. Les mousses sont de petites plantes vertes dépourvues de fleurs, qui poussent dans un environnement humide et ressemblent à du velours ou à du duvet qui tapisse le sol, le tronc des arbres et les rochers. Les hépatiques ressemblent à de la mousse, elles sont plates et poussent en se ramifiant. Les algues contiennent de la chlorophylle verte. Ce sont des organismes unicellulaires qui forment des colonies dans la vase des mares ou bien des organismes complexes comme le varech. Les champignons, quant à eux, n’ont pas de chlorophylle et se nourrissent d’autres éléments organiques. Les lichens sont formés d’un champignon et d’une algue qui poussent ensemble. On les trouve souvent sur les troncs d’arbres ou sur les rochers. Certains lichens sont plats et touffus, d’autres ressemblent à de la mousse.
+
+
+ + + +
1.5.5
+
+ +
Use this domain for words that refer to parts of a plant. Start with general words that all plants have. Then think through each major type of plant. Finish by thinking of specific plants that are well known (usually cultivated crops) and that have words for specific parts (e.g. tassel on a corn/maize cob).
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux parties d’une plante. Commencer par des termes génériques employés pour tous les végétaux. Chercher ensuite quels sont les types de végétaux les plus importants. Terminer en citant des plantes bien connues (en général cultivées) et pour lesquelles il existe un vocabulaire désignant certaines de leurs parties (ex. barbe d’un épi de maïs, gland du chêne).
+
+
+ + + +
1.5.6
+
+ +
Use this domain for words related to the growth of plants.
+
Classer dans ce champ lexical le vocabulaire associé à la croissance des végétaux ou plantes.
+
+
+ + + +
1.5.7
+
+ +
Use this domain for words related to plant diseases.
+
Classer dans ce champ lexical le vocabulaire associé aux maladies des végétaux ou plantes.
+
+
+ + + +
1.6
+
+ +
Use this domain for general words referring to animals.
+
Classer dans ce champ lexical les termes génériques qui font référence aux animaux.
+
+
+ + + +
1.6.1
+
+ +
Use this domain for words describing types of animals. Use a book of pictures to identify each species and its scientific name. This section is organized according to the scientific, biological classification of animals. It may not correspond to the local classification of animals (folk taxonomy), which are often based on how people relate to animals (tame/wild, edible/work). Use this domain for words referring to large classes of animals that do not correspond to the scientific classification. For instance this would be the place for a word like 'flying animal', which includes birds, bats, and flying insects.
+
Classer dans ce champ lexical les mots qui décrivent des types d’animaux. Identifier sur un livre d’images chaque espèce et son nom scientifique. Dans cette section, les noms des animaux sont donnés selon la classification de la biologie animale. Celle-ci peut ne pas correspondre à la classification locale qui se fonde souvent sur la relation que l’homme entretient avec eux (taxonomie populaire) : animaux domestiques, sauvages, comestibles, utiles ou nuisibles. Classer dans ce champ lexical les mots qui font référence à de grandes catégories d’animaux qui ne correspondent pas à la classification scientifique. On pourrait, par exemple appeler « animaux volants » les oiseaux, chauves-souris et insectes volants.
+
+
+ + + +
1.6.1.1
+
+ +
Use this domain for general words referring to mammals (phylum Chordata, class Mammalia).
+
Classer dans ce champs lexical les termes génériques qui font référence aux mammifères (embranchement des chordés, classe des mammifères).
+
+
+ + + +
1.6.1.1.1
+
+ +
Use this domain for primates (phylum Chordata, class Mammalia, order Primates).
+
Classer dans ce champ lexical les primates (embranchement des chordés, classe des mammifères, ordre des primates).
+
+
+ + + +
1.6.1.1.2
+
+ +
Use this domain for carnivores--meat-eating animals (phylum Chordata, class Mammalia, order Carnivora).
+
Classer dans ce champ lexical les carnivores : animaux qui se nourrissent d’autres animaux (embranchement des chordés, classe des mammifères, ordre des carnivores).
+
+
+ + + +
1.6.1.1.3
+
+ +
Use this domain for even-toed hoofed animals (phylum Chordata, class Mammalia, order Artiodactyla), odd-toed hoofed animals (phylum Chordata, class Mammalia, order Perissodactyla), and elephants (phylum Chordata, class Mammalia, order Proboscidea).
+
Classer dans ce champ lexical les animaux ongulés avec un nombre pair de doigts (embranchement des chordés, classe des mammifères, ordre des artiodactyles), les animaux ongulés avec un nombre impair de doigts (embranchement des chordés, classe des mammifères, ordre des périssodactyles), et les éléphants (embranchement des chordés, classe des mammifères, ordre des proboscidiens).
+
+
+ + + +
1.6.1.1.4
+
+ +
Use this domain for rodents--gnawing animals (phylum Chordata, class Mammalia, order Rodentia), insect eating animals (phylum Chordata, class Mammalia, order Insectivora), rabbits (phylum Chordata, class Mammalia, order Lagomorpha), and hyraxes (phylum Chordata, class Mammalia, order Hyracoidea).
+
Classer dans ce champ lexical les rongeurs(embranchement des chordés, classe des mammifères, ordre des rongeurs), les mangeurs d’insectes (embranchement des chordés, classe des mammifères, ordre des insectivores), les lapins (embranchement des chordés, classe des mammifères, ordre des lagomorphes), et les damans (embranchement des chordés, classe des mammifères, ordre des hyracoïdes).
+
+
+ + + +
1.6.1.1.5
+
+ +
Use this domain for marsupials (phylum Chordata, class Mammalia, order Marsupialia). Marsupials carry their young in a pouch.
+
Classer dans ce champ lexical les marsupiaux (embranchement des chordés, classe des mammifères, ordre des marsupiaux). Les marsupiaux portent leur petit dans une poche abdominale.
+
+
+ + + +
1.6.1.1.6
+
+ +
Use this domain for mammals with few or no teeth--anteaters (phylum Chordata, class Mammalia, order Edentata), pangolins (phylum Chordata, class Mammalia, order Pholidota), aardvarks (phylum Chordata, class Mammalia, order Tubulidentata), and platypus--mammals that lay eggs (phylum Chordata, class Mammalia, order Monotremata).
+
Classer dans ce champ lexical des mammifères avec peu ou pas de dents : fourmilier (embranchement des chordés, classe des mammifères, ordre des édentés), pangolin (embranchement des chordés, classe des mammifères, ordre des phalidotes), oryctérope (embranchement des chordés, classe des mammifères, ordre des tubulidentés), et ornithorynque, mammifère ovipare (embranchement des chordés, classe des mammifères, ordre des monotrèmes).
+
+
+ + + +
1.6.1.1.7
+
+ +
Use this domain for mammals that live in the sea--whales and dolphins (phylum Chordata, class Mammalia, order Cetacea), seals (phylum Chordata, class Mammalia, order Pinnipedia), and sea cows (phylum Chordata, class Mammalia, order Sirenia).
+
Classer dans ce champ lexical les mammifères vivant dans les océans : baleines et dauphins (embranchement des chordés, classe des mammifères, ordre des cétacés), phoques (embranchement des chordés, classe des mammifères, ordre des pinnipèdes), et vaches marines (embranchement des chordés, classe des mammifères, ordre des siréniens).
+
+
+ + + +
1.6.1.1.8
+
+ +
Use this domain for bats--flying mammals (phylum Chordata, class Mammalia, order Chiroptera).
+
Classer dans ce champ lexical les chauves-souris : mammifères volants (embranchement des chordés, classe des mammifères, ordre des chiroptères).
+
+
+ + + +
1.6.1.2
+
+ +
Use this domain for birds (phylum Chordata, class Aves).
+
Classer dans ce champ lexical le vocabulaire employé pour les oiseaux (embranchement : chordés ; classe : oiseaux).
+
+
+ + + +
1.6.1.3
+
+ +
Use this domain for general words referring to reptiles (phylum Chordata, class Reptilia).
+
Classer dans ce champ lexical les termes génériques se rapportant aux reptiles (embranchement : chordés ; classe : reptiles).
+
+
+ + + +
1.6.1.3.1
+
+ +
Use this domain for words related to snakes.
+
Classer dans ce champ lexical le vocabulaire employé pour les serpents.
+
+
+ + + +
1.6.1.3.2
+
+ +
Use this domain for words related to lizards.
+
Classer dans ce champ lexical le vocabulaire employé pour les lézards.
+
+
+ + + +
1.6.1.3.3
+
+ +
Use this domain for words related to turtles.
+
Classer dans ce champ lexical le vocabulaire employé pour les tortues.
+
+
+ + + +
1.6.1.3.4
+
+ +
Use this domain for words referring to crocodiles.
+
Classer dans ce champ lexical le vocabulaire employé pour les crocodiles.
+
+
+ + + +
1.6.1.4
+
+ +
Use this domain for amphibians (phylum Chordata, class Amphibia).
+
Classer dans ce champ lexical le vocabulaire employé pour les amphibiens (embranchement : chordés ; classe : amphibien).
+
+
+ + + +
1.6.1.5
+
+ +
Use this domain for fish (phylum Chordata, class Osteichthyes).
+
Classer dans ce champ lexical le vocabulaire employé pour les poissons (embranchement : chordés ; classe : osteichthyes).
+
+
+ + + +
1.6.1.6
+
+ +
Use this domain for sharks and rays--animals with cartilage instead of bones (phylum Chordata, class Chondrichthyes), and eels (phylum Chordata, class Cyclostomata).
+
Classer dans ce champ lexical le vocabulaire employé pour les requins et les raies, animaux avec du cartilage au lieu d’os (embranchement : chordata ; classe : chondrichthyes), et les anguilles (embranchement : chordata ; classe : cyclostome).
+
+
+ + + +
1.6.1.7
+
+ +
Use this domain for the names of insect species (phylum Arthropoda, class Insecta). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.
+
Classer dans ce champ lexical les noms des espèces d’insectes (embranchement : arthropodes ; classe : insectes). A noter : les insectes ont six pattes et les araignées en ont huit. Cependant, dans certaines langues, la distinction entre les insectes et les araignées n’existe pas et il se peut que leurs locuteurs se servent d’autres caractéristiques pour subdiviser l’embranchement des arthropodes.
+
+
+ + + +
1.6.1.8
+
+ +
Use this domain for spiders (phylum Arthropoda, class Arachnida). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.
+
Classer dans ce champ lexical le vocabulaire employé pour les araignées (embranchement : arthropodes ; classe : arachnides). A noter : les insectes ont six pattes, alors que les araignées en ont huit. Cependant, certaines langues ne font pas la différence entre les insectes et les araignées, et peuvent utiliser d’autres caractéristiques pour subdiviser les arthropodes.
+
+
+ + + +
1.6.1.9
+
+ +
Use this domain for the names of worms, animals with shells, and other animals that do not fit into any of the other categories.
+
Classer dans ce champ lexical le vocabulaire employé pour les vers, les animaux avec des coquilles, et d'autres animaux qui n’entrent pas dans les autres catégories.
+
+
+ + + +
1.6.2
+
+ +
Use this domain for the parts of animals, especially those of mammals.
+
Classer dans ce champ lexical les parties du corps des animaux, notamment des mammifères.
+
+
+ + + +
1.6.2.1
+
+ +
Use this domain for the parts of a bird, but not general parts that belong to all animals.
+
Classer dans ce champ lexical les parties spécifiques de l’oiseau, mais pas celles appartenant à toutes les espèces animales.
+
+
+ + + +
1.6.2.2
+
+ +
Use this domain for the parts of a reptile.
+
Classer dans ce champ lexical les différentes parties du reptile.
+
+
+ + + +
1.6.2.3
+
+ +
Use this domain for the parts of a fish.
+
Classer dans ce champ lexical les différentes parties du poisson.
+
+
+ + + +
1.6.2.4
+
+ +
Use this domain for the parts of an insect.
+
Classer dans ce champ lexical les différentes parties de l’insecte.
+
+
+ + + +
1.6.2.5
+
+ +
Use this domain for the parts of small animals.
+
Classer dans ce champ lexical les différentes parties des animaux inférieurs.
+
+
+ + + +
1.6.3
+
+ +
Use this domain for words related to the life cycle of an animal.
+
Classer dans ce champ lexical le vocabulaire associé au cycle de la vie d’un animal.
+
+
+ + + +
1.6.3.1
+
+ +
Use this domain for words related to eggs.
+
Classer dans ce champ lexical le vocabulaire associé aux œufs.
+
+
+ + + +
1.6.4
+
+ +
Use this domain for actions of animals.
+
Classer dans ce champ lexical le vocabulaire associé aux actions des animaux.
+
+
+ + + +
1.6.4.1
+
+ +
Use this domain for ways in which animals move. Only include words specific for the movement of animals. For the movement of people use the domains under Movement. It is necessary to think through how each type of animal moves, especially the important ones.
+
Classer dans ce champ lexical les termes décrivant les différents mouvements des animaux, mais uniquement ceux qui sont spécifiques aux animaux. Le vocabulaire relatif aux mouvements des personnes est à classer dans le champ lexical « Mouvement ». Il faut passer en revue les mouvements de chaque espèce animale, surtout des animaux importants.
+
+
+ + + +
1.6.4.2
+
+ +
Use this domain for words referring to animals eating. Because animals often eat in very different ways from people, many languages will have words that are specific to the way an animal eats.
+
Classer dans ce champ lexical le vocabulaire associé à l’alimentation animale. Comme les animaux mangent souvent d’une manière très différente des humains, de nombreuses langues auront des termes spécifiques pour la façon dont un animal mange.
+
+
+ + + +
1.6.4.3
+
+ +
Use this domain for the sounds animals make. It is necessary to think through the sounds each type of animal makes, especially the important ones.
+
Classer dans ce champ lexical les différents sons produits par les animaux. Il faut passer en revue chaque famille d’animaux, notamment des animaux principaux.
+
+
+ + + +
1.6.5
+
+ +
Use this domain for animal homes. It is necessary to think through the homes of each type of animal, especially the important ones.
+
Classer dans ce champ lexical le vocabulaire associé à l’habitat des animaux. Il est nécessaire de bien prendre en compte le nom des habitations de chaque type d’animal, en particulier celles qui sont importantes.
+
+
+ + + +
1.6.6
+
+ +
Use this domain for words referring to groups of animals.
+
Classez dans ce champ lexical le vocabulaire associé aux groupes d’animaux.
+
+
+ + + +
1.6.7
+
+ +
Use this domain for words referring to male and female animals. Most languages have special words for the male and female of a species only for domesticated animals. Sometimes there will be a word for the male and not the female, and vice versa (male dog, bitch). Sometimes the word for one is also used generically +(cow for both female and generic).
+
Classer dans ce champ lexical le vocabulaire qui désigne les animaux mâles et femelles. La plupart des langues ont des mots spécifiques pour désigner le mâle et la femelle d’une espèce uniquement pour les animaux domestiques. Il existera parfois un mot pour désigner le mâle, mais il n’y en aura pas pour la femelle, et vice versa (un castor, une girafe). D’autres fois, le mot qui désigne l’un des deux genres se trouve également être le nom qui désigne l’animal en général (un chat, un mouton à la fois pour le nom du mâle et le nom générique).
+
+
+ + + +
1.7
+
+ +
Use this domain for words referring to nature and the environment--the world around us. Include words that refer to how people damage or protect nature.
+
Classer dans ce champ lexical les mots qui désignent la nature et l’environnement : le monde qui nous entoure. Y inclure les mots qui font référence à la façon dont les gens détruisent ou protègent la nature.
+
+
+ + + +
1.7.1
+
+ +
Use this domain for words describing something that is natural--something in the world around us, as opposed to something that has been made or changed by people.
+
Classer dans ce champ lexical les mots ou expressions qui décrivent une chose naturelle : quelque chose appartenant au monde qui nous entoure, par opposition à quelque chose qui a été créé ou modifié par l’homme.
+
+
+ + + +
2
+
+ +
Use this domain for general words for a person or all mankind.
+
Classer dans ce champ lexical les termes génériques désignant une personne ou l’humanité.
+
+
+ + + +
2.1
+
+ +
Use this domain for general words for the whole human body, and general words for any part of the body. Use a drawing or photo to label each part. Some words may be more general than others are and include some of the other words. For instance 'head' is more general than 'face' or 'nose'. Be sure that both general and specific parts are labeled.
+
Classer dans ce champ lexical les termes génériques désignant le corps humain ou l’une de ses parties. Utiliser un dessin ou une photographie pour illustrer chaque partie du corps humain. Certains mots seront plus génériques que d’autres et en incluront d’autres. Par exemple, « tête » est un terme plus générique que « visage » ou « nez ». S’assurer que les termes génériques et spécifiques sont tous illustrés.
+
+
+ + + +
2.1.1
+
+ +
Use this domain for the parts of the head.
+
Classer dans ce champ lexical les termes qui désignent les parties de la tête.
+
+
+ + + +
2.1.1.1
+
+ +
Use this domain for words related to the eye.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’oeil.
+
+
+ + + +
2.1.1.2
+
+ +
Use this domain for words related to the ear.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’oreille.
+
+
+ + + +
2.1.1.3
+
+ +
Use this domain for words related to the nose.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au nez.
+
+
+ + + +
2.1.1.4
+
+ +
Use this domain for words related to the mouth. Do not use this domain for words referring to eating, drinking, or speaking.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la bouche. Ne pas utiliser ce champ lexical pour des mots se rapportant à manger, boire ou parler.
+
+
+ + + +
2.1.1.5
+
+ +
Use this domain for words related to the teeth.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux dents.
+
+
+ + + +
2.1.2
+
+ +
Use this domain for the parts of the torso.
+
Classer dans ce champ lexical les termes désignant les différentes parties du torse.
+
+
+ + + +
2.1.3
+
+ +
Use this domain for words referring to a limb--either an arm or a leg.
+
Classer dans ce champ lexical les termes génériques associés à un membre : un bras ou une jambe.
+
+
+ + + +
2.1.3.1
+
+ +
Use this domain for the parts of the arm.
+
Classer dans ce champ lexical les noms des différentes parties du bras.
+
+
+ + + +
2.1.3.2
+
+ +
Use this domain for the parts of the leg and foot.
+
Classer dans ce champ lexical les parties de la jambe et du pied.
+
+
+ + + +
2.1.3.3
+
+ +
Use this domain for words related to the fingers and toes.
+
Classer dans ce champ lexical le vocabulaire associé aux doigts et aux orteils.
+
+
+ + + +
2.1.4
+
+ +
Use this domain for words related to the skin.
+
Classer dans ce champ lexical le vocabulaire associé à la peau.
+
+
+ + + +
2.1.5
+
+ +
Use this domain for words related to hair.
+
Classer dans ce champ lexical le vocabulaire associé aux cheveux ou aux poils.
+
+
+ + + +
2.1.6
+
+ +
Use this domain for words related to the bones and joints.
+
Classer dans ce champ lexical le vocabulaire associé aux os et aux articulations.
+
+
+ + + +
2.1.7
+
+ +
Use this domain for words related to the soft tissue of the body.
+
Classer dans ce champ lexical le vocabulaire associé aux tissus du corps.
+
+
+ + + +
2.1.8
+
+ +
Use this domain for words referring to the internal organs.
+
Classer dans ce champ lexical le vocabulaire associé aux organes internes.
+
+
+ + + +
2.1.8.1
+
+ +
Use this domain for functions of the heart and blood veins.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux différentes fonctions du cœur, ainsi que des veines et vaisseaux sanguins.
+
+
+ + + +
2.1.8.2
+
+ +
Use this domain for words referring to the stomach and to the normal functions of the stomach. Do not use this domain for stomach illness.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’estomac et aux fonctions normales de l’estomac. Ne pas classer les troubles digestifs dans ce champ lexical.
+
+
+ + + +
2.1.8.3
+
+ +
Use this domain for words related to the male reproductive organs.
+
Classer dans ce champ lexical le vocabulaire associé aux organes de reproduction masculins.
+
+
+ + + +
2.1.8.4
+
+ +
Use this domain for words related to the female reproductive organs and a woman's monthly menstrual cycle. Some of these terms may be taboo. Care must be exercised in which terms are included in the dictionary. A group of women should decide which terms are 'public' and can go in the dictionary, and which would be considered taboo, overly crude, or embarrassing. For example some societies have been afraid that their women will be taken advantage of if these terms are known.
+
Classer dans ce champ lexical le vocabulaire associé aux organes de reproduction féminins et au cycle menstruel de la femme. Certains de ces termes peuvent être tabous. Choisir soigneusement des mots ou expressions pouvant figurer dans le dictionnaire. Demander à un groupe de femmes de décider quels sont les termes « décents » qui peuvent être mis dans le dictionnaire, et ceux qui sont tabous, trop explicites ou embarrassants. Par exemple, dans certaines sociétés, les gens craignent que l’on abuse des femmes du fait que ces termes soient connus.
+
+
+ + + +
2.2
+
+ +
Use this domain for the functions and actions of the whole body. Use the subdomains in this section for functions, actions, secretions, and products of various parts of the body. In each domain include any special words that are used of animals.
+
Classer dans ce champ lexical l’ensemble des fonctions et des actions du corps. Mettre dans les champs secondaires de cette section les fonctions, actions et sécrétions des différentes parties du corps.
+
+
+ + + +
2.2.1
+
+ +
Use this domain for words related to breathing.
+
Classer dans ce champ lexical le vocabulaire associé à la respiration.
+
+
+ + + +
2.2.2
+
+ +
Use this domain for words related to coughing, sneezing, and other actions of the mouth and nose.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte au fait de tousser, d’éternuer, et à toutes autres actions liées à la bouche et au nez.
+
+
+ + + +
2.2.3
+
+ +
Use this domain for words related to spitting.
+
Classer dans ce champ lexical le vocabulaire associé au crachement.
+
+
+ + + +
2.2.4
+
+ +
Use this domain for words related to mucus in the nose.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte aux mucosités présentes dans le nez.
+
+
+ + + +
2.2.5
+
+ +
Use this domain for words related to blood and bleeding.
+
Classer dans ce champ lexical le vocabulaire associé au sang et au saignement.
+
+
+ + + +
2.2.6
+
+ +
Use this domain for words related to sweating.
+
Classer dans ce champ lexical le vocabulaire associé à la transpiration.
+
+
+ + + +
2.2.7
+
+ +
Use this domain for words related to urination.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’uriner.
+
+
+ + + +
2.2.8
+
+ +
Use this domain for words related to defecation.
+
Classer dans ce champ lexical le vocabulaire associé à la défécation.
+
+
+ + + +
2.3
+
+ +
Use this domain for general words related to all the senses--sight, hearing, smell, taste, and feeling. Some languages may not distinguish some of these senses, and some languages may have words for other senses. There are also other senses that animals have. If your language has words for other senses, include them here.
+
Classer dans ce champ lexical le vocabulaire associé à tous les sens : vue, ouïe, odorat, goût et toucher. Certaines langues ne font peut-être pas la distinction entre tous ces sens et d’autres, au contraire, peuvent avoir un mot pour des sens supplémentaires. Il y a aussi d’autres sens spécifiques aux animaux. Si votre langue a des mots pour d’autres sens, veuillez les inclure ici.
+
+
+ + + +
2.3.1
+
+ +
Use this domain for words related to seeing something (in general or without conscious choice).
+
Classer dans ce champ lexical le vocabulaire associé à la vue (en général ou sans choix conscient).
+
+
+ + + +
2.3.1.1
+
+ +
Use this domain for words that refer to looking at someone or something--to see something because you want to.
+
Classer dans ce champ lexical le vocabulaire associé au regard sur quelqu’un ou quelque chose : voir quelque chose parce qu’on le désire.
+
+
+ + + +
2.3.1.2
+
+ +
Use this domain for words that refer to watching someone or something--to look for some time at something that is happening because you are interested in it and want to know what is happening.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’observer quelqu’un ou quelque chose : regarder un certain temps quelque chose qui se passe parce que vous vous y intéressez et que vous voulez le connaître.
+
+
+ + + +
2.3.1.3
+
+ +
Use this domain for words referring to examining--to look carefully at something because you want to learn something about it.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’examiner : regarder attentivement quelque chose parce que vous voulez apprendre quelque chose à son sujet.
+
+
+ + + +
2.3.1.4
+
+ +
Use this domain for words related to showing something to someone so that they can see it--to cause someone to see something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de montrer quelque chose à quelqu’un pour qu’il puisse le voir : amener quelqu’un à voir quelque chose.
+
+
+ + + +
2.3.1.5
+
+ +
Use this domain for words related to being able to see something--words that describe something that can be seen, something that cannot be seen, something that is easy to see, or something that is difficult to see.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être capable de voir quelque chose : des mots qui décrivent ce qu’on peut voir, qu’on ne peut pas voir, qui se voit facilement ou qui se voit difficilement.
+
+
+ + + +
2.3.1.5.1
+
+ +
Use this domain for words referring to something appearing (becoming visible) and disappearing (becoming invisible).
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui apparaît (devient visible) et disparaît (devient invisible).
+
+
+ + + +
2.3.1.6
+
+ +
Use this domain for words that describe how well you can see through something.
+
Classer dans ce champ lexical le vocabulaire qui décrit jusqu’à quel point on peut voir à travers quelque chose.
+
+
+ + + +
2.3.1.7
+
+ +
Use this domain for words related to reflecting light.
+
Classer dans ce champ lexical le vocabulaire associé au fait de réfléchir la lumière.
+
+
+ + + +
2.3.1.8
+
+ +
Use this domain for words related to how something appears.
+
Classer dans ce champ lexical le vocabulaire associé à l’aspect exnérieur d’une chose.
+
+
+ + + +
2.3.1.8.1
+
+ +
Use this domain for words describing someone or something that is beautiful--pleasing in appearance,.
+
Classer dans ce champ lexical le vocabulaire associé à quelqu’un ou quelque chose de beau : d’apparence agréable.
+
+
+ + + +
2.3.1.8.2
+
+ +
Use this domain for words describing someone or something that is ugly--not pleasing in appearance.
+
Classer dans ce champ lexical le vocabulaire associé à une personne ou une chose qui est laide : d’apparence peu agréable.
+
+
+ + + +
2.3.1.9
+
+ +
Use this domain for words referring to glasses and other things people use to help them see.
+
Classer dans ce champ lexical le vocabulaire associé aux lunettes et autres aides visuelles.
+
+
+ + + +
2.3.2
+
+ +
Use this domain for words related to hearing something (in general or without conscious choice).
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’entendre quelque chose (en général ou inconsciemment).
+
+
+ + + +
2.3.2.1
+
+ +
Use this domain for words related to listening--to deliberately hear something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’écouter : chercher délibérément à entendre.
+
+
+ + + +
2.3.2.2
+
+ +
Use this domain for words referring to sounds.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux sons.
+
+
+ + + +
2.3.2.3
+
+ +
Use this domain for words referring to types of sounds.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux différents types de sons.
+
+
+ + + +
2.3.2.4
+
+ +
Use this domain for words that describe loud sounds.
+
Classer dans ce champ lexical le vocabulaire associé à des sons forts.
+
+
+ + + +
2.3.2.5
+
+ +
Use this domain for words that describe quiet sounds.
+
Classer dans ce champ lexical le vocabulaire associé à des sons doux.
+
+
+ + + +
2.3.3
+
+ +
Use this domain for words related to tasting something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de goûter quelque chose.
+
+
+ + + +
2.3.4
+
+ +
Use this domain for words related to smelling something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de sentir quelque chose.
+
+
+ + + +
2.3.5
+
+ +
Use this domain for words related to the sense of touch--to feel something with your skin, to feel hot or cold, to feel tired or rested.
+
Classer dans ce champ lexical le vocabulaire associé au toucher : percevoir quelque chose avec sa peau, éprouver les sensations de chaud ou froid, de fatigue ou de bien-être.
+
+
+ + + +
2.3.5.1
+
+ +
Use this domain for words related to feeling comfortable--to feel good in your body because there is nothing around you that makes you feel bad. This includes comfortable clothes, chair, bed, temperature, or journey.
+
Classer dans ce champ lexical le vocabulaire associé à la sensation de confort : se sentir bien dans son corps car il n’y a rien alentour qui soit cause de désagrément. Ceci inclut des éléments tels que vêtements, chaise, lit, température ou voyage.
+
+
+ + + +
2.4
+
+ +
Use this domain for general words related to the condition of the body.
+
Classer dans ce champ lexical les termes génériques en rapport avec la condition physique.
+
+
+ + + +
2.4.1
+
+ +
Use this domain for words that related to being strong, such as being able to lift a heavy object or being able to work hard.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fort, tel qu’être capable de soulever quelque chose de lourd ou de travailler dur.
+
+
+ + + +
2.4.2
+
+ +
Use this domain for words related to being weak.
+
Classer dans ce champ lexical le vocabulaire associé à la faiblesse.
+
+
+ + + +
2.4.3
+
+ +
Use this domain for words related to being energetic.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être plein d’énergie.
+
+
+ + + +
2.4.4
+
+ +
Use this domain for words related to being tired.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fatigué.
+
+
+ + + +
2.4.5
+
+ +
Use this domain for words related to resting.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se reposer.
+
+
+ + + +
2.5
+
+ +
Use this domain for words related to a person being healthy--not sick.
+
Classer dans ce champ lexical le vocabulaire associé à une personne en bonne santé : qui n’est pas malade.
+
+
+ + + +
2.5.1
+
+ +
Use this domain for words describing a person who is sick.
+
Classer dans ce champ lexical le vocabulaire qui décrit une personne malade.
+
+
+ + + +
2.5.1.1
+
+ +
Use this domain for words referring to recovering from sickness or injury.
+
Classer dans ce champ lexical le vocabulaire associé à la guérison d’une maladie ou d’une blessure.
+
+
+ + + +
2.5.2
+
+ +
Use this domain for general words for disease and for words referring to specific diseases.
+
Classer dans ce champ lexical le vocabulaire générique associé à la maladie et les mots désignant des maladies spécifiques.
+
+
+ + + +
2.5.2.1
+
+ +
Use this domain for words related to not having enough food.
+
Classer dans ce champ lexical le vocabulaire associé au fait de manquer de nourriture.
+
+
+ + + +
2.5.2.2
+
+ +
Use this domain for words related to skin diseases such as leprosy, boils, and rashes.
+
Classer dans ce champ lexical les mots associés aux maladies de la peau telles que la lèpre, les furoncles, et les éruptions.
+
+
+ + + +
2.5.2.3
+
+ +
Use this domain for words related to stomach illness.
+
Classer dans ce champ lexical le vocabulaire associé aux troubles digestifs.
+
+
+ + + +
2.5.2.4
+
+ +
Use this domain for words related to tooth decay.
+
Classer dans ce champ lexical le vocabulaire associé aux caries dentaires.
+
+
+ + + +
2.5.3
+
+ +
Use this domain for words related to injuring someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de blesser quelqu’un.
+
+
+ + + +
2.5.3.1
+
+ +
Use this domain for words related to amputating or losing a limb or other part of your body.
+
Classer dans ce champ lexical le vocabulaire associé à l'amputation ou la perte d'un membre ou d’une autre partie du corps.
+
+
+ + + +
2.5.3.2
+
+ +
Use this domain for words referring to poison--something that is bad for your body if you eat it, it gets on you, or an animal injects it into you.
+
Classer dans ce champ lexical le vocabulaire associé au poison : quelque chose qui est mauvais pour le corps si on le mange, s’il vient sur le corps ou si un animal l’injecte dans le corps.
+
+
+ + + +
2.5.4
+
+ +
Use this domain for general words for being disabled--to be injured or born with a condition, so that some part of your body does not work.
+
Classer dans ce champ lexical les termes génériques associés aux handicaps (congénitaux ou suite à un accident causant la perte de l'usage d'une partie du corps).
+
+
+ + + +
2.5.4.1
+
+ +
Use this domain for words related to being blind.
+
Classer dans ce champ lexical le vocabulaire associé à la cécité.
+
+
+ + + +
2.5.4.2
+
+ +
Use this domain for words related to having poor eyesight.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir une mauvaise vue.
+
+
+ + + +
2.5.4.3
+
+ +
Use this domain for words related to being deaf.
+
Classer dans ce champ lexical le vocabulaire associé à la surdité.
+
+
+ + + +
2.5.4.4
+
+ +
Use this domain for words related to being mute--unable to speak (usually because of being unable to hear).
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être muet : incapacité de parler (liée habituellement à l’incapacité d’entendre).
+
+
+ + + +
2.5.4.5
+
+ +
Use this domain for words related to having a birth defect.
+
Classer dans ce champ lexical le vocabulaire associé aux malformations congénitales.
+
+
+ + + +
2.5.5
+
+ +
Use this domain for words referring to the cause of disease.
+
Classer dans ce champ lexical le vocabulaire qui est associé à la cause d’une maladie.
+
+
+ + + +
2.5.6
+
+ +
Use this domain for words for symptoms of disease--something that happens to you when you get sick, something that shows that you are sick.
+
Classer dans ce champ lexical le vocabulaire associé aux symptômes d’une maladie : quelque chose qui arrive quand on tombe malade, quelque chose qui montre qu’on est malade.
+
+
+ + + +
2.5.6.1
+
+ +
Use this domain for words related to pain
+
Classer dans ce champ lexical le vocabulaire associé à la douleur.
+
+
+ + + +
2.5.6.2
+
+ +
Use this domain for words related to having a fever.
+
Classer dans ce champ lexical le vocabulaire associé à la fièvre.
+
+
+ + + +
2.5.6.3
+
+ +
Use this domain for words related to swelling of the body.
+
Classer dans ce champ lexical le vocabulaire associé aux enflures du corps.
+
+
+ + + +
2.5.6.4
+
+ +
Use this domain for words related to losing consciousness, including fainting, being knocked out, and anesthesia.
+
Classer dans ce champ lexical le vocabulaire associé à la perte de conscience, y compris le fait de s’évanouir (se trouver mal), d’être assommé, et à l’anesthésie.
+
+
+ + + +
2.5.6.5
+
+ +
Use this domain for words that describe the state of the mind when a person's mind is not working well or when he is not thinking very well.
+
Classer dans ce champ lexical le vocabulaire qui décrit l’état de l’esprit d’une personne qui ne fonctionne pas bien ou quand celle-ci ne réfléchit pas très bien.
+
+
+ + + +
2.5.6.6
+
+ +
Use this domain for words related to having a vision--when a person sees something that isn't there because something unusual has happened to their mind. Include unusual, abnormal, and paranormal states of consciousness, visions, hallucinations, and spiritually induced trances.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir une vision : une personne voit quelque chose qui n’est pas réel, parce que son esprit a subi quelque chose d’inhabituel. Inclure les états de conscience inhabituels, anormaux et paranormaux, les visions, les hallucinations, et les transes d’origine spirituelle.
+
+
+ + + +
2.5.7
+
+ +
Use this domain for words related to the treatment of disease and injury.
+
Classer dans ce champ lexical le vocabulaire associé au traitement des maladies et des blessures.
+
+
+ + + +
2.5.7.1
+
+ +
Use this domain for words referring to people who habitually take care of the sick and injured, such as those who do it for a living.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux gens qui s’occupent des malades et des blessés, tels ceux dont c’est le métier.
+
+
+ + + +
2.5.7.2
+
+ +
Use this domain for words related to medicine, types of medicine, and the application of medicine.
+
Classer dans ce champ lexical le vocabulaire associé aux médicaments, aux différents types de médicaments, et à l’administration de médicaments.
+
+
+ + + +
2.5.7.3
+
+ +
Use this domain for plants that are used for medicine.
+
Classer dans ce champ lexical les noms des plantes employées comme médicaments.
+
+
+ + + +
2.5.7.4
+
+ +
Use this domain for words that refer to a place where the sick and injured are treated.
+
Classer dans ce champ lexical le vocabulaire associé aux lieux où sont soignés les malades et les blessés.
+
+
+ + + +
2.5.7.5
+
+ +
Use this domain for words related to traditional medicine. There may be no distinction in terminology between 'modern medicine' and 'traditional medicine.' In that case this domain should be ignored. (Our purpose here is not to judge the value of traditional medicine, but to collect and describe the words used for it.)
+
Classer dans ce champ lexical le vocabulaire associé à la médecine traditionnelle. Ici il se peut qu’il n’y ait pas de distinction au point de vue terminologie entre « médecine moderne » et « médecine traditionnelle ». Dans ce cas, on laisse de côté ce champ lexical. (Notre but ici n’est pas de juger la valeur de la médecine traditionnelle, mais de recueillir et de décrire les mots qui s’y appliquent.)
+
+
+ + + +
2.5.8
+
+ +
Use this domain for words related to being mentally ill or disabled.
+
Classer dans ce champ lexical le vocabulaire associé aux maladies ou handicaps mentaux.
+
+
+ + + +
2.6
+
+ +
Use this domain for general words referring to being alive and to a person's lifetime.
+
Classer dans ce champs lexical les termes génériques associés au fait d’être vivant et à la durée de vie d’une personne.
+
+
+ + + +
2.6.1
+
+ +
Use this domain for words related to the state of being married.
+
Classer dans ce champ lexical les termes associés au statut de personne mariée.
+
+
+ + + +
2.6.1.1
+
+ +
Use this domain for all the words related to arranging a marriage. Cultures vary widely in their practices. In some cultures marriages are arranged by the parents. In other cultures a man must seek a wife for himself. Some cultures allow either practice or a combination of the two. So some of the questions below may be inappropriate to your culture.
+
Classer dans ce champ lexical le vocabulaire associé à l’arrangement d’un mariage. Les pratiques sont très différentes selon les cultures. Dans certaines, les mariages sont arrangés par les parents. Dans d’autres, un homme doit chercher lui-même sa femme. D’autres cultures permettent les deux ou une combinaison des deux. Aussi, les questions qui suivent ne correspondront peut-être pas à votre culture.
+
+
+ + + +
2.6.1.2
+
+ +
Use this domain for words related to the wedding ceremony.
+
Classer dans ce champ lexical le vocabulaire associé à la cérémonie de mariage.
+
+
+ + + +
2.6.1.3
+
+ +
Use this domain for words related to being unmarried.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être non marié.
+
+
+ + + +
2.6.1.4
+
+ +
Use this domain for words related to divorce--to legally end your marriage.
+
Classer dans ce champ lexical le vocabulaire associé au divorce : mettre légalement fin à un mariage.
+
+
+ + + +
2.6.1.5
+
+ +
Use this domain for words related to romantic love.
+
Classer dans ce champ lexical le vocabulaire associé à un amour romantique.
+
+
+ + + +
2.6.2
+
+ +
Use this domain for words related to sexual relations and having sex. Be careful that your domain label does not use a taboo word.
+
Classer dans ce champ lexical le vocabulaire associé aux relations sexuelles et à l’amour. Attention à ne pas utiliser des mots tabous !
+
+
+ + + +
2.6.2.1
+
+ +
Use this domain for words related to being a virgin--a person who has never had sex.
+
Classer dans ce champ lexical le vocabulaire associé à la virginité : fait de n’avoir jamais eu de relations sexuelles.
+
+
+ + + +
2.6.2.2
+
+ +
Use this domain for words related to attracting someone sexually--to cause someone to want to have sex with you, and for words related to being sexually attracted to someone--to want to have sex with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attirer quelqu’un sexuellement : donner envie à quelqu’un d’avoir des rapports sexuels avec soi ; ainsi que le vocabulaire associé au fait d’être attiré sexuellement par quelqu’un : désirer avoir des rapports sexuels avec lui (ou elle).
+
+
+ + + +
2.6.2.3
+
+ +
Use this domain for words referring to illicit sexual relations.
+
Classer dans ce champ lexical les mots associés à des relations sexuelles immorales.
+
+
+ + + +
2.6.3
+
+ +
Use this domain for words related to giving birth and being born.
+
Classer dans ce champ lexical le vocabulaire associé au fait de donner la vie et à la naissance.
+
+
+ + + +
2.6.3.1
+
+ +
Use this domain for words related to being pregnant.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être enceinte.
+
+
+ + + +
2.6.3.2
+
+ +
Use this domain for words related to a fetus--a baby that has not been born yet.
+
Classer dans ce champ lexical le vocabulaire associé à un fœtus, c’est-à-dire un bébé non encore né.
+
+
+ + + +
2.6.3.3
+
+ +
Use this domain for words related to the prevention or termination of a pregnancy, and for words related to killing babies.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’empêcher ou d’interrompre une grossesse, et le vocabulaire associé au fait de tuer un bébé.
+
+
+ + + +
2.6.3.4
+
+ +
Use this domain for words related to labor and birth pains.
+
Classer dans ce champ lexical le vocabulaire associé au travail et aux douleurs de l’accouchement.
+
+
+ + + +
2.6.3.5
+
+ +
Use this domain for words related to helping a woman to give birth.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aider une femme à accoucher.
+
+
+ + + +
2.6.3.6
+
+ +
Use this domain for words related to an unusual birth.
+
Classer dans ce champ lexical le vocabulaire associé à une naissance anormale.
+
+
+ + + +
2.6.3.7
+
+ +
Use this domain for words related to multiple births--when a woman give birth to more than one baby at the same time.
+
Classer dans ce champ lexical le vocabulaire associé aux naissances multiples (quand une femme donne naissance à plus d’un bébé en même temps).
+
+
+ + + +
2.6.3.8
+
+ +
Use this domain for words related to being unable to have children.
+
Classer dans ce champ lexical le vocabulaire associé à l’incapacité d’avoir des enfants.
+
+
+ + + +
2.6.3.9
+
+ +
Use this domain for words related to a birth ceremony.
+
Classer dans ce champ lexical le vocabulaire associé à la cérémonie à l’occasion de la naissance.
+
+
+ + + +
2.6.4
+
+ +
Use this domain for words referring to a stage of life--a time period in a person's life.
+
Classer dans ce champ lexical le vocabulaire associé à un stade de la vie (une période dans la vie d’une personne).
+
+
+ + + +
2.6.4.1
+
+ +
Use this domain for words related to a baby.
+
Classer dans ce champ lexical le vocabulaire associé à un bébé.
+
+
+ + + +
2.6.4.1.1
+
+ +
Use this domain for words related to caring for a baby.
+
Classer dans ce champ lexical le vocabulaire associé aux soins donnés au bébé.
+
+
+ + + +
2.6.4.2
+
+ +
Use this domain for words related to a child.
+
Classer dans ce champ lexical le vocabulaire associé à l’enfant.
+
+
+ + + +
2.6.4.2.1
+
+ +
Use this domain for words related to rearing a child--to take care of someone while they are a child so that their needs are met and they become a good person.
+
Classer dans ce champ lexical le vocabulaire associé à l’éducation d’un enfant : prendre soin d’une personne dans son enfance afin de répondre à ses besoins et de l’aider à devenir quelqu’un de bien.
+
+
+ + + +
2.6.4.3
+
+ +
Use this domain for words referring to a youth.
+
Classer dans ce champ lexical le vocabulaire associé à un jeune.
+
+
+ + + +
2.6.4.4
+
+ +
Use this domain for words referring to an adult.
+
Classer dans ce champ lexical le vocabulaire associé à l’adulte.
+
+
+ + + +
2.6.4.5
+
+ +
Use this domain for words related to old age and older persons?
+
Classer dans ce champ lexical le vocabulaire associé à la vieillesse et aux personnes âgées.
+
+
+ + + +
2.6.4.6
+
+ +
Use this domain for words referring to people, animals, or plants growing and getting bigger.
+
Classer dans ce champ lexical le vocabulaire associé à des gens, des animaux ou des plantes dont la taille augmente.
+
+
+ + + +
2.6.4.7
+
+ +
Use this domain for words related to initiation rites--a ceremony when a child becomes an adult.
+
Classer dans ce champ lexical le vocabulaire associé aux rites d’initiation : cérémonie célébrée lorsqu’un enfant devient adulte.
+
+
+ + + +
2.6.4.8
+
+ +
Use this domain for words referring to a peer group--all the people who were born during the same time period.
+
Classer dans ce champ lexical le vocabulaire associé aux personnes qui sont nées durant la même période.
+
+
+ + + +
2.6.5
+
+ +
Use this domain for words referring to male and female people.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux personnes de sexe masculin et de sexe féminin.
+
+
+ + + +
2.6.5.1
+
+ +
Use this domain for words referring to a man or any male person.
+
Classer dans ce champ lexical le vocabulaire associé à l’homme en général.
+
+
+ + + +
2.6.5.2
+
+ +
Use this domain for words referring to a woman or any female person.
+
Classer dans ce champ lexical le vocabulaire associé à la femme en général.
+
+
+ + + +
2.6.6
+
+ +
Use this domain for words related to dying.
+
Classer dans ce champ lexical le vocabulaire associé à la mort.
+
+
+ + + +
2.6.6.1
+
+ +
Use this domain for words related to killing someone--to cause someone to die.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tuer quelqu’un : causer la mort d’une personne.
+
+
+ + + +
2.6.6.2
+
+ +
Use this domain for words referring to a corpse--the body of a person who has died.
+
Classer dans ce champ lexical le vocabulaire associé à un cadavre : le corps d’une personne morte.
+
+
+ + + +
2.6.6.3
+
+ +
Use this domain for words related to a funeral and other things that are done after a person dies.
+
Classer dans ce champ lexical le vocabulaire associé aux funérailles et ce qu’on fait après la mort de quelqu’un.
+
+
+ + + +
2.6.6.4
+
+ +
Use this domain for words related to mourning a death--to feel bad because someone died and to show this feeling in various ways. Include whatever cultural practices are used.
+
Classer dans ce champ lexical le vocabulaire associé au deuil pour un mort : avoir de la peine parce qu’une personne est décédée et montrer ses sentiments de différentes façons. Inclure les pratiques culturelles qui sont en usage.
+
+
+ + + +
2.6.6.5
+
+ +
Use this domain for words related to disposing of a dead body. Different cultures have practices other than burying a body in the ground. Include words for all practices used by the culture.
+
Classer dans ce champ lexical le vocabulaire associé à l’enterrement. Les coutumes varient selon les cultures : l’ensevelissement du corps dans la terre n’est pas général. Inclure des mots pour toutes les coutumes liées à une culture donnée.
+
+
+ + + +
2.6.6.6
+
+ +
Use this domain for words related to a grave--the place where a dead body is put.
+
Classer dans ce champ lexical le vocabulaire associé à une tombe : l’endroit où l’on met un corps.
+
+
+ + + +
2.6.6.7
+
+ +
Use this domain for words related to inheriting something from your parents after they die.
+
Classer dans ce champ lexical le vocabulaire relatif à l’héritage reçu de ses parents après leur mort.
+
+
+ + + +
2.6.6.8
+
+ +
Use this domain for words related to life after death.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la vie après la mort.
+
+
+ + + +
3
+
+ +
Use this domain for general words referring to mental and verbal activity. This domain is primarily for grouping many related domains. Therefore there may be no general word in a language to cover such a broad area of meaning.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’activité mentale et langagière. Ce champ sert essentiellement à regrouper différents champs voisins. Il se peut donc que dans certaines langues, il n’y ait aucun terme générique couvrant une telle variété de sens.
+
+
+ + + +
3.1
+
+ +
Use this domain for general words related to the immaterial, non-physical part of a person, as opposed to the body.
+
Classer dans ce champ lexical les termes génériques associés à la partie immatérielle, non physique d’une personne par contraste avec le corps.
+
+
+ + + +
3.1.1
+
+ +
Use this domain for words that describe a person's personality (the way he usually thinks, talks, and how he acts with other people).
+
Classer dans ce champ lexical les termes génériques qui décrivent la personnalité de quelqu’un (sa façon habituelle de penser, de parler, d’agir).
+
+
+ + + +
3.1.2
+
+ +
Use this domain for words referring to a person's mental state.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’état mental de quelqu’un.
+
+
+ + + +
3.1.2.1
+
+ +
Use this domain for words referring to a mental state when the mind is working hard.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’état mental lorsque l’esprit travaille intensément.
+
+
+ + + +
3.1.2.2
+
+ +
Use this domain for words related to noticing something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remarquer quelque chose.
+
+
+ + + +
3.1.2.3
+
+ +
Use this domain for words referring to a mental state when the mind is working hard.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’état mental durant lequel l’esprit travaille dur.
+
+
+ + + +
3.1.2.4
+
+ +
Use this domain for words related to ignoring someone--to not look at, listen to, or talk to someone because you think they are not important or you don't like them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’ignorer quelqu’un, de ne pas le regarder, de ne pas l’écouter ou de ne pas lui parler parce qu’on ne le trouve pas important ou qu’on ne l’aime pas.
+
+
+ + + +
3.2
+
+ +
Use this domain for words related to thinking, thought processes, and kinds of thinking.
+
Classer dans ce champ lexical le vocabulaire qui signifie penser, fait référence à la réflexion et aux modes de pensée.
+
+
+ + + +
3.2.1
+
+ +
Use this domain for general words referring to the mind--the part of a person that thinks.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’intellect (l’intelligence) : capacité de penser de la personne.
+
+
+ + + +
3.2.1.1
+
+ +
Use this domain for words related to thinking about something for some time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à penser, pendant un moment, à quelque chose.
+
+
+ + + +
3.2.1.2
+
+ +
Use this domain for imagining things--to think about something that does not exist, or to think about something happening that has never happened.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’imagination, au fait de penser à des choses qui n’existent pas ou de penser à quelque chose qui arrive alors que cela n’était jamais arrivé.
+
+
+ + + +
3.2.1.3
+
+ +
Use this domain for words that describe a person who thinks well.
+
Classer dans ce champ lexical le vocabulaire qui qualifie quelqu’un qui pense correctement.
+
+
+ + + +
3.2.1.4
+
+ +
Use this domain for words that describe a person who does not think well.
+
Classer dans ce champ lexical le vocabulaire qui qualifie une personne qui raisonne mal.
+
+
+ + + +
3.2.1.5
+
+ +
Use this domain for words describing logical thinking.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un raisonnement logique.
+
+
+ + + +
3.2.1.6
+
+ +
Use this domain for words related to instinct--to know something without being told, to know what to do without taught how to do it.
+
Classer dans ce champ lexical le vocabulaire relatif à l’instinct, au fait de savoir quelque chose sans l’avoir entendu dire, au fait de savoir que faire sans l’avoir appris.
+
+
+ + + +
3.2.2
+
+ +
Use this domain for words referring to learning something, acquiring information, gaining knowledge (whether done intentionally or unintentionally), or discovering the answer to some question.
+
Classer dans ce champ lexical le vocabulaire qui signifie apprendre quelque chose, obtenir une information, accroître ses connaissances (que ce soit volontairement ou non) ou trouver la réponse à une question.
+
+
+ + + +
3.2.2.1
+
+ +
Use this domain for words referring to studying--to try to learn something.
+
Classer dans ce champ lexical le vocabulaire qui signifie étudier, essayer d’apprendre quelque chose.
+
+
+ + + +
3.2.2.2
+
+ +
Use this domain for words referring to checking something--when you think something is true or correct, but you aren't sure, you do something to find out if it is true or correct.
+
Classer dans ce champ lexical le vocabulaire qui signifie vérifier quelque chose ; quand on pense que c’est juste ou vrai, sans en être sûr, on fait quelque chose pour s’en assurer.
+
+
+ + + +
3.2.2.3
+
+ +
Use this domain for words referring to the process of determining the truth or falsehood of something, or for determining the nature or value of something.
+
Classer dans ce champ lexical le vocabulaire qui a trait au processus qui détermine si une chose est vraie ou fausse, ou qui détermine la nature ou la valeur de quelque chose.
+
+
+ + + +
3.2.2.4
+
+ +
Use this domain for words referring to answering a question when one is unsure of the answer.
+
Classer dans ce champ lexical le vocabulaire qui signifie donner, à une question, une réponse dont on n’est pas sûr.
+
+
+ + + +
3.2.2.5
+
+ +
Use this domain for words related to solving something--finding the answer to something that is difficult to understand.
+
Classer dans ce champ lexical le vocabulaire qui signifie résoudre quelque chose, trouver la réponse à quelque chose de difficile.
+
+
+ + + +
3.2.2.6
+
+ +
Use this domain for words related to realizing something.
+
Classer dans ce champ lexical le vocabulaire signifiant prendre conscience de quelque chose.
+
+
+ + + +
3.2.2.7
+
+ +
Use this domain for words referring to being willing to learn or unwilling to learn.
+
Classer dans ce champ lexical le vocabulaire qui signifie désirer apprendre ou ne pas le vouloir.
+
+
+ + + +
3.2.3
+
+ +
Use this domain for words referring to the results of thinking.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux résultats de l’action de penser.
+
+
+ + + +
3.2.3.1
+
+ +
Use this domain for words that describe whether or not something is known.
+
Classer dans ce champ lexical le vocabulaire qui sert à décrire si une chose est connue ou non.
+
+
+ + + +
3.2.3.2
+
+ +
Use this domain for words referring to an area of knowledge.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un champ de connaissance.
+
+
+ + + +
3.2.3.3
+
+ +
Use this domain for words that describe whether or not something is known.
+
Classer dans ce champ lexical ce qui est peu ou pas connu.
+
+
+ + + +
3.2.4
+
+ +
Use this domain for words referring to understanding a topic or the meaning of something.
+
Classer dans ce champ lexical le vocabulaire qui signifie comprendre un sujet ou le sens de quelque chose.
+
+
+ + + +
3.2.4.1
+
+ +
Use this domain for when a person does not understand a topic or the meaning of something.
+
Classer dans ce champ lexical le vocabulaire qui signifie ne pas comprendre un sujet ou le sens de quelque chose.
+
+
+ + + +
3.2.4.2
+
+ +
Use this domain for words that describe something that is easy to understand.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui se comprend facilement.
+
+
+ + + +
3.2.4.3
+
+ +
Use this domain for words that describe something that is difficult to understand.
+
Classer dans ce champ lexical le vocabulaire pour décrire quelque chose qui est difficile à comprendre.
+
+
+ + + +
3.2.5
+
+ +
Use this domain for situations in which a question or issues are being debated, more than one option is possible, and a person chooses to think in one way about the question or issue.
+
Classer dans ce champ lexical les cas où un sujet ou une question font l’objet d’un débat, où il y a plusieurs possibilités et où quelqu’un choisit sa façon d’envisager la question ou le sujet.
+
+
+ + + +
3.2.5.1
+
+ +
Use this domain for words referring to believing that something is true.
+
Classer dans ce champ lexical le vocabulaire qui signifie croire que quelque chose est vrai.
+
+
+ + + +
3.2.5.1.1
+
+ +
Use this domain for words referring to trusting someone--believing that someone is honest and will not do something bad to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir confiance en quelqu’un, de croire qu’une personne est honnête et ne ferait pas de mal à autrui.
+
+
+ + + +
3.2.5.2
+
+ +
Use this domain for words referring to not believing something or someone.
+
Classer dans ce champ lexical le vocabulaire qui signifie ne pas croire quelque chose ou quelqu’un.
+
+
+ + + +
3.2.5.3
+
+ +
Use this domain for words related to doubt--not being sure if something is true or not.
+
Classer dans ce champ lexical le vocabulaire qui est associé au doute, au fait de ne pas être sûr de la véracité de quelque chose.
+
+
+ + + +
3.2.5.4
+
+ +
Use this domain for when two people agree on something, think the same way about something, or agree on a decision.
+
Classer dans ce champ lexical le vocabulaire qui signifie que deux personnes sont d’accord sur quelque chose, pensent la même chose, sont d’accord sur une décision.
+
+
+ + + +
3.2.5.4.1
+
+ +
Use this domain for when two people disagree about something.
+
Classer dans ce champ lexical le vocabulaire qui signifie que deux personnes sont en désaccord à propos de quelque chose.
+
+
+ + + +
3.2.5.4.2
+
+ +
Use this domain for words related to protesting--to say publicly that you do not like something.
+
Classer dans ce champ lexical le vocabulaire signifiant protester, dire publiquement qu’on n’apprécie pas quelque chose.
+
+
+ + + +
3.2.5.5
+
+ +
Use this domain for words referring to a set of beliefs about truth.
+
Classer dans ce champ lexical le vocabulaire qui désigne un ensemble de croyances sur la vérité.
+
+
+ + + +
3.2.5.6
+
+ +
Use this domain for words referring to a person's attitude--the way you think and feel about something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’attitude de quelqu’un, à la manière dont il perçoit quelque chose ou à ce qu’il pense de quelque chose.
+
+
+ + + +
3.2.5.7
+
+ +
Use this domain for words referring to an extreme belief--something that you believe, that most people think is not good.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une croyance extrême, quelque chose qu’on croit et que la plupart des gens considèrent comme mal.
+
+
+ + + +
3.2.5.8
+
+ +
Use this domain for words related to changing your mind--to change what you think about something, or change your plans or decisions.
+
Classer dans ce champ lexical le vocabulaire signifiant changer d’avis, changer d’idée sur quelque chose, changer ses plans ou prendre une autre décision.
+
+
+ + + +
3.2.5.9
+
+ +
Use this domain for words related to approving of doing something--to think that doing something is good.
+
Classer dans ce champ lexical le vocabulaire signifiant approuver quelque chose, penser que ce qui est fait est bien.
+
+
+ + + +
3.2.6
+
+ +
Use this domain for words referring to remembering something you know.
+
Classer dans ce champ lexical le vocabulaire qui signifie se rappeler quelque chose qu’on sait.
+
+
+ + + +
3.2.6.1
+
+ +
Use this domain for words referring to forgetting something.
+
Classer dans ce champ lexical le vocabulaire qui signifie oublier quelque chose.
+
+
+ + + +
3.2.6.2
+
+ +
Use this domain for words referring to recognizing something.
+
Classer dans ce champ lexical le vocabulaire qui signifie reconnaître quelque chose.
+
+
+ + + +
3.2.6.3
+
+ +
Use this domain for words referring to memorizing something--to think hard about something so that you will not forget it.
+
Classer dans ce champ lexical le vocabulaire qui signifie apprendre par cœur quelque chose, se concentrer dessus afin de ne pas l’oublier.
+
+
+ + + +
3.2.6.4
+
+ +
Use this domain for words referring to reminding someone about something--to make someone remember something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rappeler à quelqu’un quelque chose : faire en sorte que quelqu’un se souvienne de quelque chose.
+
+
+ + + +
3.2.7
+
+ +
Use this domain for words referring to thinking about the future.
+
Classer dans ce champ lexical le vocabulaire qui signifie penser à l’avenir.
+
+
+ + + +
3.2.7.1
+
+ +
Use this domain for words related to hoping that something will happen--to want something good to happen in the future.
+
Classer dans ce champ lexical le vocabulaire signifiant espérer que quelque chose se passe, vouloir que quelque chose de bien arrive dans l’avenir.
+
+
+ + + +
3.2.7.2
+
+ +
Use this domain for words related to feeling hopeless--to thinking that nothing good will happen in the future.
+
Classer dans ce champ lexical le vocabulaire évoquant des sentiments de désespoir, la pensée que rien de bon ne se passera dans l’avenir.
+
+
+ + + +
3.2.7.3
+
+ +
Use this domain for words referring to predicting the future--saying what you think will happen.
+
Classer dans ce champ lexical le vocabulaire qui signifie prédire l’avenir, dire ce qu’on pense qu’il va arriver.
+
+
+ + + +
3.2.8
+
+ +
Use this domain for words indicating that the speaker thinks that something tends to be a certain way.
+
Classer dans ce champ lexical le vocabulaire qui indique que le locuteur pense que quelque chose tend à être ceci ou cela.
+
+
+ + + +
3.3
+
+ +
Use this domain for words related to wanting something or wanting to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant vouloir quelque chose ou vouloir faire quelque chose.
+
+
+ + + +
3.3.1
+
+ +
Use this domain for words related to deciding to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant décider de faire quelque chose.
+
+
+ + + +
3.3.1.1
+
+ +
Use this domain for words referring to a goal--something that you want to do or something that you want to happen.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un but, à quelque chose qu’on veut faire ou qu’on souhaite qu’il arrive.
+
+
+ + + +
3.3.1.2
+
+ +
Use this domain for words related to choosing something--to want one thing (or person) from a group of things, or to choose to do one thing from several possible things you could do.
+
Classer dans ce champ lexical le vocabulaire signifiant choisir quelque chose, vouloir une chose parmi d’autres ou choisir de faire une chose parmi plusieurs autres possibilités.
+
+
+ + + +
3.3.1.3
+
+ +
Use this domain for words referring to casting lots--to make a decision by chance.
+
Classer dans ce champ lexical le vocabulaire qui signifie tirer au sort, prendre une décision au hasard.
+
+
+ + + +
3.3.1.4
+
+ +
Use this domain for words related to intending to do something--to do something intentionally and not by accident.
+
Classer dans ce champ lexical le vocabulaire signifiant avoir l’intention de faire quelque chose, de faire quelque chose intentionnellement et non par accident.
+
+
+ + + +
3.3.1.5
+
+ +
Use this domain for words related to doing something deliberately--to intend to do something, as opposed to doing something accidentally.
+
Classer dans ce champ lexical le vocabulaire signifiant faire quelque chose délibérément, vouloir faire quelque chose par opposition à faire quelque chose accidentellement.
+
+
+ + + +
3.3.1.6
+
+ +
Use this domain for words related to being determined to do something--deciding to do something and not letting anything stop you.
+
Classer dans ce champ lexical le vocabulaire signifiant être déterminé à faire quelque chose, être décidé à faire quelque chose sans se laisser arrêter, coûte que coûte.
+
+
+ + + +
3.3.1.7
+
+ +
Use this domain for words related to being stubborn--to be unwilling to change a decision; to be unwilling to do something someone wants you to do; or to do what you want to do, even though other people do not want you to do it.
+
Classer dans ce champ lexical le vocabulaire signifiant être entêté, ne pas vouloir changer de décision ou refuser de faire ce que quelqu’un demande ; ou faire ce que l’on veut faire, même si d’autres personnes ne veulent pas qu’on le fasse.
+
+
+ + + +
3.3.1.8
+
+ +
Use this domain for words related to lusting for something--to want something bad or forbidden.
+
Classer dans ce champ lexical le vocabulaire signifiant convoiter quelque chose, vouloir quelque chose de mal ou d’interdit.
+
+
+ + + +
3.3.2
+
+ +
Use this domain for words related to requesting something--to ask for something, or ask someone to do something.
+
Classer dans ce champ lexical le vocabulaire qui signifie demander quelque chose ou demander à quelqu’un de faire quelque chose.
+
+
+ + + +
3.3.2.1
+
+ +
Use this domain for words related to agreeing to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant accepter de faire quelque chose.
+
+
+ + + +
3.3.2.2
+
+ +
Use this domain for words related to refusing to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant refuser de faire quelque chose.
+
+
+ + + +
3.3.2.3
+
+ +
Use this domain for words related to interceding for someone--to say something to someone because you want them to do something good for someone else.
+
Classer dans ce champ lexical le vocabulaire signifiant dire à quelqu’un ce qu’on veut qu’il fasse pour le bien d’une troisième personne.
+
+
+ + + +
3.3.2.4
+
+ +
Use this domain for words related to being willing to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être disposé à faire quelque chose.
+
+
+ + + +
3.3.3
+
+ +
Use this domain for words related to influencing someone--to do something because you want someone to change his thinking.
+
Classer dans ce champ lexical le vocabulaire signifiant influencer quelqu’un, à faire quelque chose pour le faire changer d’avis.
+
+
+ + + +
3.3.3.1
+
+ +
Use this domain for words referring to suggesting something--saying that something might be good.
+
Classer dans ce champ lexical le vocabulaire qui signifie dire qu’une chose pourrait être bonne.
+
+
+ + + +
3.3.3.2
+
+ +
Use this domain for words referring to giving someone advice or counsel, for instance recommending a wise course of action.
+
Classer dans ce champ lexical le vocabulaire qui signifie donner à quelqu’un un conseil, par exemple lui conseiller une ligne de conduite sage.
+
+
+ + + +
3.3.3.3
+
+ +
Use this domain for words related to persuading someone--to try to get someone to do something or to change his thinking.
+
Classer dans ce champ lexical le vocabulaire signifiant persuader quelqu’un, essayer d’obtenir de lui qu’il fasse quelque chose ou change d’avis.
+
+
+ + + +
3.3.3.4
+
+ +
Use this domain for words related to insisting--to say strongly or repeatedly that someone must do something, because the other person does not want to do it.
+
Classer dans ce champ lexical le vocabulaire signifiant insister, dire fortement ou de manière répétée une chose parce que l’autre ne veut pas la faire.
+
+
+ + + +
3.3.3.5
+
+ +
Use this domain for words related to compelling someone to do something--to cause or force someone to do something that they do not want to do.
+
Classer dans ce champ lexical le vocabulaire signifiant contraindre quelqu’un à faire quelque chose, le forcer à faire ce qu’il ne veut pas.
+
+
+ + + +
3.3.3.6
+
+ +
Use this domain for words related to controlling someone--to force someone to do what you want them to do by ordering them to do it, or by doing something so that they have no choice. Also use this domain for words related to controlling something, for instance to control a machine, so that it does what you want it to do.
+
Classer dans ce champ lexical le vocabulaire signifiant commander quelqu’un, le forcer à faire ce qu’on veut, sans lui laisser le choix. Classer également dans ce champ lexical le vocabulaire lié au fait de commander quelque chose, par exemple une machine, de sorte qu’on lui fait faire ce qu’on veut.
+
+
+ + + +
3.3.3.7
+
+ +
Use this domain for words related to warning someone--saying something to someone so that he will not do something bad.
+
Classer dans ce champ lexical le vocabulaire signifiant avertir quelqu’un, lui dire quelque chose afin qu’il ne fasse pas quelque chose de mal.
+
+
+ + + +
3.3.3.8
+
+ +
Use this domain for words related to threatening someone--to say that you will do something bad to someone if they don't do what you want them to do.
+
Classer dans ce champ lexical le vocabulaire signifiant menacer quelqu’un, dire qu’on lui fera quelque chose de mal s’il ne fait pas ce qu’on veut.
+
+
+ + + +
3.3.4
+
+ +
Use this domain for words related to asking permission to do something. This domain is part of a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission. I obey you or disobey you.
+
Classer dans ce champ lexical le vocabulaire utilisé pour demander la permission de faire quelque chose. Ce champ lexical fait partie du scénario : quelqu’un a autorité sur moi. Je veux faire quelque chose. Je lui en demande la permission. Il me l’accorde ou me la refuse. Je lui obéis ou lui désobéis.
+
+
+ + + +
3.3.4.1
+
+ +
Use this domain for words related to giving someone permission to do something. This domain is about a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission.
+
Classer dans ce champ lexical le vocabulaire employé pour donner à quelqu’un la permission de faire quelque chose. Ce champ lexical fait partie du scénario : quelqu’un a autorité sur moi. Je veux faire quelque chose. Je lui en demande la permission. Il me l’accorde ou me la refuse.
+
+
+ + + +
3.3.4.2
+
+ +
Use this domain for words related to refusing to permit someone to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant refuser la permission de faire quelque chose.
+
+
+ + + +
3.3.4.3
+
+ +
Use this domain for words related to being exempt from a law or obligation.
+
Classer dans ce champ lexical le vocabulaire signifiant être exempté d’une obligation ou dispensé d’obéir à une loi.
+
+
+ + + +
3.3.4.4
+
+ +
Use this domain for words related to preventing someone from doing something.
+
Classer dans ce champ lexical le vocabulaire signifiant empêcher de faire quelque chose.
+
+
+ + + +
3.3.4.5
+
+ +
Use this domain for words related to freedom--when you can do the things that you want to do.
+
Classer dans ce champ lexical le vocabulaire signifiant être libre de faire ce qu’on veut.
+
+
+ + + +
3.3.5
+
+ +
Use this domain for words related to offering to do something for someone.
+
Classer dans ce champ lexical le vocabulaire signifiant proposer de faire quelque chose pour quelqu’un.
+
+
+ + + +
3.3.5.1
+
+ +
Use this domain for words referring to accepting something such as an offer, invitation, or request.
+
Classer dans ce champ lexical le vocabulaire qui signifie accepter quelque chose, par exemple une offre, une invitation ou une demande.
+
+
+ + + +
3.3.5.2
+
+ +
Use this domain for words referring to rejecting something such as an offer, invitation, or request.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de refuser une offre.
+
+
+ + + +
3.4
+
+ +
Use this domain for general words related to feelings and emotions.
+
Classer dans ce champ lexical le vocabulaire ayant trait aux sentiments et aux émotions.
+
+
+ + + +
3.4.1
+
+ +
Use this domain for general words related to positive emotions.
+
Classer dans ce champ lexical le vocabulaire qui est associé à des émotions positives.
+
+
+ + + +
3.4.1.1
+
+ +
Use this domain for words related to liking something or someone, or liking to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant aimer quelque chose ou quelqu’un.
+
+
+ + + +
3.4.1.1.1
+
+ +
Use this domain for words related to enjoying doing something.
+
Classer dans ce champ lexical le vocabulaire signifiant aimer faire quelque chose.
+
+
+ + + +
3.4.1.1.2
+
+ +
Use this domain for words related to feeling good about yourself.
+
Classer dans ce champ lexical le vocabulaire signifiant avoir une bonne estime de soi.
+
+
+ + + +
3.4.1.1.3
+
+ +
Use this domain for words related to preferring one thing over another--to like something more than something else.
+
Classer dans ce champ lexical le vocabulaire qui signifie préférer une chose à une autre, aimer une chose plus qu’une autre.
+
+
+ + + +
3.4.1.1.4
+
+ +
Use this domain for words describing something that many people like.
+
Classer dans ce champ lexical le vocabulaire qui sert à qualifier ce qu’on aime beaucoup en général.
+
+
+ + + +
3.4.1.1.5
+
+ +
Use this domain for words describing something that many people like.
+
Classer dans ce champ lexical le vocabulaire qui qualifie quelque chose qu’on aime beaucoup.
+
+
+ + + +
3.4.1.1.6
+
+ +
Use this domain for words related to feeling contented.
+
Classer dans ce champ lexical le vocabulaire ayant trait au fait de se sentir satisfait.
+
+
+ + + +
3.4.1.1.7
+
+ +
Use this domain for words related to feeling happy for someone--to feel good because something good happened to someone. The opposite is jealousy and envy.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d’être heureux pour quelqu’un, d’être heureux parce que quelque chose de bien est arrivé à quelqu’un ; le contraire de l’envie et de la jalousie.
+
+
+ + + +
3.4.1.1.8
+
+ +
Use this domain for words related to feeling pleased with someone--to feel good because someone did something good.
+
Classer dans ce champ lexical le vocabulaire signifiant être content de quelqu’un, être satisfait de ce que quelqu’un a fait.
+
+
+ + + +
3.4.1.2
+
+ +
Use this domain for words related to feeling happy--to feel good when something good happens (such as receiving a gift, hearing good news, or watching something good happening).
+
Classer dans ce champ lexical le vocabulaire ayant trait au fait de se sentir heureux, de se sentir bien parce qu’il est arrivé quelque chose d’agréable (par exemple recevoir un cadeau, apprendre une bonne nouvelle, assister à un événement heureux).
+
+
+ + + +
3.4.1.2.1
+
+ +
Use this domain for words related to feeling relaxed--to feel good when you are not working and nothing bad is happening.
+
Classer dans ce champ lexical le vocabulaire signifiant être détendu, se sentir bien quand on ne travaille pas ou que rien de désagréable n’arrive.
+
+
+ + + +
3.4.1.2.2
+
+ +
Use this domain for words related to feeling calm.
+
Classer dans ce champ lexical le vocabulaire ayant trait au fait d’être calme.
+
+
+ + + +
3.4.1.3
+
+ +
Use this domain for words related to feeling surprised--to feel something when something unexpected, unusual, or amazing happens.
+
Classer dans ce champ lexical le vocabulaire ayant trait au sentiment de surprise qu’on éprouve lorsque quelque chose d’inattendu, d’inhabituel ou d’étonnant arrive.
+
+
+ + + +
3.4.1.4
+
+ +
Use this domain for words related to feeling interested.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être intéressé.
+
+
+ + + +
3.4.1.4.1
+
+ +
Use this domain for words related to feeling excited--to feel good when something good has happening or is about to happen.
+
Classer dans ce champ lexical le vocabulaire se rapportant au sentiment d’excitation, au fait de se sentir bien quand quelque chose de bien se produit ou va se produire, ou au fait d’être dans l’attente d’un évènement redouté.
+
+
+ + + +
3.4.1.4.2
+
+ +
Use this domain for words related to feeling enthusiastic--to feel very good because you want to do something or you want something to happen.
+
Classer dans ce champ lexical le vocabulaire qui désigne l’enthousiasme, le fait d’être très content parce qu’on veut faire quelque chose ou que l’on veut que quelque chose se passe.
+
+
+ + + +
3.4.1.4.3
+
+ +
Use this domain for words related to feeling obsessed--to be very interested in something for a long time.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’obsession, le fait qu’une idée, une image, un comportement, s’impose de manière répétée, sans pouvoir s’en débarrasser.
+
+
+ + + +
3.4.1.4.4
+
+ +
Use this domain for words related to attracting someone's attention to something. In a typical situation, a person sees something with an interesting quality. The person moves closer, pays close attention to the thing, and possibly does something to it.
+
Classer dans ce champ lexical le vocabulaire qui signifie attirer l’attention de quelqu’un sur quelque chose. Le cas classique est celui où quelqu’un voit quelque chose d’intéressant. Il s’en approche, y fait davantage attention et éventuellement s’en occupe de plus près.
+
+
+ + + +
3.4.1.4.5
+
+ +
Use this domain for words related to feeling indifferent about something.
+
Classer dans ce champ lexical le vocabulaire exprimant l’indifférence envers quelque chose.
+
+
+ + + +
3.4.1.4.6
+
+ +
Use this domain for words related to feeling uninterested or bored--when someone is not interested in something.
+
Classer dans ce champ lexical le vocabulaire qui signifie ne pas être intéressé ou s’ennuyer.
+
+
+ + + +
3.4.1.5
+
+ +
Use this domain for words related to feeling confident--to feel sure that you can do something.
+
Classer dans ce champ lexical le vocabulaire associé à la confiance en soi, le fait d’être sûr de soi quand on fait quelque chose.
+
+
+ + + +
3.4.2
+
+ +
Use this domain for general words related to feeling bad.
+
Classer dans ce champ lexical les termes génériques associés à des sentiments négatifs.
+
+
+ + + +
3.4.2.1
+
+ +
Use this domain for words related to feeling sad--to feel bad because something bad has happened (such as losing something, hearing bad news, or watching something bad happening).
+
Classer dans ce champ lexical le vocabulaire associé à la tristesse, au fait de se sentir triste parce qu’un malheur est arrivé (perte, mauvaise nouvelle, catastrophe).
+
+
+ + + +
3.4.2.1.1
+
+ +
Use this domain for words related to not liking someone or something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas aimer quelqu’un ou quelque chose.
+
+
+ + + +
3.4.2.1.2
+
+ +
Use this domain for words related to hating someone or something--to dislike someone or something very much.
+
Classer dans ce champ lexical le vocabulaire associé à la haine envers quelqu’un ou quelque chose, au fait de détester énormément quelqu’un ou quelque chose.
+
+
+ + + +
3.4.2.1.3
+
+ +
Use this domain for words related to feeling disgusted--to dislike something so much that you feel sick.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment de dégoût, au fait de détester quelque chose au point d’en être malade.
+
+
+ + + +
3.4.2.1.4
+
+ +
Use this domain for words related to feeling disappointed--to feel bad because something did not happen that you wanted to happen or someone did not do something that you wanted them to do.
+
Classer dans ce champ lexical le vocabulaire associé à la déception, au fait d’être malheureux parce que ce qu’on attendait ne s’est pas produit ou parce que quelqu’un n’a pas fait ce qu’on aurait aimé.
+
+
+ + + +
3.4.2.1.5
+
+ +
Use this domain for words related to feeling lonely--to feel bad because you are alone and not with people you love.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment d’être seul, le fait de souffrir parce qu’on est seul au lieu d’être avec ceux qu’on aime.
+
+
+ + + +
3.4.2.1.6
+
+ +
Use this domain for word related to feeling upset--to feel very bad because someone has done something bad to you or because something bad has happened to you, so that your thinking and behavior is affected.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment d’être bouleversé, le fait de souffrir parce que quelqu’un s’est mal comporté envers nous ou parce qu’on a eu une épreuve qui affecte nos façons de penser et d’agir.
+
+
+ + + +
3.4.2.1.7
+
+ +
Use this domain for words related to feeling shocked--feeling both surprised and angry when something very bad suddenly happens or when someone does something very bad.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment d’être choqué, de se sentir à la fois surpris et en colère parce qu’un grand malheur s’est brutalement produit ou quand quelqu’un fait quelque chose de très mal.
+
+
+ + + +
3.4.2.1.8
+
+ +
Use this domain for words related to feeling jealous--to feel bad when someone does well, has something good, receives something good, or something good happens to them, because you want what they have. Also use this domain for words for when a husband (or wife) is jealous because he thinks his wife loves someone else.
+
Classer dans ce champ lexical le vocabulaire associé à la jalousie, le fait d’être malheureux parce que quelqu’un fait bien, a quelque chose de bien ou parce qu’il arrive à cette personne quelque chose de bien ; d’être malheureux parce qu’on veut ce que l’autre a. Classer également dans ce champ lexical le vocabulaire associé à la jalousie entre époux.
+
+
+ + + +
3.4.2.1.9
+
+ +
Use this domain for words related to feeling discontent.
+
Classer dans ce champ lexical le vocabulaire associé au mécontentement.
+
+
+ + + +
3.4.2.2
+
+ +
Use this domain for words related to feeling sorry--to feel bad about something bad that you did.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être navré, d’être malheureux à cause de ce qu’on a fait.
+
+
+ + + +
3.4.2.2.1
+
+ +
Use this domain for words related to feeling ashamed--to feel bad because people think you did something bad.
+
Classer dans ce champ lexical le vocabulaire associé à la honte, au fait d’être malheureux parce que les gens pensent qu’on a fait quelque chose de mal.
+
+
+ + + +
3.4.2.2.2
+
+ +
Use this domain for words related to feeling embarrassed--to feel bad in front of other people because you did or said something that makes you seem stupid.
+
Classer dans ce champ lexical le vocabulaire se rapportant à la gêne, au fait de se sentir mal à l’aise devant les autres parce qu’on a fait ou dit quelque chose qui donne l’impression d’être bête.
+
+
+ + + +
3.4.2.3
+
+ +
Use this domain for words related to feeling angry--to feel bad when someone does something wrong and to want to do something bad to them.
+
Classer dans ce champ lexical le vocabulaire se rapportant à la colère.
+
+
+ + + +
3.4.2.3.1
+
+ +
Use this domain for words related to feeling annoyed--to feel a little angry because someone keeps doing something you don't like.
+
Classer dans ce champ lexical le vocabulaire signifiant être irrité, être un peu en colère parce que quelqu’un n’arrête pas de faire quelque chose qu’on n’aime pas.
+
+
+ + + +
3.4.2.4
+
+ +
Use this domain for words related to fear--to feel bad because you think something bad might happen to you.
+
Classer dans ce champ lexical le vocabulaire en rapport avec la crainte, le fait de se sentir mal parce que la personne pense que quelque chose de mal risque de lui arriver.
+
+
+ + + +
3.4.2.4.1
+
+ +
Use this domain for words related to feeling worried--to feel bad because you think something bad might happen.
+
Classer dans ce champ lexical le vocabulaire en rapport avec l’inquiétude, le fait de se sentir mal parce qu’on pense que quelque chose de mal pourrait arriver.
+
+
+ + + +
3.4.2.4.2
+
+ +
Use this domain for words related to feeling nervous--to be worried and frightened that something bad may happen, so that you are unable to relax.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’être nerveux, d’être inquiet que quelque chose puisse mal se passer et empêche de se détendre.
+
+
+ + + +
3.4.2.4.3
+
+ +
Use this domain for words related to feeling shy--to feel bad (afraid) when you are with people because you think they might think something bad about you if you say or do something (for instance, being afraid to talk, feeling inadequate to do what is required in a social situation, or not feeling as good as other people).
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’être intimidé, d’avoir peur de dire ou de faire, devant d’autres, quelque chose qui attirera leurs critiques (par exemple se sentir moins bon que les autres, avoir peur de parler ou de risquer de ne pas faire ce qu’il convient en société).
+
+
+ + + +
3.4.2.5
+
+ +
Use this domain for words related to feeling confused--to be worried and uncertain about what something means or what to do.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’avoir l’esprit confus, d’être inquiet et de ne pas vraiment savoir ce que quelque chose signifie ou ce qu’il faut faire.
+
+
+ + + +
3.5
+
+ +
Use this domain for general words referring to communication of all kinds.
+
Classer dans ce champ lexical les termes génériques en lien avec tout type de communication.
+
+
+ + + +
3.5.1
+
+ +
Use this domain for words related to saying something.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dire quelque chose.
+
+
+ + + +
3.5.1.1
+
+ +
Use this domain for words referring to a person's voice and the way it sounds--the kind of sound a person makes when they speak or sing.
+
Classer dans ce champ lexical le vocabulaire qui qualifie la voix d’une personne : le genre de son qu’une personne produit quand elle parle ou chante.
+
+
+ + + +
3.5.1.1.1
+
+ +
Use this domain for words related to shouting--to speak loudly.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de crier, de parler fort.
+
+
+ + + +
3.5.1.1.2
+
+ +
Use this domain for words that describe a person speaking quietly.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un qui parle doucement.
+
+
+ + + +
3.5.1.1.3
+
+ +
Use this domain for words related to speaking a lot.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler beaucoup.
+
+
+ + + +
3.5.1.1.4
+
+ +
Use this domain for words related to speaking a little, either because you do not like to talk, or you think you should not talk.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler peu, soit parce qu’on n’aime pas parler, soit parce qu’on estime ne pas devoir parler.
+
+
+ + + +
3.5.1.1.5
+
+ +
Use this domain for words related to being silent--to say nothing for some time.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de rester silencieux, de ne rien dire pendant un certain temps.
+
+
+ + + +
3.5.1.1.6
+
+ +
Use this domain for words describing the way a person talks in a particular social situation.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte à la manière dont quelqu’un parle dans un contexte social donné.
+
+
+ + + +
3.5.1.1.7
+
+ +
Use this domain for words related to speaking well.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de bien parler.
+
+
+ + + +
3.5.1.1.8
+
+ +
Use this domain for words related to speaking poorly.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler mal.
+
+
+ + + +
3.5.1.2
+
+ +
Use this domain for words related to talking about a subject.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler d’un sujet.
+
+
+ + + +
3.5.1.2.1
+
+ +
Use this domain for words related to announcing something--communicating something to many people.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’annoncer quelque chose, de communiquer quelque chose à beaucoup de monde.
+
+
+ + + +
3.5.1.2.2
+
+ +
Use this domain for words related to describing something--to say some things about something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de décrire, de donner des détails.
+
+
+ + + +
3.5.1.2.3
+
+ +
Use this domain for words related to explaining something--to help someone to understand something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’expliquer quelque chose : aider quelqu’un à comprendre quelque chose.
+
+
+ + + +
3.5.1.2.4
+
+ +
Use this domain for words related to mentioning something--to talk about something but without saying much about it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mentionner quelque chose : de parler de quelque chose mais sans s’étendre.
+
+
+ + + +
3.5.1.2.5
+
+ +
Use this domain for words related to introducing a new subject--to start talking or writing about something new for the first time.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’introduire un nouveau sujet, de se mettre à parler ou écrire quelque chose de nouveau pour la première fois.
+
+
+ + + +
3.5.1.2.6
+
+ +
Use this domain for words related to repeating something--saying something a second time.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de répéter quelque chose, de dire une deuxième fois la même chose.
+
+
+ + + +
3.5.1.2.7
+
+ +
Use this domain for words referring to summarizing what you have said or what someone else has said.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de résumer ce qu’on a dit ou ce que quelqu’un d’autre a dit.
+
+
+ + + +
3.5.1.2.8
+
+ +
Use this domain for words related to emphasizing something--to say something in a way that other people know that you think this thing is important.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de mettre l’accent sur quelque chose, de dire quelque chose de manière à ce que les gens sachent qu’on trouve cela important.
+
+
+ + + +
3.5.1.2.9
+
+ +
Use this domain for words that express the idea that something (said, written, thought, or made) depicts or is about a subject, or that something is logically related to some topic. Also use this domain for words that mark the topic or subject of what is being thought about, talked about, or written about. Verbs of thinking, knowing, or speaking (including other types of expression) can take a 'topic' role. We can think of a 'topic' as the main idea. Use this domain also for the important thing in a picture.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’idée que quelque chose (de dit, d’écrit, de pensé ou de fait) illustre un sujet ou s’y rapporte, ou bien que quelque chose est logiquement associé à un sujet. Classez aussi dans ce champ lexical le vocabulaire qui caractérise le thème ou le sujet par ce qu’on en pense, dit ou écrit. Les verbes asssociés au fait de penser, de connaître ou de parler (y compris d’autres types d’expression) peuvent prendre une position de 'sujet'. Nous pouvons penser à un 'sujet' comme étant l’idée principale. Classer aussi dans ce champ lexical ce qui est important dans un tableau (une peinture, une représentation).
+
+
+ + + +
3.5.1.3
+
+ +
Use this domain for words that indicate if something is true, if it agrees with reality, or if it is not true.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’indiquer si une chose est vraie, si elle correspond à la réalité ou si elle n’est pas vraie.
+
+
+ + + +
3.5.1.3.1
+
+ +
Use this domain for words related to telling the truth.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dire la vérité.
+
+
+ + + +
3.5.1.3.2
+
+ +
Use this domain for words related to lying--to say something that is not true.
+
Classer dans ce champ lexical le vocabulaire en lien avec le mensonge, le fait de dire quelque chose qui n’est pas vrai.
+
+
+ + + +
3.5.1.3.3
+
+ +
Use this domain for words related to contradicting someone--to say that something someone has said is not true.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de contredire ce quelqu’un a dit.
+
+
+ + + +
3.5.1.3.4
+
+ +
Use this domain for words related to exposing falsehood--to do something to show that someone has told a lie.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dévoiler un mensonge, de faire quelque chose pour montrer que quelqu’un a dit un mensonge.
+
+
+ + + +
3.5.1.3.5
+
+ +
Use this domain for words that indicate if something is real.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est réel.
+
+
+ + + +
3.5.1.3.6
+
+ +
Use this domain for words referring to exaggerating--reporting information but saying something untrue that makes the information seem bigger or more important than it really is.
+
Classer dans ce champ lexical le vocabulaire exprimant l’exagération, qui rend l’information plus importante qu’elle ne l’est réellement.
+
+
+ + + +
3.5.1.4
+
+ +
Use this domain for words referring to carrying on a conversation with other people.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler avec d’autres.
+
+
+ + + +
3.5.1.4.1
+
+ +
Use this domain for words related to calling someone--to say something loud because you want someone who is far away to listen to you.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’appeler quelqu’un, de dire quelque chose fort parce qu’on veut que quelqu’un, qui est loin, entende.
+
+
+ + + +
3.5.1.4.2
+
+ +
Use this domain for words related to contacting someone--to communicate with someone who is far away from you using some communication device such as a telephone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de contacter quelqu’un : de communiquer avec quelqu’un qui est éloigné en utilisant un moyen de communication tel que le téléphone.
+
+
+ + + +
3.5.1.4.3
+
+ +
Use this domain for words related to greeting someone.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de saluer quelqu’un.
+
+
+ + + +
3.5.1.4.4
+
+ +
Use this domain for words related to saying farewell.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dire au revoir.
+
+
+ + + +
3.5.1.4.5
+
+ +
Use this domain for words related to speaking in unison--to say something at the same time as someone else.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler à l’unisson, de dire quelque chose en même temps que quelqu’un d’autre.
+
+
+ + + +
3.5.1.5
+
+ +
Use this domain for words related to asking a question.
+
Classer dans ce champ lexical le vocabulaire associé au fait de poser une question.
+
+
+ + + +
3.5.1.5.1
+
+ +
Use this domain for words related to answering a question.
+
Classer dans ce champ lexical le vocabulaire associé au fait de répondre à une question.
+
+
+ + + +
3.5.1.5.2
+
+ +
Use this domain for words that refer to discovering and revealing unknown information.
+
Classer dans ce champ lexical le vocabulaire associé au fait de découvrir et dévoiler une information jusque là inconnue.
+
+
+ + + +
3.5.1.5.3
+
+ +
Use this domain for words related to hiding your thoughts.
+
Classer dans ce champ lexical le vocabulaire associé au fait de dissimuler ses pensées.
+
+
+ + + +
3.5.1.6
+
+ +
Use this domain for words referring to debating--for two or more people to discuss some issue and try to persuade the other person to accept one's view.
+
Classer dans ce champ lexical le vocabulaire associé au fait de discuter : deux personnes ou plus, abordant une question et chacune s’efforçant de convaincre l'autre (ou les autres) de son point de vue.
+
+
+ + + +
3.5.1.6.1
+
+ +
Use this domain for words referring to demonstrating something--to do something that shows the truth of a statement, or shows how to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de démontrer quelque chose : faire quelque chose pour prouver que quelque chose est vrai.
+
+
+ + + +
3.5.1.6.2
+
+ +
Use this domain for words related to quarreling--to fight with words.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se disputer : se battre avec des paroles.
+
+
+ + + +
3.5.1.7
+
+ +
Use this domain for words related to praising someone or something--to say something good about someone, or to say that someone did something good.
+
Classer dans ce champ lexical le vocabulaire associé au fait de louer quelqu’un ou quelque chose : dire du bien de quelqu’un ou dire qu'il a fait quelque chose de bien.
+
+
+ + + +
3.5.1.7.1
+
+ +
Use this domain for words related to thanking someone--to tell someone that you feel good about something they did for you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remercier quelqu’un : dire à quelqu’un qu'on apprécie ce qu’il a fait pour nous.
+
+
+ + + +
3.5.1.7.2
+
+ +
Use this domain for words referring to flattering someone--saying something nice to someone but not meaning it.
+
Classer dans ce champ lexical le vocabulaire associé à la flatterie : faire à quelqu’un des compliments sans les penser.
+
+
+ + + +
3.5.1.7.3
+
+ +
Use this domain for words related to boasting--to say something good about yourself, especially to make it seem that you are better than you really are.
+
Classer dans ce champ lexical le vocabulaire associé à la vantardise : dire du bien de soi, surtout pour se faire passer pour meilleur qu’on n’est en réalité.
+
+
+ + + +
3.5.1.8
+
+ +
Use this domain for words related to criticizing someone or something--to say that something is bad, especially something that someone did.
+
Classer dans ce champ lexical le vocabulaire associé au fait de critiquer quelqu’un ou quelque chose : dire que quelque chose (notamment quelque chose que quelqu'un a fait) est mauvais.
+
+
+ + + +
3.5.1.8.1
+
+ +
Use this domain for words related to blaming someone for something--to say that someone did something, and because of this something bad happened.
+
Classer dans ce champ lexical le vocabulaire associé au fait de blâmer : accuser d’avoir mal agi.
+
+
+ + + +
3.5.1.8.2
+
+ +
Use this domain for words related to insulting someone--to say that someone is bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’insulter quelqu’un.
+
+
+ + + +
3.5.1.8.3
+
+ +
Use this domain for words referring to mocking someone--doing or saying something to make people laugh at someone because you don't like them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se moquer de quelqu’un, de dire ou faire quelque chose afin qu’on se moque de quelqu’un que l’on n’aime pas.
+
+
+ + + +
3.5.1.8.4
+
+ +
Use this domain for words related to gossip--to say something bad about a person who is not with you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire des commérages, dire des choses négatives sur un absent.
+
+
+ + + +
3.5.1.8.5
+
+ +
Use this domain for words related to complaining--to say that you don't like something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se plaindre, de dire qu’on n’aime pas quelque chose.
+
+
+ + + +
3.5.1.9
+
+ +
Use this domain for words related to promising to do something--to say that you will do something in the future.
+
Classer dans ce champ lexical le vocabulaire associé au fait de promettre de faire quelque chose, de dire qu’on fera quelque chose.
+
+
+ + + +
3.5.2
+
+ +
Use this domain for words related to making a speech--to talk for a long time to many people.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de faire un discours, de parler longtemps devant une foule.
+
+
+ + + +
3.5.2.1
+
+ +
Use this domain for words related to reporting something--to say that something has happened and to tell about it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rapporter un fait, un événement.
+
+
+ + + +
3.5.2.2
+
+ +
Use this domain for words referring to something someone says, which relays information from someone else, or about something someone has done.
+
Classer dans ce champ lexical le vocabulaire associé au récit d’une information ou d’un événement relaté par quelqu’un d’autre.
+
+
+ + + +
3.5.2.3
+
+ +
Use this domain for words referring to figurative speech--saying something that is not meant to be understood literally (according to the normal meaning of each word), or saying something that compares one thing to another.
+
Classer dans ce champ lexical le vocabulaire faisant référence au langage figuré (qu’on ne doit pas prendre au sens littéral, selon le sens habituel de chaque mot) ou à ce qu’on dit pour comparer une chose à une autre.
+
+
+ + + +
3.5.2.4
+
+ +
Use this domain for words referring to admitting something--saying that you have done wrong, or that your beliefs were wrong
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait d’admettre quelque chose, de reconnaître qu’on a mal agi ou qu’on s’est trompé.
+
+
+ + + +
3.5.3
+
+ +
Use this domain for words referring to a language.
+
Classer dans ce champ lexical le vocabulaire faisant référence au langage.
+
+
+ + + +
3.5.3.1
+
+ +
Use this domain for words that refer to words and groups of words.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des mots ou à des groupes de mots.
+
+
+ + + +
3.5.3.2
+
+ +
Use this domain for words referring to information--something someone says about something.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux informations, à ce qu’on dit.
+
+
+ + + +
3.5.4
+
+ +
Use this domain for words referring to a story.
+
Classer dans ce champ lexical le vocabulaire faisant référence à une histoire.
+
+
+ + + +
3.5.4.1
+
+ +
Use this domain for words referring to a fable or myth--a story that people tell that is not true.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux fables ou mythes, aux histoires qu’on raconte et qui ne sont pas vraies.
+
+
+ + + +
3.5.4.2
+
+ +
Use this domain for words referring to a saying or proverb--a short thing that people say to teach something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux dictons et aux proverbes, ces formules brèves qu’on dit pour enseigner quelque chose.
+
+
+ + + +
3.5.4.3
+
+ +
Use this domain for words referring to a riddle--something someone says that is hard to understand.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux devinettes, quelque chose que quelqu’un dit et qui est difficile à comprendre.
+
+
+ + + +
3.5.4.4
+
+ +
Use this domain for words related to poetry.
+
Classer dans ce champ lexical le vocabulaire associé à la poésie.
+
+
+ + + +
3.5.4.5
+
+ +
Use this domain for words related to history.
+
Classer dans ce champ lexical le vocabulaire associé à l’histoire.
+
+
+ + + +
3.5.4.6
+
+ +
Use this domain for words referring to verbal tradition--something that your ancestors told to each successive generation.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la tradition orale, à ce qui se transmet oralement de génération en génération.
+
+
+ + + +
3.5.5
+
+ +
Use this domain for words related to foolish talk--something someone says that other people think is silly or stupid.
+
Classer dans ce champ lexical le vocabulaire associé à des propos insensés, à ce que quelqu’un dit et que les autres estiment être bête ou insensé.
+
+
+ + + +
3.5.5.1
+
+ +
Use this domain for obscene words related to sex, defecation, death, damnation, and other taboo or offensive subjects. It is important to check the appropriateness of including obscene words in the dictionary. It should be the choice of the speakers of the language whether a word should be included or excluded. Obscene words included in the dictionary should be clearly marked as such. Obscenity is often used to heighten the emotion of an expression, and is often used when someone is angry. Obscenity is often associated with sex or defecation. Cursing is often associated with God, religion, or the afterlife. Insults often involve equating a person with an animal that is associated with an undesirable characteristic, questioning someone's parentage/legitimacy, questioning someone's character, or questioning someone's intelligence/sanity.
+
Classer dans ce champ lexical le vocabulaire obscène, les mots associés au sexe, à la défécation, à la mort, à la damnation ou à des sujets tabous ou choquants. Il faut impérativement vérifier s’il est pertinent d’inclure des termes obscènes dans le dictionnaire. C’est aux locuteurs de la langue de le décider. Les mots obscènes inclus doivent être clairement indiqués comme tels. On utilise souvent l’obscénité pour renforcer l’expression d’un sentiment. L’obscénité est souvent associée au sexe et à la défécation. Les jurons sont, eux, souvent liés à Dieu, à la religion et à la vie après la mort. On peut insulter quelqu’un en le comparant à un animal ayant une connotation négative, en remettant en cause la légitimité de sa naissance et de ses origines, en attaquant sa personne, son intelligence, son caractère ou sa santé mentale.
+
+
+ + + +
3.5.6
+
+ +
Use this domain for words referring to a sign or symbol--a picture or shape that has a meaning.
+
Classer dans ce champ lexical le vocabulaire désignant un signe ou un symbole, c’est-à-dire un dessin ou une forme qui a un sens.
+
+
+ + + +
3.5.6.1
+
+ +
Use this domain for words referring to gesturing--moving a part of the body to communicate a message.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux gestes, au fait de bouger une partie du corps pour exprimer quelque chose.
+
+
+ + + +
3.5.6.2
+
+ +
Use this domain for words related to pointing at something--to move a part of your body toward something so that people will look at it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de pointer quelque chose, de bouger une partie du corps en direction de quelque chose pour que les autres regardent.
+
+
+ + + +
3.5.6.3
+
+ +
Use this domain for facial expressions--ways in which people move the parts of their faces to show feeling or communicate something.
+
Classer dans ce champ lexical les expressions du visage : les façons dont on bouge les parties du visage pour manifester nos sentiments ou communiquer quelque chose.
+
+
+ + + +
3.5.6.4
+
+ +
Use this domain for words related to the expression of good feelings, including laughing--the sounds a person makes when he is enjoying himself or thinks something is funny.
+
Classer dans ce champ lexical le vocabulaire désignant la manifestation de sentiments positifs, y compris le rire, les sons que quelqu’un fait quand il s’amuse ou pense à quelque chose de drôle.
+
+
+ + + +
3.5.6.5
+
+ +
Use this domain for words related to crying--when water forms in the eyes because of sadness or pain.
+
Classer dans ce champ lexical le vocabulaire associé au fait de pleurer : des larmes se forment dans les yeux à cause de la tristesse ou de la douleur.
+
+
+ + + +
3.5.7
+
+ +
Use this domain for general words related to reading and writing.
+
Classer dans ce champ lexical les termes génériques associés à la lecture et à l’écriture.
+
+
+ + + +
3.5.7.1
+
+ +
Use this domain for words related to writing.
+
Classer dans ce champ lexical le vocabulaire associé à l’écriture.
+
+
+ + + +
3.5.7.2
+
+ +
Use this domain for words referring to written material--something that has writing on it.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux documents écrits, ce sur quoi est écrit quelque chose.
+
+
+ + + +
3.5.7.3
+
+ +
Use this domain for words related to reading.
+
Classer dans ce champ lexical le vocabulaire associé à la lecture.
+
+
+ + + +
3.5.7.4
+
+ +
Use this domain for words related to publishing books.
+
Classer dans ce champ lexical le vocabulaire associé à la publication de livres.
+
+
+ + + +
3.5.7.5
+
+ +
Use this domain for words related to a record--something written because people need to remember it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de consigner des données, de les mettre par écrit parce qu’on a besoin de s’en souvenir.
+
+
+ + + +
3.5.7.6
+
+ +
Use this domain for words related to a list of things.
+
Classer dans ce champ lexical le vocabulaire associé à une liste de choses.
+
+
+ + + +
3.5.7.7
+
+ +
Use this domain for words referring to letter--a written message that is sent to someone.
+
Classer dans ce champ lexical le vocabulaire associé à une lettre : un message écrit qu’on envoie à quelqu’un.
+
+
+ + + +
3.5.8
+
+ +
Use this domain for words referring to interpreting something someone says--to try to understand the meaning of something someone says and express it in other words.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d’interpréter ce que quelqu’un dit : essayer de comprendre le sens de ce que quelqu’un dit et de le dire avec d’autres mots.
+
+
+ + + +
3.5.8.1
+
+ +
Use this domain for words related to the meaning of something that is said.
+
Classer dans ce champ lexical le vocabulaire associé à la signification de ce que quelqu’un a dit.
+
+
+ + + +
3.5.8.2
+
+ +
Use this domain for words describing something that is meaningless--something someone says that doesn't mean anything.
+
Classer dans ce champ lexical le vocabulaire qui décrit une chose qui n’a pas de sens, une parole que quelqu’un a dite et qui ne veut rien dire.
+
+
+ + + +
3.5.8.3
+
+ +
Use this domain for words related to being unintelligible--to say something that someone cannot understand.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être inintelligible, le fait de dire quelque chose que personne ne comprend.
+
+
+ + + +
3.5.8.4
+
+ +
Use this domain for words referring to showing or indicating something--if something (such as an object, something said, or something that happens) shows something, it makes people think of something or understand something (e.g. When his face turns red, it indicates he is angry.)
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de montrer ou d’indiquer quelque chose : un objet, une parole ou un événement montre quelque chose, fait penser à quelque chose ou fait comprendre quelque chose (par exemple, quand quelqu’un devient tout rouge, cela montre qu’il est en colère).
+
+
+ + + +
3.5.9
+
+ +
Use this domain for words related to radio, television, newspapers, magazines and other forms of mass communication.
+
Classer dans ce champ lexical le vocabulaire associé à la radio, la télévision, les journaux, les magazines et autres formes de communication de masse.
+
+
+ + + +
3.5.9.1
+
+ +
Use this domain for words related to radio and television.
+
Classer dans ce champ lexical le vocabulaire associé à la radio et à la télévision.
+
+
+ + + +
3.5.9.2
+
+ +
Use this domain for words related to the telephone.
+
Classer dans ce champ lexical le vocabulaire associé au téléphone.
+
+
+ + + +
3.5.9.3
+
+ +
Use this domain for words related to newspapers and magazines.
+
Classer dans ce champ lexical le vocabulaire associé aux journaux et magazines.
+
+
+ + + +
3.5.9.4
+
+ +
Use this domain for words related to movies and the cinema.
+
Classer dans ce champ lexical le vocabulaire associé aux films et au cinéma.
+
+
+ + + +
3.5.9.5
+
+ +
Use this domain for words related to recording music.
+
Classer dans ce champ lexical le vocabulaire associé à l’enregistrement de la musique.
+
+
+ + + +
3.5.9.6
+
+ +
Use this domain for words related to communication devices.
+
Classer dans ce champ lexical le vocabulaire associé aux moyens de communication.
+
+
+ + + +
3.6
+
+ +
Use this domain for words related to teaching.
+
Classer dans ce champ lexical le vocabulaire associé à l’enseignement.
+
+
+ + + +
3.6.1
+
+ +
Use this domain for words related to showing someone how something works, or explaining something to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de montrer à quelqu’un comment quelque chose marche ou de lui expliquer quelque chose.
+
+
+ + + +
3.6.2
+
+ +
Use this domain for words related to school.
+
Classer dans ce champ lexical le vocabulaire associé à l’école.
+
+
+ + + +
3.6.3
+
+ +
Use this domain for words related to a subject that is taught or a subject that you study at school.
+
Classer dans ce champ lexical le vocabulaire associé à une matière enseignée ou une matière que vous étudiez à l’école.
+
+
+ + + +
3.6.4
+
+ +
Use this domain for words related to a class--the period of time when a subject is taught.
+
Classer dans ce champ lexical le vocabulaire associé à un cours : durée pendant laquelle on enseigne une matière.
+
+
+ + + +
3.6.5
+
+ +
Use this domain for words related to correcting a mistake.
+
Classer dans ce champ lexical le vocabulaire associé au fait de corriger des fautes de comportement ou des fautes dans un écrit (ou autre travail).
+
+
+ + + +
3.6.6
+
+ +
Use this domain for words related to science.
+
Classer dans ce champ lexical le vocabulaire associé aux sciences.
+
+
+ + + +
3.6.7
+
+ +
Use this domain for words related to a test.
+
Classer dans ce champ lexical le vocabulaire associé à une évaluation.
+
+
+ + + +
3.6.8
+
+ +
Use this domain for words related to the answer to a question in a test.
+
Classer dans ce champ lexical le vocabulaire associé à la réponse à une question, dans un devoir ou examen.
+
+
+ + + +
4
+
+ +
Use this domain for very general words having to do with how people behave in relationship to other people.
+
Classer dans ce champ lexical les termes très généraux ayant trait aux relations qu’entretiennent les gens entre eux.
+
+
+ + + +
4.1
+
+ +
Use this domain for words related to relationships between people and groups of people.
+
Classer dans ce champ lexical le vocabulaire associé aux relations entre personnes ou groupes de personnes.
+
+
+ + + +
4.1.1
+
+ +
Use this domain for words related to friendship.
+
Classer dans ce champ lexical le vocabulaire associé à l’amitié.
+
+
+ + + +
4.1.1.1
+
+ +
Use this domain for words referring to a girlfriend or boyfriend.
+
Classer dans ce champ lexical le vocabulaire qui désigne un petit ami ou une petite amie.
+
+
+ + + +
4.1.2
+
+ +
Use this domain for words referring to different types of people.
+
Classer dans ce champ lexical les mots qui désignent les différents types de personnes.
+
+
+ + + +
4.1.2.1
+
+ +
Use this domain for words related to a relationship between people who work together.
+
Classer dans ce champ lexical le vocabulaire associé aux relations entre des personnes qui travaillent ensemble.
+
+
+ + + +
4.1.3
+
+ +
Use this domain for words referring to knowing someone.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de faire des connaissances.
+
+
+ + + +
4.1.3.1
+
+ +
Use this domain for words related to meeting someone for the first time.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rencontrer quelqu’un pour la première fois.
+
+
+ + + +
4.1.4
+
+ +
Use this domain for words referring to a neighbor--someone who lives nearby.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un voisin : quelqu’un qui vit près de chez soi.
+
+
+ + + +
4.1.4.1
+
+ +
Use this domain for words related to social class.
+
Classer dans ce champ lexical le vocabulaire associé aux classes sociales.
+
+
+ + + +
4.1.5
+
+ +
Use this domain for words related to unity--when a group of people agree with each other and are not fighting.
+
Classer dans ce champ lexical le vocabulaire associé à l’unité, au fait que toutes les personnes d’un groupe soient d’accord entre elles et ne se disputent pas.
+
+
+ + + +
4.1.6
+
+ +
Use this domain for words related to disunity--when a group of people do not agree with each other and are fighting.
+
Classer dans ce champ lexical le vocabulaire associé à la désunion :des personnes ne sont pas d’accord entre elles et se disputent.
+
+
+ + + +
4.1.6.1
+
+ +
Use this domain for words related to being antisocial--when someone does not want to talk to other people or be friends with them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être inamical : ne pas vouloir parler aux autres ou en être ami.
+
+
+ + + +
4.1.6.2
+
+ +
Use this domain for words related to setting yourself apart from other people and not relating to them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se mettre à l’écart des autres et de ne pas avoir de relations avec eux.
+
+
+ + + +
4.1.6.3
+
+ +
Use this domain for words related to being alone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rester seul.
+
+
+ + + +
4.1.6.4
+
+ +
Use this domain for words describing an independent person--someone who does things without other people's help.
+
Classer dans ce champ lexical le vocabulaire associé à la description de quelqu’un d’indépendant : qui fait les choses sans l’aide des autres.
+
+
+ + + +
4.1.6.5
+
+ +
Use this domain for words describing something that is private--something that only concerns you, and for words describing something that is public--something that concerns many people.
+
Classer dans ce champ lexical le vocabulaire qui qualifie ce qui relève du domaine privé : ce qui ne concerne que soi-même ; également le vocabulaire qui sert à qualifier ce qui relève du domaine public : ce qui concerne beaucoup de monde.
+
+
+ + + +
4.1.7
+
+ +
Use this domain for words related to beginning a relationship.
+
Classer dans ce champ lexical le vocabulaire associé au fait de débuter une relation.
+
+
+ + + +
4.1.7.1
+
+ +
Use this domain for words related to ending a relationship.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre fin à une relation.
+
+
+ + + +
4.1.8
+
+ +
Use this domain for words related to showing affection.
+
Classer dans ce champ lexical le vocabulaire associé au fait de montrer de l’affection.
+
+
+ + + +
4.1.9
+
+ +
Use this domain for general words for family relationships, not for specific terms.
+
Classer dans ce champ lexical les termes génériques associés aux relations familiales, et non les termes spécifiques.
+
+
+ + + +
4.1.9.1
+
+ +
Use this domain for words referring to being related by birth--when one of your ancestors and one of someone else's ancestors are the same person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être apparenté par la naissance, d’avoir un ancêtre commun avec quelqu’un d’autre.
+
+
+ + + +
4.1.9.1.1
+
+ +
Use this domain for words referring to grandparents and ancestors.
+
Classer dans ce champ lexical le vocabulaire associé aux grands-parents et aux ancêtres.
+
+
+ + + +
4.1.9.1.2
+
+ +
Use this domain for words related to parents.
+
Classer dans ce champ lexical le vocabulaire associé aux parents.
+
+
+ + + +
4.1.9.1.3
+
+ +
Use this domain for words related to siblings.
+
Classer dans ce champ lexical le vocabulaire associé aux frères et sœurs.
+
+
+ + + +
4.1.9.1.4
+
+ +
Use this domain for words referring to your children.
+
Classer dans ce champ lexical le vocabulaire associé à vos enfants.
+
+
+ + + +
4.1.9.1.5
+
+ +
Use this domain for words referring to your grandchildren.
+
Classer dans ce champ lexical le vocabulaire qui désigne les petits-enfants.
+
+
+ + + +
4.1.9.1.6
+
+ +
Use this domain for words related to your uncles and aunts.
+
Classer dans ce champ lexical le vocabulaire associé aux oncles et tantes.
+
+
+ + + +
4.1.9.1.7
+
+ +
Use this domain for words referring to your cousins.
+
Classer dans ce champ lexical le vocabulaire qui désigne vos cousins.
+
+
+ + + +
4.1.9.1.8
+
+ +
Use this domain for words referring to your nephews and nieces.
+
Classer dans ce champ lexical le vocabulaire qui désigne vos neveux et nièces.
+
+
+ + + +
4.1.9.1.9
+
+ +
Use this domain for words related to birth order.
+
Classer dans ce champ lexical le vocabulaire associé au rang de naissance
+
+
+ + + +
4.1.9.2
+
+ +
Use this domain for words referring to being related by marriage.
+
Classer dans ce champ lexical le vocabulaire qui désigne la parenté par alliance.
+
+
+ + + +
4.1.9.2.1
+
+ +
Use this domain for words related to your spouse.
+
Classer dans ce champ lexical le vocabulaire qui désigne son conjoint.
+
+
+ + + +
4.1.9.2.2
+
+ +
Use this domain for words referring to being related by marriage.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être apparenté par alliance.
+
+
+ + + +
4.1.9.3
+
+ +
Use this domain for words referring to widows and widowers. Some languages also have words for a parent who has lost a child, someone who has lost a brother or sister, or a general word for someone who has lost a relative.
+
Classer dans ce champ lexical le vocabulaire associé aux veufs et aux veuves. Certaines langues ont également des mots pour un père ou une mère qui a perdu un enfant, quelqu’un qui a perdu un frère ou une sœur, ou un terme générique pour quelqu’un qui a perdu un membre de sa famille.
+
+
+ + + +
4.1.9.4
+
+ +
Use this domain for words referring to orphans.
+
Classer dans ce champ lexical le vocabulaire associé aux orphelins.
+
+
+ + + +
4.1.9.5
+
+ +
Use this domain for words referring to an illegitimate child.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un enfant illégitime.
+
+
+ + + +
4.1.9.6
+
+ +
Use this domain for words related to adopting a child.
+
Classer dans ce champ lexical le vocabulaire associé à l’adoption d’un enfant.
+
+
+ + + +
4.1.9.7
+
+ +
Use this domain for words that refer to people who are not related by blood or marriage.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des gens qui ne sont apparentés ni par le sang, ni par alliance.
+
+
+ + + +
4.1.9.8
+
+ +
Use this domain for words that refer to social groups composed of related people.
+
Classer dans ce champ lexical le vocabulaire associé aux groupes sociaux composés de membres apparentés.
+
+
+ + + +
4.1.9.9
+
+ +
Use this domain for words referring to different races of people--the large groups of people in the world that are different in color and appearance.
+
Classer dans ce champ lexical le vocabulaire associé aux différentes races humaines : les grandes catégories mondiales de personnes dont la couleur de peau et le physique diffèrent.
+
+
+ + + +
4.2
+
+ +
Use this domain for general words referring to social activities.
+
Classer dans ce champ lexical le vocabulaire associé aux activités sociales.
+
+
+ + + +
4.2.1
+
+ +
Use this domain for words referring to coming together to form a group.
+
Classer dans ce champ lexical le vocabulaire associé à au fait de se rencontrer, de former un groupe.
+
+
+ + + +
4.2.1.1
+
+ +
Use this domain for words referring to inviting people to meet together--to say something to someone because you want to meet with them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’inviter des gens à se réunir, de leur dire quelque chose parce qu’on veut les rencontrer.
+
+
+ + + +
4.2.1.2
+
+ +
Use this domain for words referring to encountering someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rencontrer quelqu’un.
+
+
+ + + +
4.2.1.3
+
+ +
Use this domain for words related to meeting together.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se réunir.
+
+
+ + + +
4.2.1.4
+
+ +
Use this domain for words related to visiting someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rendre visite à quelqu’un.
+
+
+ + + +
4.2.1.4.1
+
+ +
Use this domain for words related to welcoming a visitor.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’accueillir un visiteur.
+
+
+ + + +
4.2.1.4.2
+
+ +
Use this domain for words related to showing hospitality to a visitor.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’exercer l’hospitalité envers un visiteur.
+
+
+ + + +
4.2.1.5
+
+ +
Use this domain for words referring to a meeting.
+
Classer dans ce champ lexical le vocabulaire associé à une réunion.
+
+
+ + + +
4.2.1.6
+
+ +
Use this domain for words related to participating in a group--to do things with a group.
+
Classer dans ce champ lexical le vocabulaire associé au fait de participer à un groupe : faire des choses avec un groupe.
+
+
+ + + +
4.2.1.7
+
+ +
Use this domain for words referring to a crowd or group of people.
+
Classer dans ce champ lexical le vocabulaire associé à une foule ou à un groupe de personne.
+
+
+ + + +
4.2.1.8
+
+ +
Use this domain for words referring to an organization.
+
Classer dans ce champ lexical le vocabulaire associé à une organisation.
+
+
+ + + +
4.2.1.8.1
+
+ +
Use this domain for words related to joining an organization.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se joindre à une organisation.
+
+
+ + + +
4.2.1.8.2
+
+ +
Use this domain for words related to leaving an organization.
+
Classer dans ce champ lexical le vocabulaire associé au fait de quitter une organisation.
+
+
+ + + +
4.2.1.8.3
+
+ +
Use this domain for words related to belonging to an organization.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire partie d’une organisation.
+
+
+ + + +
4.2.1.9
+
+ +
Use this domain for words referring to an organization.
+
Classer dans ce champ lexical le vocabulaire associé à une organisation.
+
+
+ + + +
4.2.2
+
+ +
Use this domain for words referring to a social event.
+
Classer dans ce champ lexical le vocabulaire associé à une rencontre sociale.
+
+
+ + + +
4.2.2.1
+
+ +
Use this domain for words referring to a ceremony.
+
Classer dans ce champ lexical le vocabulaire associé à une cérémonie.
+
+
+ + + +
4.2.2.2
+
+ +
Use this domain for words referring to a festival or show--a large social event during which some people entertain other people.
+
Classer dans ce champ lexical le vocabulaire associé à un festival ou à un spectacle, un grand rassemblement durant lequel des personnes en divertissent d’autres.
+
+
+ + + +
4.2.2.3
+
+ +
Use this domain for words related to celebrating.
+
Classer dans ce champ lexical le vocabulaire associé au fait de célébrer quelque chose.
+
+
+ + + +
4.2.3
+
+ +
Use this domain for words related to music.
+
Classer dans ce champ lexical le vocabulaire associé à la musique.
+
+
+ + + +
4.2.3.1
+
+ +
Use this domain for words related to composing music.
+
Classer dans ce champ lexical le vocabulaire associé à l’écriture de la musique.
+
+
+ + + +
4.2.3.2
+
+ +
Use this domain for words related to playing music.
+
Classer dans ce champ lexical le vocabulaire associé à jouer de la musique.
+
+
+ + + +
4.2.3.3
+
+ +
Use this domain for words related to singing.
+
Classer dans ce champ lexical le vocabulaire associé au chant.
+
+
+ + + +
4.2.3.4
+
+ +
Use this domain for words related to a musician.
+
Classer dans ce champ lexical le vocabulaire associé à un musicien.
+
+
+ + + +
4.2.3.5
+
+ +
Use this domain for words referring to musical instruments and people who play a particular instrument.
+
Classer dans ce champ lexical le vocabulaire associé à des instruments de musique et à ceux qui jouent d’un instrument particulier.
+
+
+ + + +
4.2.4
+
+ +
Use this domain for words related to dancing.
+
Classer dans ce champ lexical le vocabulaire associé à la danse.
+
+
+ + + +
4.2.5
+
+ +
Use this domain for words related to drama.
+
Classer dans ce champ lexical le vocabulaire associé au théâtre.
+
+
+ + + +
4.2.6
+
+ +
Use this domain for words related to entertainment and recreation.
+
Classer dans ce champ lexical le vocabulaire associé au divertissement et à la récréation.
+
+
+ + + +
4.2.6.1
+
+ +
Use this domain for words referring to games. Some languages do not make a distinction between "Games" and "Sports."
+
Classer dans ce champ lexical le vocabulaire associé aux jeux. Dans certaines langues, il n’y a pas de distinction entre jeu et sport.
+
+
+ + + +
4.2.6.1.1
+
+ +
Use this domain for words related to a particular game. The example words are from the card games. If you do not play card games in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.
+
Classer dans ce champ lexical le vocabulaire associé à un jeu particulier. Les mots ou expressions cités en exemple proviennent de jeux de cartes. Si dans votre culture, on ne joue pas aux cartes, vous pouvez renommer ce champ lexical et l’utiliser pour un de vos jeux. Vous ajouterez un champ lexical par jeu.
+
+
+ + + +
4.2.6.1.2
+
+ +
Use this domain for words related to a particular game. The example words are from the game of chess. If you do not play chess in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.
+
Classer dans ce champ lexical le vocabulaire associé à un jeu précis. Ici, nous avons pris comme exemple le jeu d’échec. Vous donnerez à ce champ lexical celui du nom d’un jeu auquel on joue dans votre culture et répondrez pour ce jeu à chacune des questions posées. Vous étudierez le champ lexical de chacun des principaux jeux de votre culture.
+
+
+ + + +
4.2.6.2
+
+ +
Use this domain for words related to sports.
+
Classer dans ce champ lexical le vocabulaire associé au sport.
+
+
+ + + +
4.2.6.2.1
+
+ +
Use this domain for words related to a particular sport. The example words are from the sport of football (also called soccer). If you do not play football in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.
+
Classer dans ce champ lexical le vocabulaire associé à un sport particulier. Ici on a pris pour exemple le football. Il se peut qu’on ne pratique pas ce sport dans votre culture ; il vous faudra alors énumérer le vocabulaire pour l’un des sports qu’on y pratique. Vous renommerez alors ce champ lexical et l’adapterez au sport choisi. Vous créerez des champs lexicaux pour chacun des sports de votre culture.
+
+
+ + + +
4.2.6.2.2
+
+ +
Use this domain for words related to a particular sport. The example words are from the sport of basketball. If you do not play basketball in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.
+
Classer dans ce champ lexical le vocabulaire associé au basketball. Si dans votre culture on ne le pratique pas, il faudra remplacer ce champ lexical par celui d’un sport pratiqué dans votre région.
+
+
+ + + +
4.2.6.3
+
+ +
Use this domain for words related to exercise.
+
Classer dans ce champ lexical le vocabulaire associé aux exercices physiques.
+
+
+ + + +
4.2.6.4
+
+ +
Use this domain for words related to gambling.
+
Classer dans ce champ lexical le vocabulaire associé au fait de parier.
+
+
+ + + +
4.2.7
+
+ +
Use this domain for words related to playing and fun.
+
Classer dans ce champ lexical le vocabulaire associé au fait de s’amuser.
+
+
+ + + +
4.2.8
+
+ +
Use this domain for words related to humor.
+
Classer dans ce champ lexical le vocabulaire associé à l’humour.
+
+
+ + + +
4.2.8.1
+
+ +
Use this domain for words related to being serious--not laughing or joking.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être sérieux, de ne pas rire ou plaisanter.
+
+
+ + + +
4.2.9
+
+ +
Use this domain for words related to a holiday.
+
Classer dans ce champ lexical le vocabulaire associé aux vacances.
+
+
+ + + +
4.2.9.1
+
+ +
Use this domain for words related to a holiday.
+
Classer dans ce champ lexical le vocabulaire associé aux vacances.
+
+
+ + + +
4.3
+
+ +
Use this domain for general words referring to a person's behavior.
+
Classer dans ce champ lexical le vocabulaire associé au comportement de quelqu’un.
+
+
+ + + +
4.3.1
+
+ +
Use this domain for words related to being good or moral in behavior.
+
Classer dans ce champ lexical le vocabulaire associé au fait de bien se comporter ou d’avoir un comportement moral.
+
+
+ + + +
4.3.1.1
+
+ +
Use this domain for words related to being bad or immoral in behavior, and for words describing a bad person.
+
Classer dans ce champ lexical le vocabulaire associé à un comportement mauvais ou immoral et le vocabulaire pour décrire quelqu’un de mauvais.
+
+
+ + + +
4.3.1.2
+
+ +
Use this domain for words related to meeting a standard.
+
Classer dans ce champ lexical le vocabulaire associé au fait de respecter la norme sociale.
+
+
+ + + +
4.3.1.2.1
+
+ +
Use this domain for words related to behaving below a standard.
+
Classer dans ce champ lexical le vocabulaire associé à un comportement qui ne respecte pas les normes sociales.
+
+
+ + + +
4.3.1.3
+
+ +
Use this domain for words related to acting maturely--to act like an adult rather than a child.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’agir avec maturité, d’agir comme un adulte et non comme un enfant.
+
+
+ + + +
4.3.1.3.1
+
+ +
Use this domain for words related to behaving in an immature way--for either a child or an adult to act like a child.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se comporter de manière immature, de se comporter comme un enfant qu’on soit adulte ou enfant.
+
+
+ + + +
4.3.1.3.2
+
+ +
Use this domain for words related to being sensible--to think about what you do.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être sensé, de réfléchir à ce qu’on fait.
+
+
+ + + +
4.3.1.4
+
+ +
Use this domain for words related to having a good reputation--when most people think well of someone because he does good things and doesn't do bad things.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir une bonne réputation ; une majorité de personnes ont une bonne opinion de quelqu’un car il fait de bonnes choses et non de mauvaises.
+
+
+ + + +
4.3.1.5
+
+ +
Use this domain for words related to being patient--if you are patient, you don't get angry or do anything bad even though something bad happens to you for a long time.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être patient. Lorsqu’on est patient on ne se met pas en colère, on ne fait rien de mal, même si on doit supporter longtemps une situation désagréable.
+
+
+ + + +
4.3.1.5.1
+
+ +
Use this domain for words related to being impatient--if you are impatient, you get angry or do something bad when something bad happens to you for a long time.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être impatient, de se mettre en colère ou de faire quelque chose de mal lorsqu’un évènement désagréable se produit et dure longtemps.
+
+
+ + + +
4.3.1.5.2
+
+ +
Use this domain for words related to being bad-tempered--to behave in an angry, unfriendly way.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir mauvais caractère, de se comporter de manière grincheuse, peu sympathique.
+
+
+ + + +
4.3.2
+
+ +
Use this domain for words related to admiring someone--to feel good about someone because you think that he is a good person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’admirer quelqu’un, de l’apprécier car on pense que c’est quelqu’un de bien.
+
+
+ + + +
4.3.2.1
+
+ +
Use this domain for words related to despising someone--to feel bad about someone because you think they are not as good as you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mépriser quelqu’un, de considérer qu’il est plus mauvais que soi.
+
+
+ + + +
4.3.2.2
+
+ +
Use this domain for words related to being humble--to not think that you are better than other people, or to not think that you are better than you really are, and to not talk or act as if you were better than other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être humble ; de ne pas penser que l’on est mieux que les autres ou que l’on est mieux que ce que l’on est vraiment ; de ne pas parler, ni agir comme si on était mieux que les autres.
+
+
+ + + +
4.3.2.3
+
+ +
Use this domain for words referring to being proud--to think that something or someone is very good and to feel very good about them, especially to think and feel very good about yourself--to think that you are better than others, to think that you are better than you really are, or to talk and act as if you were better than other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fier, de penser que quelqu’un ou quelque chose est très bien et d’être content de soi à cause de ces choses ou de ces personnes ; notamment de se trouver mieux que les autres, de se trouver mieux qu’on ne l’est en réalité ou de parler et d’agir comme si on était mieux que les autres.
+
+
+ + + +
4.3.2.4
+
+ +
Use this domain for words referring to showing off--to behave in a way that attracts people's attention because you want them to admire you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de frimer : se conduire d’une manière qui attire l’attention des autres parce qu’on veut être admiré.
+
+
+ + + +
4.3.3
+
+ +
Use this domain for words related to loving someone--to feel good about someone, want good things to happen to them, and want to do good things for them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aimer quelqu’un, de se sentir bien auprès de quelqu’un, de vouloir que de bonnes choses lui arrivent et de vouloir lui faire du bien.
+
+
+ + + +
4.3.3.1
+
+ +
Use this domain for words referring to hating someone--to want something bad to happen to someone, or to want to do something bad to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de détester quelqu’un : vouloir lui faire du mal ou que quelque chose de mal lui arrive.
+
+
+ + + +
4.3.3.2
+
+ +
Use this domain for words related to not caring about someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être indifférent aux autres.
+
+
+ + + +
4.3.3.3
+
+ +
Use this domain for words related to abandoning someone or something--to leave and not return to them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’abandonner quelqu’un ou quelque chose : le quitter et ne pas revenir auprès de lui.
+
+
+ + + +
4.3.4
+
+ +
Use this domain for words referring to doing good to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire du bien à quelqu’un.
+
+
+ + + +
4.3.4.1
+
+ +
Use this domain for words related to doing evil to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire du mal à quelqu’un.
+
+
+ + + +
4.3.4.2
+
+ +
Use this domain for words related to helping someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aider quelqu’un.
+
+
+ + + +
4.3.4.2.1
+
+ +
Use this domain for words related to hindering someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’empêcher quelqu’un de faire quelque chose.
+
+
+ + + +
4.3.4.3
+
+ +
Use this domain for words related to cooperating with someone to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de collaborer avec quelqu’un pour faire quelque chose.
+
+
+ + + +
4.3.4.3.1
+
+ +
Use this domain for words related to competing with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être en concurrence avec quelqu’un.
+
+
+ + + +
4.3.4.4
+
+ +
Use this domain for words describing a person who acts in an altruistic, selfless manner--to act out of concern for the welfare of others without concern for your own welfare.
+
Classer dans ce champ lexical le vocabulaire associé à la description d’une personne qui agit de manière altruiste, non égoïste ; qui agit en se souciant du bien des autres sans se préoccuper de son propre bien-être.
+
+
+ + + +
4.3.4.4.1
+
+ +
Use this domain for words related to being selfish.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être égoïste.
+
+
+ + + +
4.3.4.4.2
+
+ +
Use this domain for words related to using someone for your own purpose or gain without helping them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se servir de quelqu’un pour arriver à ses propres fins ou pour gagner sans l’aider.
+
+
+ + + +
4.3.4.5
+
+ +
Use this domain for words related to sharing with other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait de partager avec d’autres.
+
+
+ + + +
4.3.4.5.1
+
+ +
Use this domain for words referring to providing someone with what they need to live each day, such as providing for an elderly parent who can no longer earn what they need.
+
Classer dans ce champ lexical le vocabulaire associé au fait de donner à quelqu’un ce dont il a besoin pour vivre chaque jour ; par exemple, pourvoir aux besoins de ses parents âgés quand ils ne peuvent plus gagner suffisamment d’argent pour vivre.
+
+
+ + + +
4.3.4.5.2
+
+ +
Use this domain for words related to caring for someone--to do something good for someone, because they need something and cannot do it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prendre soin de quelqu’un, de faire ce qui est bon pour lui, parce qu’il a besoin de quelque chose et ne peut pas le faire.
+
+
+ + + +
4.3.4.5.3
+
+ +
Use this domain for words related to entrusting something to the care of someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de confier la garde de quelque chose à quelqu’un.
+
+
+ + + +
4.3.4.6
+
+ +
Use this domain for words referring to meddling--involving oneself in something that does not concern oneself, such as someone else's business or affairs, or a fight between other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait que quelqu’un se mêle de quelque chose qui ne le regarde pas, s’occupe de choses qui ne le concernent pas ; par exemple des affaires de quelqu’un d’autre, de la vie sentimentale des autres ou d’une dispute qui ne le concerne pas.
+
+
+ + + +
4.3.4.6.1
+
+ +
Use this domain for words referring to spoiling something that is happening, such as an event, work, relationship, or feeling, by doing something that makes it less attractive, less enjoyable, or less effective--to do something bad to something that is happening, so that people can't do what they were doing or don't enjoy it as much.
+
Utiliser ce domaine pour des mots faisant référence au fait de gâcher quelque chose qui est en train de se passer, comme un événement, un travail, une relation, un sentiment en faisant en sorte qu’il soit moins attractif, moins agréable, ou moins efficace : faire quelque chose de mal afin que ce qui se passe ne soit plus possible ou ne procure plus autant de plaisir.
+
+
+ + + +
4.3.4.7
+
+ +
Use this domain for words related to entering a place, such as a house, by force.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’entrer de force dans un lieu, par exemple une maison.
+
+
+ + + +
4.3.4.8
+
+ +
Use this domain for words related to kidnapping someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de kidnapper quelqu’un.
+
+
+ + + +
4.3.4.9
+
+ +
Use this domain for words related to being cruel.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être cruel.
+
+
+ + + +
4.3.5
+
+ +
Use this domain for words related to being honest--words describing someone who does not cheat, steal, or break the law.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être honnête : qui qualifie quelqu’un qui ne triche pas, ne vole pas ou n’enfreint pas la loi.
+
+
+ + + +
4.3.5.1
+
+ +
Use this domain for words related to being dishonest.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être malhonnête.
+
+
+ + + +
4.3.5.2
+
+ +
Use this domain for words related to being faithful--to continue to love and do good to someone so that they can always trust you.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fidèle : aimer continuellement et toujours faire du bien à quelqu’un afin qu’il puisse faire toujours confiance.
+
+
+ + + +
4.3.5.3
+
+ +
Use this domain for words related to being reliable--words describe a person who can be relied on to do what he is supposed to.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fiable, digne de confiance ; des mots qui décrivent quelqu’un sur qui on peut compter pour faire ce qu’il est censé faire.
+
+
+ + + +
4.3.5.4
+
+ +
Use this domain for words related to being unreliable.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas être digne de confiance ?
+
+
+ + + +
4.3.5.5
+
+ +
Use this domain for words related to deceiving someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tromper quelqu’un.
+
+
+ + + +
4.3.5.6
+
+ +
Use this domain for words related to being a hypocrite.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être hypocrite.
+
+
+ + + +
4.3.6
+
+ +
Use this domain for words referring to self-control--deciding not to do something that you want to do, because you think it would be bad to do it; or deciding to do something, because you know it is good.
+
Classer dans ce champ lexical le vocabulaire associé à la maîtrise de soi ; au fait de décider de ne pas faire quelque chose qu’on souhaiterait faire parce qu’on pense que c’est mal, ou de décider de faire quelque chose parce qu’on sait que c’est bien.
+
+
+ + + +
4.3.6.1
+
+ +
Use this domain for words related to a lack of self-control.
+
Classer dans ce champ lexical le vocabulaire associé au fait de manquer de maîtrise de soi.
+
+
+ + + +
4.3.6.2
+
+ +
Use this domain for words referring to being tidy in your habits, such as keeping your belongings neat and organized,.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être ordonné, de garder ses affaires propres et rangées.
+
+
+ + + +
4.3.6.3
+
+ +
Use this domain for words related to being untidy--to not keep your things tidy and orderly.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être désordonné, de ne pas laisser les choses en ordre.
+
+
+ + + +
4.3.6.4
+
+ +
Use this domain for words referring to mistakes--something bad that someone does by accident.
+
Classer dans ce champ lexical le vocabulaire associé aux erreurs, à ce qu’on fait par accident et qui n’est pas juste.
+
+
+ + + +
4.3.7
+
+ +
Use this domain for words related to social refinement.
+
Classer dans ce champ lexical le vocabulaire associé à la bonne éducation.
+
+
+ + + +
4.3.7.1
+
+ +
Use this domain for words related to being impolite.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être impoli.
+
+
+ + + +
4.3.7.2
+
+ +
Use this domain for words related to being crazy--to act stupid or strange.
+
Classer dans ce champ lexical le vocabulaire associé à la folie, au fait d’agir de manière idiote ou bizarre.
+
+
+ + + +
4.3.8
+
+ +
Use this domain for words related to changing your behavior either for the better or for the worse.
+
Classer dans ce champ lexical le vocabulaire associé au fait de changer de comportement, que ce soit en mieux ou en pire.
+
+
+ + + +
4.3.8.1
+
+ +
Use this domain for words related to conforming to the behavior of others--to try to behave the same way as other people, or to try to behave the way other people want you to act.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se conformer au comportement des autres: essayer de se comporter comme les autres ou de faire ce qu’ils attendent.
+
+
+ + + +
4.3.9
+
+ +
Use this domain for general words referring to culture--the way a group of people (such as a tribe) behaves that is different from other groups.
+
Classer dans ce champ lexical les termes génériques associés à la culture : la manière dont un groupe de personnes (une tribu par exemple) se comporte et qui est différente de celle d’autres groupes.
+
+
+ + + +
4.3.9.1
+
+ +
Use this domain for words referring to customs--a particular practice of a cultural group.
+
Classer dans ce champ lexical le vocabulaire associé aux coutumes, aux pratiques propres à un groupe culturel.
+
+
+ + + +
4.3.9.2
+
+ +
Use this domain for words referring to a habit--a pattern of behavior of a person; something a person does frequently or regularly.
+
Classer dans ce champ lexical le vocabulaire associé à l’habitude : au comportement habituel de quelqu’un, à quelque chose que quelqu’un fait souvent ou régulièrement.
+
+
+ + + +
4.4
+
+ +
Use this domain for general words referring to prosperity and trouble
+
Classer dans ce champ lexical les termes génériques faisant référence à la prospérité ou à l’adversité.
+
+
+ + + +
4.4.1
+
+ +
Use this domain for words related to prosperity--when good things are happening.
+
Classer dans ce champ lexical le vocabulaire associé à la prospérité : les moments où des événements agréables se produisent.
+
+
+ + + +
4.4.2
+
+ +
Use this domain for words referring to bad things that happen in life.
+
Classer dans ce champ lexical le vocabulaire en relation avec les événements désagréables qui arrivent dans la vie.
+
+
+ + + +
4.4.2.1
+
+ +
Use this domain for words related to problems.
+
Classer dans ce champ lexical le vocabulaire associé aux problèmes.
+
+
+ + + +
4.4.2.2
+
+ +
Use this domain for words referring to danger--things and events that threaten to inflict damage, pain, or death.
+
Classer dans ce champ lexical le vocabulaire faisant référence au danger : choses et événements qui menacent de causer du dommage, de la douleur, ou la mort.
+
+
+ + + +
4.4.2.3
+
+ +
Use this domain for words related to accidents--something bad that happens without anyone wanting it to happen or doing anything to cause it to happen.
+
Classer dans ce champ lexical le vocabulaire associé aux accidents : événements désagréables qui surviennent de manière involontaire.
+
+
+ + + +
4.4.2.4
+
+ +
Use this domain for words related to a disaster.
+
Classer dans ce champ lexical le vocabulaire associé à une catastrophe.
+
+
+ + + +
4.4.2.5
+
+ +
Use this domain for words referring to a person being separate or alone.
+
Classer dans ce champ lexical le vocabulaire faisant référence à une personne séparée ou seule.
+
+
+ + + +
4.4.2.6
+
+ +
Use this domain for words related to suffering--to feel very bad because of something very bad that has happened to you.
+
Classer dans ce champ lexical le vocabulaire associé à la souffrance : se sentir très mal à la suite d’un événement très désagréable.
+
+
+ + + +
4.4.3
+
+ +
Use this domain for words related to responding to trouble.
+
Classer dans ce champ lexical le vocabulaire signifiant surmonter l’adversité.
+
+
+ + + +
4.4.3.1
+
+ +
Use this domain for words describing someone who is brave--not afraid to do something dangerous.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un de courageux, qui n’a pas peur de faire quelque chose de dangereux.
+
+
+ + + +
4.4.3.2
+
+ +
Use this domain for words related to feeling cowardly--to be afraid to do something because you think something bad might happen to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se comporter en lâche : avoir peur de faire quelque chose par appréhension des conséquences néfastes.
+
+
+ + + +
4.4.3.3
+
+ +
Use this domain for words related to avoiding something bad, such as trouble or someone you don't want to meet.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’éviter les ennuis, comme un malheur ou quelqu’un qu’on ne veut pas rencontrer.
+
+
+ + + +
4.4.3.4
+
+ +
Use this domain for words related to being cautious.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être prudent.
+
+
+ + + +
4.4.3.5
+
+ +
Use this domain for words related to solving a problem.
+
Classer dans ce champ lexical le vocabulaire associé à la résolution d’un problème.
+
+
+ + + +
4.4.3.6
+
+ +
Use this domain for words related to enduring a problem.
+
Classer dans ce champ lexical le vocabulaire associé au fait de devoir endurer un problème.
+
+
+ + + +
4.4.3.7
+
+ +
Use this domain for words referring to surviving--to live through a time of danger.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de survivre : continuer à vivre malgré le danger.
+
+
+ + + +
4.4.4
+
+ +
Use this domain for words related to responding to someone in trouble.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aider quelqu’un qui est dans l’adversité.
+
+
+ + + +
4.4.4.1
+
+ +
Use this domain for words related to having mercy on someone who has done something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir de la miséricorde pour un coupable.
+
+
+ + + +
4.4.4.2
+
+ +
Use this domain for words related to showing sympathy and support to someone in trouble.
+
Classer dans ce champ lexical le vocabulaire signifiant montrer de la sympathie et soutenir quelqu’un dans l’adversité.
+
+
+ + + +
4.4.4.3
+
+ +
Use this domain for words related to being gentle.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être bon.
+
+
+ + + +
4.4.4.4
+
+ +
Use this domain for words related to saving someone or something from trouble (something bad is happening) or danger (something bad will happen).
+
Classer dans ce champ lexical le vocabulaire associé à l'action de tirer quelqu'un d'un mauvais pas (présent) ou de le protéger d'un danger (futur).
+
+
+ + + +
4.4.4.5
+
+ +
Use this domain for words related to protecting someone from danger or being hurt.
+
Classer dans ce champ lexical le vocabulaire associé au fait de protéger quelqu'un d'un danger ou d’une blessure.
+
+
+ + + +
4.4.4.6
+
+ +
Use this domain for words related to freeing someone from bondage.
+
Classer dans ce champ lexical le vocabulaire associé à l'action de libérer quelqu'un de liens.
+
+
+ + + +
4.4.4.7
+
+ +
Use this domain for words related to relief.
+
Classer dans ce champ lexical le vocabulaire associé au secours.
+
+
+ + + +
4.4.4.8
+
+ +
Use this domain for words referring to risk--exposing oneself or something to danger.
+
Classer dans ce champ lexical le vocabulaire associé au risque ; se mettre soi-même ou mettre quelque chose en danger.
+
+
+ + + +
4.4.5
+
+ +
Use this domain for words related to chance--when something happens that no one intended.
+
Classer dans ce champ lexical le vocabulaire associé à la chance : quelque chose arrive sans que ce soit voulu.
+
+
+ + + +
4.4.5.1
+
+ +
Use this domain for words related to being lucky.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir de la chance.
+
+
+ + + +
4.4.5.2
+
+ +
Use this domain for words related to being unlucky.
+
Classer dans ce champ lexical le vocabulaire associé à la malchance.
+
+
+ + + +
4.5
+
+ +
Use this domain for words related to authority.
+
Classer dans ce champ lexical le vocabulaire associé à l'autorité.
+
+
+ + + +
4.5.1
+
+ +
Use this domain for words related to a person in authority.
+
Classer dans ce champ lexical le vocabulaire associé à une personne en position d'autorité.
+
+
+ + + +
4.5.2
+
+ +
Use this domain for words related to having authority.
+
Classer dans ce champ lexical le vocabulaire signifiant être en position d'autorité.
+
+
+ + + +
4.5.3
+
+ +
Use this domain for words related to exercising authority.
+
Classer dans ce champ lexical le vocabulaire associé à l'exercice de l'autorité.
+
+
+ + + +
4.5.3.1
+
+ +
Use this domain for words referring to one person leading or controlling other people because they have authority over them.
+
Classer dans ce champ lexical le vocabulaire associé à une personne qui mène ou dirige d'autres personnes parce qu'elle a autorité sur elles.
+
+
+ + + +
4.5.3.2
+
+ +
Use this domain for words related to commanding someone to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de commander à quelqu'un de faire quelque chose.
+
+
+ + + +
4.5.3.3
+
+ +
Use this domain for words related to disciplining someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de discipliner quelqu'un.
+
+
+ + + +
4.5.3.4
+
+ +
Use this domain for words related to appointing someone to a position of authority, or delegating authority to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de nommer quelqu'un à un poste d'autorité ou de déléguer l'autorité à quelqu'un.
+
+
+ + + +
4.5.4
+
+ +
Use this domain for words related to submitting to authority.
+
Classer dans ce champ lexical le vocabulaire associé à la soumission à l'autorité.
+
+
+ + + +
4.5.4.1
+
+ +
Use this domain for words related to obeying someone.
+
Classer dans ce champ lexical le vocabulaire associé à l'obéissance.
+
+
+ + + +
4.5.4.2
+
+ +
Use this domain for words related to disobeying someone.
+
Classer dans ce champ lexical le vocabulaire associé à la désobéissance.
+
+
+ + + +
4.5.4.3
+
+ +
Use this domain for words related to serving someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de servir quelqu'un.
+
+
+ + + +
4.5.4.4
+
+ +
Use this domain for words referring to a slave--a person owned by another and obligated to work without wages.
+
Classer dans ce champ lexical les termes désignant un esclave : quelqu’un qui appartient à quelqu’un d’autre et qui est obligé de travailler sans salaire.
+
+
+ + + +
4.5.4.5
+
+ +
Use this domain for words related to being a disciple of someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être le disciple de quelqu'un.
+
+
+ + + +
4.5.4.6
+
+ +
Use this domain for words related to rebelling against authority.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se rebeller contre l'autorité.
+
+
+ + + +
4.5.4.7
+
+ +
Use this domain for words related to being independent.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être indépendant.
+
+
+ + + +
4.5.5
+
+ +
Use this domain for words related to honoring someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’honorer quelqu’un.
+
+
+ + + +
4.5.5.1
+
+ +
Use this domain for words related to a title of honor.
+
Classer dans ce champ lexical le vocabulaire associé à un titre honorifique.
+
+
+ + + +
4.5.5.2
+
+ +
Use this domain for words related to lacking respect.
+
Classer dans ce champ lexical le vocabulaire associé au manque de respect.
+
+
+ + + +
4.5.6
+
+ +
Use this domain for words related to a person's social status.
+
Classer dans ce champ lexical le vocabulaire associé à la position sociale de quelqu’un.
+
+
+ + + +
4.5.6.1
+
+ +
Use this domain for words related to high social status.
+
Classer dans ce champ lexical le vocabulaire associé à une position sociale supérieure.
+
+
+ + + +
4.5.6.2
+
+ +
Use this domain for words related to low social status.
+
Classer dans ce champ lexical le vocabulaire associé à une position sociale inférieure.
+
+
+ + + +
4.6
+
+ +
Use this domain for words related to government.
+
Classer dans ce champ lexical le vocabulaire associé au gouvernement.
+
+
+ + + +
4.6.1
+
+ +
Use this domain for words related to the ruler of a country.
+
Classer dans ce champ lexical le vocabulaire associé au dirigeant d’un pays.
+
+
+ + + +
4.6.1.1
+
+ +
Use this domain for words related to the king's family.
+
Classer dans ce champ lexical le vocabulaire associé à la famille royale.
+
+
+ + + +
4.6.1.2
+
+ +
Use this domain for words related to a government official.
+
Classer dans ce champ lexical le vocabulaire associé aux représentants de l’État.
+
+
+ + + +
4.6.2
+
+ +
Use this domain for words related to a citizen of a country.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être citoyen d’un pays.
+
+
+ + + +
4.6.2.1
+
+ +
Use this domain for words related to a foreigner--a person who visits or lives in a country but is not a citizen.
+
Classer dans ce champ lexical le vocabulaire associé à un étranger, à une personne qui visite ou vit dans un pays, mais n’en est pas citoyen.
+
+
+ + + +
4.6.3
+
+ +
Use this domain for words related to a government organization.
+
Classer dans ce champ lexical le vocabulaire associé aux corps d’État et aux organisations gouvernementales.
+
+
+ + + +
4.6.3.1
+
+ +
Use this domain for words related to a governing body--an organization within the government.
+
Classer dans ce champ lexical le vocabulaire associé aux instances dirigeantes, organisations au sein du gouvernement.
+
+
+ + + +
4.6.4
+
+ +
Use this domain for words related to ruling.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de gouverner.
+
+
+ + + +
4.6.5
+
+ +
Use this domain for words related to a person subjugating someone to their authority.
+
Classer dans ce champ lexical le vocabulaire associé à une personne soumettant quelqu’un à son autorité.
+
+
+ + + +
4.6.6
+
+ +
Use this domain for words related to government functions--the things a government does.
+
Classer dans ce champ lexical le vocabulaire associé aux fonctions d’un gouvernement : ce que fait un gouvernement.
+
+
+ + + +
4.6.6.1
+
+ +
Use this domain for words related to the police.
+
Classer dans ce champ lexical le vocabulaire associé à la police.
+
+
+ + + +
4.6.6.1.1
+
+ +
Use this domain for words related to arresting a criminal.
+
Classer dans ce champ lexical le vocabulaire qui signifie arrêter un suspect.
+
+
+ + + +
4.6.6.1.2
+
+ +
Use this domain for words related to informal justice--punishing someone when you are not in a position of authority, as when a mob catches and kills a criminal.
+
Classer dans ce champ lexical le vocabulaire associé à la justice populaire : punir quelqu’un alors qu’on n’en a pas le droit, par exemple lorsqu’ une foule attrape un criminel et le tue.
+
+
+ + + +
4.6.6.2
+
+ +
Use this domain for words related to diplomacy between nations.
+
Classer dans ce champ lexical le vocabulaire associé à la diplomatie entre les pays.
+
+
+ + + +
4.6.6.3
+
+ +
Use this domain for words related to representing another person.
+
Classer dans ce champ lexical le vocabulaire associé au fait de représenter quelqu’un d’autre.
+
+
+ + + +
4.6.6.4
+
+ +
Use this domain for words related to an election.
+
Classer dans ce champ lexical le vocabulaire associé aux élections.
+
+
+ + + +
4.6.6.5
+
+ +
Use this domain for words related to politics--the activities of politicians and political parties.
+
Classer dans ce champ lexical le vocabulaire associé à la politique : activités des politiciens et des partis politiques.
+
+
+ + + +
4.6.7
+
+ +
Use this domain for words referring to a region--a part of a country, or a part of the earth.
+
Classer dans ce champ lexical le vocabulaire qui désigne une région, une partie d’un pays ou de la Terre.
+
+
+ + + +
4.6.7.1
+
+ +
Use this domain for words related to a country.
+
Classer dans ce champ lexical le vocabulaire associé à un pays.
+
+
+ + + +
4.6.7.2
+
+ +
Use this domain for words related to a city.
+
Classer dans ce champ lexical le vocabulaire associé à une localité.
+
+
+ + + +
4.6.7.3
+
+ +
Use this domain for words related to the countryside--the area away from a city
+
Classer dans ce champ lexical le vocabulaire associé à la campagne, à une région loin d’une ville.
+
+
+ + + +
4.6.7.4
+
+ +
Use this domain for words related to a community.
+
Classer dans ce champ lexical le vocabulaire associé à une communauté.
+
+
+ + + +
4.7
+
+ +
Use this domain for words related to the law.
+
Classer dans ce champ lexical le vocabulaire associé à la loi.
+
+
+ + + +
4.7.1
+
+ +
Use this domain for words referring to a specific law or set of laws.
+
Classer dans ce champ lexical le vocabulaire associé à une loi ou un ensemble de lois.
+
+
+ + + +
4.7.2
+
+ +
Use this domain for words related to passing a law.
+
Classer dans ce champ lexical le vocabulaire associé au vote d’une loi.
+
+
+ + + +
4.7.3
+
+ +
Use this domain for words related to breaking the law.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’enfreindre la loi.
+
+
+ + + +
4.7.4
+
+ +
Use this domain for words related to a court of law.
+
Classer dans ce champ lexical le vocabulaire associé au tribunal.
+
+
+ + + +
4.7.4.1
+
+ +
Use this domain for words related to legal personnel.
+
Classer dans ce champ lexical le vocabulaire associé au personnel judiciaire.
+
+
+ + + +
4.7.5
+
+ +
Use this domain for words related to the legal process.
+
Classer dans ce champ lexical le vocabulaire associé à une procédure judiciaire.
+
+
+ + + +
4.7.5.1
+
+ +
Use this domain for words referring to investigating a crime, accident, or criminal--to try to learn something about something bad that has happened because you want to know who did it, or to try to learn something about someone because you think they did something bad.
+
Classer dans ce champ lexical le vocabulaire associé à l’enquête : sur un crime, un accident, un criminel ; ou pour essayer d’obtenir des informations sur une infraction commise et des renseignements sur quelqu’un susceptible d’avoir perpétré un acte répréhensible.
+
+
+ + + +
4.7.5.2
+
+ +
Use this domain for words related to suspecting someone--to think that someone might have done something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait de soupçonner quelqu’un : penser que quelqu’un pourrait avoir commis un délit.
+
+
+ + + +
4.7.5.3
+
+ +
Use this domain for words related to accusing someone of doing something bad.
+
Classer dans ce champ lexical le vocabulaire qui signifie accuser quelqu’un de faire quelque chose de mal.
+
+
+ + + +
4.7.5.4
+
+ +
Use this domain for words related to defending someone who has been accused of breaking a law.
+
Classer dans ce champ lexical le vocabulaire associé à la défense de quelqu’un qui a été accusé d’enfreindre une loi.
+
+
+ + + +
4.7.5.5
+
+ +
Use this domain for words related to testifying in a court of law.
+
Classer dans ce champ lexical le vocabulaire associé au fait de témoigner devant un tribunal.
+
+
+ + + +
4.7.5.6
+
+ +
Use this domain for words related to dropping legal charges against someone.
+
Classer dans ce champ lexical le vocabulaire qui signifie retirer un chef d’inculpation.
+
+
+ + + +
4.7.5.7
+
+ +
Use this domain for words related to taking an oath.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prêter serment.
+
+
+ + + +
4.7.5.8
+
+ +
Use this domain for words referring to vindicating someone--to prove that someone is innocent of an accusation made against them.
+
Classer dans ce champ lexical le vocabulaire qui signifie innocenter quelqu’un, prouver qu’il était accusé à tort.
+
+
+ + + +
4.7.6
+
+ +
Use this domain for words related to judging someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de juger quelqu’un.
+
+
+ + + +
4.7.6.1
+
+ +
Use this domain for words related to acquitting a person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’acquitter quelqu’un.
+
+
+ + + +
4.7.6.2
+
+ +
Use this domain for words related to condemning someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de condamner quelqu’un.
+
+
+ + + +
4.7.6.3
+
+ +
Use this domain for words related to something being someone's fault.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui est de la faute de quelqu’un.
+
+
+ + + +
4.7.7
+
+ +
Use this domain for words related to punishing someone.
+
Classer dans ce champ lexical le vocabulaire associé à la punition de quelqu’un.
+
+
+ + + +
4.7.7.1
+
+ +
Use this domain for words related to rewarding someone.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de récompenser quelqu’un.
+
+
+ + + +
4.7.7.2
+
+ +
Use this domain for words referring to a fine--a payment (usually of money) made to a victim or the government for a crime committed against them.
+
Classer dans ce champ lexical le vocabulaire associé au versement d’une amende : un paiement (en général en argent) à une victime ou à l’État.
+
+
+ + + +
4.7.7.3
+
+ +
Use this domain for words related to imprisoning someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’emprisonner quelqu’un.
+
+
+ + + +
4.7.7.4
+
+ +
Use this domain for words related to executing someone for a crime.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’exécuter quelqu’un pour un crime.
+
+
+ + + +
4.7.7.5
+
+ +
Use this domain for words referring to ostracizing someone--excluding someone from society as punishment for some wrong.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de bannir quelqu’un, de l’exclure d’une société pour le punir d’un méfait.
+
+
+ + + +
4.7.7.6
+
+ +
Use this domain for words related to pardoning someone who has been found guilty of a crime.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de pardonner à quelqu’un qui est coupable d’un crime.
+
+
+ + + +
4.7.7.7
+
+ +
Use this domain for words referring to atoning for a past sin--doing something to make up for something bad you did, or giving something to pay for something bad you did.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’expier un péché passé : faire quelque chose pour réparer un tort, se racheter d’une mauvaise action.
+
+
+ + + +
4.7.8
+
+ +
Use this domain for words related to a legal contract.
+
Classer dans ce champ lexical le vocabulaire associé à un contrat ?
+
+
+ + + +
4.7.8.1
+
+ +
Use this domain for words related to a covenant between two people or groups of people.
+
Classer dans ce champ lexical le vocabulaire associé à une alliance entre deux personnes ou groupes de personnes.
+
+
+ + + +
4.7.8.2
+
+ +
Use this domain for words related to breaking a contract.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de rompre un contrat.
+
+
+ + + +
4.7.9
+
+ +
Use this domain for words related to justice.
+
Classer dans ce champ lexical le vocabulaire associé à la justice.
+
+
+ + + +
4.7.9.1
+
+ +
Use this domain for words related to being impartial.
+
Classer dans ce champ lexical le vocabulaire associé à l’impartialité.
+
+
+ + + +
4.7.9.2
+
+ +
Use this domain for words related to being unfair.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être injuste.
+
+
+ + + +
4.7.9.3
+
+ +
Use this domain for words related to deserving something--if you do something, either good or bad, something can happen to you as a result of what you did. For instance you can receive a reward for doing good, or a punishment for doing wrong. If what happened to you is like what you did, people can think it is right that this thing happened to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mériter quelque chose : lorsqu’on agit, bien ou mal, il en résulte quelque chose. Par exemple, si on fait le bien, on reçoit une récompense ; si on fait le mal, on reçoit une punition. Si ce qui arrive est de la même nature que ce qu’on a fait, les autres pensent que ce qui arrive est juste.
+
+
+ + + +
4.7.9.4
+
+ +
Use this domain for words related to being unfair to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être injuste envers quelqu’un.
+
+
+ + + +
4.7.9.5
+
+ +
Use this domain for words related to acting harshly.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’agir durement.
+
+
+ + + +
4.7.9.6
+
+ +
Use this domain for words related to oppressing someone or a particular group of people--when a person uses his power or authority to harm others who are innocent.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’opprimer quelqu’un ou un groupe de personnes : quelqu’un utilise la force ou son autorité pour faire du mal à des innocents.
+
+
+ + + +
4.8
+
+ +
Use this domain for general words referring to conflict between people, including quarreling, fighting, and war. The words in this domain should be very general, rather than referring to specific kinds of conflict.
+
Classer dans ce champ lexical le vocabulaire générique associé à un conflit entre plusieurs personnes, y compris querelle, combat et guerre. Les mots de ce champ lexical doivent être très génériques plutôt qu’être relatifs à des genres particuliers de conflits.
+
+
+ + + +
4.8.1
+
+ +
The words in this domain describe a situation in which people disagree about something so strongly that they might start fighting. But these words imply that they have not started fighting yet.
+
Les mots de ce champ lexical décrivent une situation dans laquelle des personnes sont si profondément en désaccord qu’elles sont sur le point de se battre. Mais ces mots indiquent qu’elles n’ont pas encore commencé à se battre.
+
+
+ + + +
4.8.1.1
+
+ +
Use this domain for words referring to opposing something that you think is wrong.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être opposé à quelque chose qu’on estime mauvais.
+
+
+ + + +
4.8.2
+
+ +
Use this domain for words referring to fighting someone. The words in this domain describe a situation in which two people or groups of people fight each other over something or in order to reach some goal. A fight can use words, various kinds of weapons, or other actions. For fights that only use words use the domain +'Quarrel'.
+
Classer dans ce champ lexical le vocabulaire associé au fait de combattre quelqu’un. Les mots de ce champ lexical décrivent une situation dans laquelle deux personnes ou groupes de personnes se combattent pour obtenir quelque chose ou pour atteindre un but. Dans un combat on emploie des mots ou diverses sortes d’armes ou bien l’on agit. Si on utilise seulement des mots, on les classera dans le champ « querelle ».
+
+
+ + + +
4.8.2.1
+
+ +
Use this domain for words referring to fighting for something good.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se battre pour une bonne cause.
+
+
+ + + +
4.8.2.2
+
+ +
Use this domain for words referring to fighting against something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se battre contre quelque chose de mal.
+
+
+ + + +
4.8.2.3
+
+ +
Use this domain for words referring to attacking someone--to begin fighting someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attaquer quelqu’un : se mettre à se battre contre lui.
+
+
+ + + +
4.8.2.3.1
+
+ +
Use this domain for words related to ambushing someone--to attacking someone without warning.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tendre une embuscade à quelqu’un : l’attaquer sans le prévenir.
+
+
+ + + +
4.8.2.4
+
+ +
Use this domain for words related to defending someone from attack.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se défendre ou défendre quelqu’un lors d’une attaque.
+
+
+ + + +
4.8.2.5
+
+ +
Use this domain for words related to revenge--to do something bad to someone because they did something bad to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se venger de quelqu’un dont on a été victime : rendre le mal pour le mal.
+
+
+ + + +
4.8.2.6
+
+ +
Use this domain for words related to a riot--when lots of people are fighting and breaking the law.
+
Classer dans ce champ lexical le vocabulaire associé à une émeute : de nombreuses personnes se battent et passent outre la loi.
+
+
+ + + +
4.8.2.7
+
+ +
Use this domain for words related to betraying someone.
+
Classer dans ce domaine le vocabulaire en rapport avec le fait de trahir quelqu’un.
+
+
+ + + +
4.8.2.8
+
+ +
Use this domain for words related to being violent--a word describing someone who is likely to attack and injure or kill people.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être violent : un mot qui décrit quelqu’un qui est susceptible d’attaquer, blesser ou tuer des personnes.
+
+
+ + + +
4.8.2.9
+
+ +
Use this domain for words related to an enemy--someone you are fighting against.
+
Classer dans ce champ lexical le vocabulaire associé à un ennemi : quelqu’un qu’on combat.
+
+
+ + + +
4.8.3
+
+ +
Use this domain for words related to war--fighting between countries.
+
Classer dans ce champ lexical le vocabulaire associé à la guerre : bataille entre deux pays.
+
+
+ + + +
4.8.3.1
+
+ +
Use this domain for words related to defeating someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de vaincre quelqu’un.
+
+
+ + + +
4.8.3.2
+
+ +
Use this domain for words related to winning a victory.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remporter une victoire.
+
+
+ + + +
4.8.3.3
+
+ +
Use this domain for words related to losing a fight.
+
Classer dans ce champ lexical le vocabulaire associé au fait de perdre une bataille.
+
+
+ + + +
4.8.3.4
+
+ +
Use this domain for words related to surrendering to an enemy.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se rendre à l’ennemi.
+
+
+ + + +
4.8.3.5
+
+ +
Use this domain for words related to a prisoner of war.
+
Classer dans ce champ lexical le vocabulaire associé aux prisonniers de guerre.
+
+
+ + + +
4.8.3.6
+
+ +
Use this domain for words related to military organizations.
+
Classer dans ce champ lexical le vocabulaire associé à une organisation militaire.
+
+
+ + + +
4.8.3.6.1
+
+ +
Use this domain for words related to the army.
+
Classer dans ce champ lexical les mots relatifs à l’armée.
+
+
+ + + +
4.8.3.6.2
+
+ +
Use this domain for words related to the navy.
+
Classer dans ce champ lexical les mots relatifs à la marine.
+
+
+ + + +
4.8.3.6.3
+
+ +
Use this domain for words related to the air force.
+
Classer dans ce champ lexical les mots relatifs à l’aviation.
+
+
+ + + +
4.8.3.6.4
+
+ +
Use this domain for words related to a soldier.
+
Classer dans ce champ lexical le vocabulaire associé au soldat.
+
+
+ + + +
4.8.3.6.5
+
+ +
Use this domain for words related to a spy.
+
Classer dans ce champ lexical le vocabulaire associé à un espion.
+
+
+ + + +
4.8.3.6.6
+
+ +
Use this domain for words related to a fort.
+
Classer dans ce champ lexical le vocabulaire associé à un fort.
+
+
+ + + +
4.8.3.7
+
+ +
Use this domain for words related to a weapon and using a weapon.
+
Classer dans ce champ lexical le vocabulaire associé à une arme et à son usage.
+
+
+ + + +
4.8.3.8
+
+ +
Use this domain for words related to plundering--stealing something from an enemy during a war.
+
Classer dans ce champ lexical le vocabulaire associé au pillage : s’emparer de quelque chose appartenant à l’ennemi en temps de guerre.
+
+
+ + + +
4.8.4
+
+ +
Use this domain for words related to peace--when people or countries are not fighting.
+
Classer dans ce champ lexical le vocabulaire associé à la paix : période où des personnes ou bien des pays ne sont pas en conflit.
+
+
+ + + +
4.8.4.1
+
+ +
Use this domain for words related to rebuking someone--to tell someone that he has done something wrong.
+
Classer dans ce champ lexical le vocabulaire associé au fait de réprimander quelqu’un : lui dire que ce qu’il a fait est mal.
+
+
+ + + +
4.8.4.2
+
+ +
Use this domain for words related to making an appeal.
+
Classer dans ce champ lexical le vocabulaire associé au fait de lancer un appel.
+
+
+ + + +
4.8.4.3
+
+ +
Use this domain for words related to appeasing someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’apaiser quelqu’un.
+
+
+ + + +
4.8.4.4
+
+ +
Use this domain for words related to negotiating with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de négocier avec quelqu’un.
+
+
+ + + +
4.8.4.5
+
+ +
Use this domain for words related to renouncing a claim.
+
Classer dans ce champ lexical le vocabulaire associé au fait de renoncer à une revendication.
+
+
+ + + +
4.8.4.6
+
+ +
Use this domain for words related to repenting.
+
Classer dans ce champ lexical le vocabulaire associé à la repentance, au regret.
+
+
+ + + +
4.8.4.6.1
+
+ +
Use this domain for words related to asking for forgiveness.
+
Classer dans ce champ lexical le vocabulaire associé au fait de demander pardon.
+
+
+ + + +
4.8.4.7
+
+ +
Use this domain for words related to forgiving someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de pardonner à quelqu’un.
+
+
+ + + +
4.8.4.8
+
+ +
Use this domain for words related to making peace--to try to prevent or end a war.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire la paix : essayer de prévenir la guerre ou y mettre fin.
+
+
+ + + +
4.8.4.8.1
+
+ +
Use this domain for words related to stopping fighting.
+
Classer dans ce champ lexical le vocabulaire associé au fait de cesser les hostilités.
+
+
+ + + +
4.8.4.9
+
+ +
Use this domain for words related to reconciling with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se réconcilier avec quelqu’un.
+
+
+ + + +
4.9
+
+ +
Use this domain for general words referring to religion and the supernatural.
+
Classer dans ce champ lexical le vocabulaire générique associé à la religion et au surnaturel.
+
+
+ + + +
4.9.1
+
+ +
Use this domain for words related to God--the supreme being in the universe. Each theological system will have different beliefs concerning the existence and nature of God. Our purpose here is to collect and define the terms used to refer to the supreme deity. If there is no such person in the theological system, then use this domain for other terms for the pantheon of gods, ultimate reality, nirvana, and similar concepts. However most theological systems, even atheism, have the concept of a supreme God and use words to refer to him.
+
Classer dans ce champ lexical le vocabulaire associé à Dieu, l’être suprême de l’univers. Chaque système théologique aura des croyances différentes sur l’existence et la nature de Dieu. Notre but ici est de recueillir des termes qui font référence à la divinité suprême et les définir. S’il n’y a personne de tel dans le système théologique, on utilisera alors ce champ lexical pour le panthéon des dieux, la réalité ultime, le nirvana et autres notions similaires. Cependant, la plupart des systèmes théologiques, y compris l’athéisme, ont la notion d’un Dieu suprême et ont des mots pour le désigner.
+
+
+ + + +
4.9.2
+
+ +
Use this domain for words referring to supernatural beings--gods, spirits, other types of beings, which normally cannot be seen and do not belong to this world. Some people accept the existence of certain supernatural beings and not others. Mythological beings are those that were believed in during previous times but that are no longer believed in. Fictional beings are those that no one has ever believed in. An indication of whether most people believe in the supernatural being should be put in the definition.
+
Classer dans ce champ lexical le vocabulaire associé à des êtres surnaturels, dieux, esprits, autres types d’êtres, qu’on ne peut pas voir normalement et n’appartiennent pas à ce monde. Certains acceptent l’existence de certains êtres surnaturels, d’autres non. Les êtres mythologiques sont ceux auxquels les gens ont cru autrefois, mais auxquels personne ne croit plus. Les êtres imaginaires sont ceux auxquels personne n’a jamais cru. On devra indiquer dans la définition d’un être spirituel si la plupart des gens y croient ou non.
+
+
+ + + +
4.9.3
+
+ +
Use this domain for words related to theology--the study of God and what people believe about God.
+
Classer dans ce champ lexical le vocabulaire associé à la théologie : l’étude de Dieu et ce que les personnes croient au sujet de Dieu.
+
+
+ + + +
4.9.3.1
+
+ +
Use this domain for words related to sacred writings. Examples are only given for the Christian sacred writings. However you should include words referring to the holy books of all religions .
+
Classer dans ce champ lexical le vocabulaire associé aux textes sacrés. Ici, les exemples ne concerneront que les textes sacrés chrétiens. Cependant, vous devrez ajouter les mots relatifs aux livres saints de toutes les religions.
+
+
+ + + +
4.9.4
+
+ +
Use this domain for words related to miracles--the use of supernatural power to do something good.
+
Classer dans ce champ lexical le vocabulaire associé aux miracles : utilisation d’un pouvoir surnaturel pour faire du bien.
+
+
+ + + +
4.9.4.1
+
+ +
Use this domain for words related to sorcery--the use of supernatural power to do something bad.
+
Classer dans ce champ lexical le vocabulaire associé à la sorcellerie : l’utilisation d’un pouvoir surnaturel pour faire du mal.
+
+
+ + + +
4.9.4.2
+
+ +
Use this domain for words referring to demon possession--when a demon or spirit influences or controls the behavior of a person. Use this domain for all words related to the relationship between spirits and people, including communication between people and spirits. Also use this domain for words referring to casting out demons--causing a demon to stop influencing or controlling a person.
+
Classer dans ce champ lexical le vocabulaire associé à la possession démoniaque : lorsqu’un démon ou un esprit contrôle le comportement de quelqu’un. Classer dans ce champ lexical les mots associés à la relation entre les esprits et les personnes, y inclus la communication entre les esprits et les personnes. Utiliser aussi ce champ pour l’exorcisme : faire cesser le pouvoir qu’a un démon d’influencer ou de contrôler une personne.
+
+
+ + + +
4.9.4.3
+
+ +
Use this domain for words related to blessing someone--saying something that causes something good to happen, or requests God to do something good to someone.
+
Classer dans ce champ lexical le vocabulaire qui signifie bénir quelqu’un : dire ce qui entraînera un évènement heureux ou demander à Dieu de faire du bien à quelqu’un.
+
+
+ + + +
4.9.4.4
+
+ +
Use this domain for words related to cursing someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de maudire quelqu’un.
+
+
+ + + +
4.9.4.5
+
+ +
Use this domain for words related to destiny--decisions and actions by God, spirits, or by impersonal forces that determine or influence what happens to a person.
+
Classer dans ce champ lexical le vocabulaire associé à la destinée : décisions et actions de Dieu, des esprits ou d’une force impersonnelle, qui déterminent ou influencent ce qui arrive à une personne.
+
+
+ + + +
4.9.4.6
+
+ +
Use this domain for words referring to speaking for God, including foretelling the future through divine knowledge.
+
Classer dans ce champ lexical le vocabulaire associé au fait de parler de la part de Dieu, y compris de prédire l’avenir grâce à une connaissance divine.
+
+
+ + + +
4.9.4.7
+
+ +
Use this domain for words related to supernatural knowledge.
+
Classer dans ce champ lexical le vocabulaire associé aux présages ou à la divination : avoir une connaissance surnaturelle de secrets et d’événements futurs, y compris les méthodes pour apprendre à connaître ces choses.
+
+
+ + + +
4.9.5
+
+ +
Use this domain for words related to practicing religion.
+
Classer dans ce champ lexical le vocabulaire associé à la pratique religieuse.
+
+
+ + + +
4.9.5.1
+
+ +
Use this domain for words related to being devout.
+
Classer dans ce champ lexical le vocabulaire associé à la piété.
+
+
+ + + +
4.9.5.2
+
+ +
Use this domain for words related to praying--talking to God.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prier : parler à Dieu.
+
+
+ + + +
4.9.5.3
+
+ +
Use this domain for personal expressions of devotion to God, in whatever ways the religion defines and expresses it.
+
Classer dans ce champ lexical le vocabulaire associé à l’expression individuelle de la dévotion qu’on porte à Dieu, de quelques manières qu’une religion la définisse et l’exprime.
+
+
+ + + +
4.9.5.4
+
+ +
Use this domain for words related to religious ceremonies.
+
Classer dans ce champ lexical le vocabulaire associé aux cérémonies religieuses.
+
+
+ + + +
4.9.5.5
+
+ +
Use this domain for words related to offering a sacrifice.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’offrir un sacrifice.
+
+
+ + + +
4.9.5.6
+
+ +
Use this domain for words related to religious purification.
+
Classer dans ce champ lexical le vocabulaire associé à la purification religieuse.
+
+
+ + + +
4.9.5.6.1
+
+ +
Use this domain for words referring to things that are taboo--something to be avoided; a religious, social, or cultural restriction on behavior, as opposed to a government law.
+
Classer dans ce champ lexical le vocabulaire associé à des choses qui sont taboues : ce qu’on doit éviter, une restriction culturelle, sociale ou religieuse, par rapport à un comportement (pas une loi nationale).
+
+
+ + + +
4.9.5.7
+
+ +
Use this domain for the primary goal or goals of a religion, for instance in Christianity salvation from sin, death and Hell. Each religion has different beliefs about salvation. Our purpose here is not to preach or argue, but to list those words that people use to talk about this topic.
+
Classer dans ce champ lexical le vocabulaire associé aux objectifs principaux d’une religion, par exemple, dans le christianisme, être sauvé du péché, de la mort éternelle et de l’enfer. Chaque religion a des croyances différentes en matière de salut. Le but ici n’est pas de prêcher ou d’argumenter, mais d’énumérer les mots utilises pour parler de ce sujet.
+
+
+ + + +
4.9.5.8
+
+ +
Use this domain for words related to dedicating someone or something to religious use.
+
Classer dans ce champ lexical le vocabulaire signifiant mettre à part quelqu’un ou quelque chose pour un service religieux.
+
+
+ + + +
4.9.5.9
+
+ +
Use this domain for words related to fasting--to not eat for a period of time.
+
Classer dans ce champ lexical le vocabulaire associé au jeûne : ne pas manger pendant un temps déterminé.
+
+
+ + + +
4.9.6
+
+ +
Use this domain for words related to heaven and hell--the place where people go after they die.
+
Classer dans ce champ lexical le vocabulaire associé au ciel et à l’enfer : lieu où l’on va après la mort.
+
+
+ + + +
4.9.6.1
+
+ +
Use this domain for words related to resurrection--life after death, or living again after dying.
+
Classer dans ce champ lexical le vocabulaire associé à la résurrection : la vie après la mort ou revivre après la mort.
+
+
+ + + +
4.9.7
+
+ +
Use this domain for words referring to official religions, groups within a religion, and religious meetings. Each religion will have different names for its groups. Answer each question for each religion.
+
Classer dans ce champ lexical le vocabulaire associé aux grandes religions, aux groupes religieux et aux réunions religieuses. Chaque religion aura des noms différents pour ses groupes. Répondre à chaque question pour chaque religion.
+
+
+ + + +
4.9.7.1
+
+ +
Use this domain for words referring to religious practitioners--people who practice a religion, who are members of the religion, believe in the religion, leaders of the religion, and followers of the religion. Each religion has its own terms for religious practitioners. List these terms separately for each religion. The examples given below are for the Christian religion.
+
Classer dans ce champ lexical le vocabulaire associé aux pratiquants d’une religion, à des personnes qui la mettent en pratique, qui font partie d’une religion, qui croient en une religion, qui sont des responsables religieux ou qui sont des adeptes de cette religion. Chaque religion a son propre vocabulaire pour désigner ses pratiquants. Vous les énumérerez séparément pour chaque religion. Les exemples donnés ici se réfèrent au christianisme.
+
+
+ + + +
4.9.7.2
+
+ +
Use this domain for words used in Christianity.
+
Classer dans ce champ lexical le vocabulaire associé au christianisme.
+
+
+ + + +
4.9.7.3
+
+ +
Use this domain for words used in Islam.
+
Classer dans ce champ lexical le vocabulaire associé à l’islam.
+
+
+ + + +
4.9.7.4
+
+ +
Use this domain for words used in Hinduism.
+
Classer dans ce champ lexical le vocabulaire associé à l’hindouisme.
+
+
+ + + +
4.9.7.5
+
+ +
Use this domain for words used in Buddhism.
+
Classer dans ce champ lexical le vocabulaire associé au bouddhisme.
+
+
+ + + +
4.9.7.6
+
+ +
Use this domain for words used in Judaism.
+
Classer dans ce champ lexical le vocabulaire associé au judaïsme.
+
+
+ + + +
4.9.7.7
+
+ +
Use this domain for words used in Animism--the belief in spirits.
+
Classer dans ce champ lexical le vocabulaire associé à l’animisme : la croyance aux esprits.
+
+
+ + + +
4.9.8
+
+ +
Use this domain for words related to a religious object.
+
Classer dans ce champ lexical le vocabulaire associé à un objet religieux.
+
+
+ + + +
4.9.8.1
+
+ +
Use this domain for words related to idols and their use.
+
Classer dans ce champ lexical le vocabulaire associé aux idoles et à leur usage.
+
+
+ + + +
4.9.8.2
+
+ +
Use this domain for words related to places of worship. Each religion has different types of places of worship. These questions must be answered according to the practices of each religion and for each separate type of place.
+
Classer dans ce champ lexical le vocabulaire associé aux lieux de culte. Chaque religion a différents types de lieu de culte. Il faut donc répondre à ces questions pour chaque religion et pour chaque type de lieu.
+
+
+ + + +
4.9.9
+
+ +
Use this domain for words related to thinking and acting against God or religion.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être contre Dieu ou la religion.
+
+
+ + + +
5
+
+ +
Use this domain for words related to daily life at home.
+
Classer dans ce champ lexical le vocabulaire associé à la vie quotidienne dans une maison
+
+
+ + + +
5.1
+
+ +
Use this domain for words related to household equipment and tools.
+
Classer dans ce champ lexical les mots ou expressions associés aux équipements de la maison et aux appareils.
+
+
+ + + +
5.1.1
+
+ +
Use this domain for words related to furniture.
+
Classer dans ce champ lexical le vocabulaire associé au mobilier.
+
+
+ + + +
5.1.1.1
+
+ +
Use this domain for words related to a table.
+
Classer dans ce champ lexical le vocabulaire associé à une table.
+
+
+ + + +
5.1.1.2
+
+ +
Use this domain for words related to a chair.
+
Classer dans ce champ lexical le vocabulaire associé à un siège.
+
+
+ + + +
5.1.1.3
+
+ +
Use this domain for words related to a bed.
+
Classer dans ce champ lexical le vocabulaire associé à un lit.
+
+
+ + + +
5.1.1.4
+
+ +
Use this domain for words related to a cabinet.
+
Classer dans ce champ lexical le vocabulaire associé aux meubles de rangement.
+
+
+ + + +
5.1.2
+
+ +
Use this domain for words related to household decorations.
+
Classer dans ce champ lexical le vocabulaire associé à la décoration d’une maison.
+
+
+ + + +
5.2
+
+ +
Use this domain for general words referring to food.
+
Classer dans ce champ lexical les termes génériques associés à la nourriture.
+
+
+ + + +
5.2.1
+
+ +
Use this domain for words related to food preparation.
+
Classer dans ce champ lexical le vocabulaire associé à la préparation de la nourriture.
+
+
+ + + +
5.2.1.1
+
+ +
Use this domain for words referring to various ways of cooking food. It is necessary to think through different kinds of food and how they are cooked. An example is given below for cooking eggs.
+
Classer dans ce champ lexical le vocabulaire associé aux différentes manières de préparer la nourriture. Il faut penser aux différentes sortes d’aliment et à leur préparation. Un exemple est donné ci-après pour les œufs.
+
+
+ + + +
5.2.1.2
+
+ +
Use this domain for words related to the steps in food preparation. One way to find the words in this domain is to describe how each type of food is prepared.
+
Classer dans ce champ lexical le vocabulaire associé aux étapes pour préparer la nourriture. Pour trouver les mots dans ce champ lexical on peut décrire comment chaque type de nourriture est préparé.
+
+
+ + + +
5.2.1.2.1
+
+ +
Use this domain for words related to removing the shell or skin from food.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’ôter la coquille ou la peau d’un aliment.
+
+
+ + + +
5.2.1.2.2
+
+ +
Use this domain for words related to pounding food in a mortar.
+
Classer dans ce champ lexical le vocabulaire qui signifie piler des aliments dans un mortier.
+
+
+ + + +
5.2.1.2.3
+
+ +
Use this domain for words related to grinding flour.
+
Classer dans ce champ lexical le vocabulaire associé à la fabrication de la farine.
+
+
+ + + +
5.2.1.3
+
+ +
Use this domain for words related to cooking utensils.
+
Classer dans ce champ lexical le vocabulaire associé aux ustensiles de cuisine.
+
+
+ + + +
5.2.1.4
+
+ +
Use this domain for words referring to food preservation and storage.
+
Classer dans ce champ lexical les termes associés à la conservation et au stockage de la nourriture.
+
+
+ + + +
5.2.1.5
+
+ +
Use this domain for words related to serving food.
+
Classer dans ce champ lexical le vocabulaire associé au service de la nourriture.
+
+
+ + + +
5.2.2
+
+ +
Use this domain for words related to eating.
+
Classer dans ce champ lexical le vocabulaire associé à la prise de nourriture.
+
+
+ + + +
5.2.2.1
+
+ +
Use this domain for words referring to biting and chewing with the teeth.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mordre ou de mâcher.
+
+
+ + + +
5.2.2.2
+
+ +
Use this domain for words related to a meal.
+
Classer dans ce champ lexical le vocabulaire associé au repas.
+
+
+ + + +
5.2.2.3
+
+ +
Use this domain for words related to a feast.
+
Classer dans ce champ lexical le vocabulaire associé au banquet.
+
+
+ + + +
5.2.2.4
+
+ +
Use this domain for words describing the manner in which a person eats.
+
Classer dans ce champ lexical le vocabulaire décrivant la manière dont les gens mangent.
+
+
+ + + +
5.2.2.5
+
+ +
Use this domain for words related to being hungry or thirsty.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir faim ou soif.
+
+
+ + + +
5.2.2.6
+
+ +
Use this domain for words related to being full of food.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être rassasié.
+
+
+ + + +
5.2.2.7
+
+ +
Use this domain for words related to drinking.
+
Classer dans ce champ lexical le vocabulaire associé au fait de boire.
+
+
+ + + +
5.2.2.8
+
+ +
Use this domain for words related to eating utensils.
+
Classer dans ce champ lexical le vocabulaire associé au couvert.
+
+
+ + + +
5.2.2.9
+
+ +
Use this domain for words related to fasting--to not eat for a period of time.
+
Classer dans ce champ lexical les mots ou expressions associés au jeûne ; au fait de ne pas manger pendant un certain temps.
+
+
+ + + +
5.2.3
+
+ +
Use this domain for words related to types of food.
+
Classer dans ce champ lexical les mots ou expressions désignant différents types d’aliments.
+
+
+ + + +
5.2.3.1
+
+ +
Use this domain for words related to food from plants.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture d’origine végétale.
+
+
+ + + +
5.2.3.1.1
+
+ +
Use this domain for words related to food from seeds.
+
Classer dans ce champ lexical le vocabulaire associé aux aliments provenant de graines.
+
+
+ + + +
5.2.3.1.2
+
+ +
Use this domain for words related to food from fruit.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de fruits.
+
+
+ + + +
5.2.3.1.3
+
+ +
Use this domain for words related to food from vegetables.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de légumes.
+
+
+ + + +
5.2.3.1.4
+
+ +
Use this domain for words referring to food from leaves and stems.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de feuilles et de tiges.
+
+
+ + + +
5.2.3.1.5
+
+ +
Use this domain for words referring to food from roots.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de racines.
+
+
+ + + +
5.2.3.2
+
+ +
Use this domain for words referring to eating meat and to types of animals that are eaten. Only include those animals that are commonly eaten, especially those that are domesticated.
+
Classer dans ce champ lexical le vocabulaire faisant référence à la consommation de viande et aux espèces animales mangées. Ne mentionner que les animaux couramment consommés, surtout ceux qui sont domestiqués.
+
+
+ + + +
5.2.3.2.1
+
+ +
Use this domain for words referring to meat and types of animals that are eaten. Only include those animals that are commonly eaten.
+
Classer dans ce champ lexical le vocabulaire faisant référence à la viande et aux espèces d’animaux consommés. Ne mettre que les animaux qui sont couramment consommés.
+
+
+ + + +
5.2.3.2.2
+
+ +
Use this domain for words related to milk products.
+
Classer dans ce champ lexical le vocabulaire associé aux produits laitiers.
+
+
+ + + +
5.2.3.2.3
+
+ +
Use this domain for words related to food made from eggs.
+
Classer dans ce champ lexical le vocabulaire associé aux plats préparés à base d’œufs.
+
+
+ + + +
5.2.3.3
+
+ +
Use this domain for general words referring to ingredients--the things that are added together when preparing food.
+
Classer dans ce champ lexical les termes génériques qui décrivent des ingrédients : éléments ajoutés les uns aux autres lors de la préparation d’un plat.
+
+
+ + + +
5.2.3.3.1
+
+ +
Use this domain for words related to sugar.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au sucre.
+
+
+ + + +
5.2.3.3.2
+
+ +
Use this domain for words related to salt.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au sel.
+
+
+ + + +
5.2.3.3.3
+
+ +
Use this domain for spices--things that are added to food to make them taste better.
+
Classer dans ce champ lexical les mots ou expressions qui désignent les épices : ce qu’on ajoute à un plat pour lui donner meilleur goût.
+
+
+ + + +
5.2.3.3.4
+
+ +
Use this domain for leaven--things that are added to food to make them ferment.
+
Classer dans ce champ lexical les mots ou expressions relatives au levain : ce qu’on ajoute à une préparation pour qu’elle fermente.
+
+
+ + + +
5.2.3.3.5
+
+ +
Use this domain for words related to cooking oil.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à l’huile de cuisine.
+
+
+ + + +
5.2.3.4
+
+ +
Use this domain for words referring to prepared food. Cultures vary widely in the number and types of foods they prepare, and in how they classify them. For instance the English distinction between main dish and side dish is not found in the classification system of other languages. If your language has well-recognized subcategories, you can set up a separate subdomain for each. The questions below are based on the main ingredient in the dish.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à un plat. Les cultures diffèrent les unes des autres dans le nombre et le type de plats qu’elles préparent, ainsi que dans la façon de les classer. Par exemple, le Français fait une distinction entre plat principal et accompagnement, qui n’existe pas dans d’autres langues. Si votre langue a des sous-catégories distinctes, vous pouvez créer un sous-champ lexical séparé pour chacune d’elles. Les questions ci-dessous sont basées sur le composant principal du plat.
+
+
+ + + +
5.2.3.5
+
+ +
Use this domain for words that describe food that is prohibited by the culture or religion. Do not list the foods that are prohibited.
+
Classer dans ce champ lexical les mots ou expressions qui désignent les aliments qui sont interdits par la culture ou la religion. Vous n'énumérerez pas les aliments interdits.
+
+
+ + + +
5.2.3.6
+
+ +
Use this domain for words referring to things people drink.
+
Classer dans ce champ lexical les mots ou expressions qui désignent ce qui se boit.
+
+
+ + + +
5.2.3.7
+
+ +
Use this domain for types of beverages containing alcohol.
+
Classer dans ce champ lexical les différents types de boissons contenant de l’alcool.
+
+
+ + + +
5.2.3.7.1
+
+ +
Use this domain for words related to making alcoholic beverages.
+
Classer dans ce champ lexical les mots ou expressions relatifs à la fabrication de boissons alcoolisées.
+
+
+ + + +
5.2.3.7.2
+
+ +
Use this domain for words related to drinking alcohol and the effect it has on a person.
+
Classer dans ce champ lexical les mots ou expressions décrivant l’ingestion d’alcool et les effets que cela peut avoir sur quelqu’un.
+
+
+ + + +
5.2.4
+
+ +
Use this domain for words related to using tobacco.
+
Classer dans ce champ lexical les mots ou expressions relatifs à la consommation de tabac.
+
+
+ + + +
5.2.5
+
+ +
Use this domain for words related to narcotics and drugs that are not used as medicine but as stimulants. Narcotics are often addicting and harmful to a person's health.
+
Classer dans ce champ lexical les mots ou expressions relatifs aux drogues. Les narcotiques conduisent souvent à une dépendance et sont néfastes pour la santé.
+
+
+ + + +
5.2.6
+
+ +
Use this domain for words related to stimulants--substances that are drunk, eaten, or chewed to make a person more alert or give him more energy.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les stimulants (substances bues, mangées ou mâchées qui rendent quelqu’un plus vif ou lui donnent plus d’énergie).
+
+
+ + + +
5.3
+
+ +
Use this domain for words related to clothing.
+
Classer dans ce champ lexical les mots ou expressions relatifs à l’habillement.
+
+
+ + + +
5.3.1
+
+ +
Use this domain for words related to men's clothing.
+
Classer dans ce champ lexical les mots ou expressions relatifs aux vêtements pour hommes.
+
+
+ + + +
5.3.2
+
+ +
Use this domain for words related to women's clothing.
+
Classer dans ce champ lexical les mots ou expressions relatifs aux vêtements pour femmes.
+
+
+ + + +
5.3.3
+
+ +
Use this domain for words related to traditional clothing.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à l’habillement traditionnel.
+
+
+ + + +
5.3.4
+
+ +
Use this domain for words referring to special clothes worn on special occasions. It is necessary to think through all the various special occasions in the culture and think of any special clothes worn on those occasions. Two examples are given below for work and graduation, but there are many others.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à des vêtements portés en certaines occasions. Il faut penser aux diverses occasions spéciales au niveau culturel, et aux différents vêtements portés en ces occasions. Deux exemples sont donnés ci-dessous pour le travail ou une remise de diplôme, mais il en existe bien d’autres.
+
+
+ + + +
5.3.5
+
+ +
Use this domain for special clothes worn by special people. It is necessary to think through all the various special types of people in the culture and think of any special clothes worn by them. Several examples are given below, but there are many others.
+
Classer dans ce champ lexical les vêtements portés par certaines personnes dans l’exercice de leur fonction. Il faut penser aux différents types de personnes de la culture et penser à leurs vêtements professionnels. En voici plusieurs exemples, mais il en existe bien d’autres.
+
+
+ + + +
5.3.6
+
+ +
Use this domain for words related to parts of clothing.
+
Classer dans ce champ lexical les mots ou expressions en relation avec les différentes parties d’un vêtement.
+
+
+ + + +
5.3.7
+
+ +
Use this domain for words related to wearing clothing.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le port de vêtements.
+
+
+ + + +
5.3.8
+
+ +
Use this domain for words related to being naked--not wearing any clothes, and for words referring to how a person feels about being naked. It is a part of universal human experience that people do not want to be naked. So there are words that refer to feeling bad if one does not have enough clothes on (shame). Other words refer to wanting to have enough clothes (modest). Other words refer to how people feel about other people who do not wear enough clothes +(indecent).
+
Classer dans ce champ lexical les mots ou expressions désignant la nudité (fait de ne porter aucun vêtement) et le sentiment qu’une personne peut avoir en étant nue. Il peut arriver, dans l’espèce humaine tout entière, que certaines personnes ne veuillent pas être nues. Il existe donc certains mots décrivant le malaise ressenti de ne pas avoir assez de vêtements sur soi (honte). D’autres mots décriront la volonté d’avoir assez de vêtements (pudeur). D’autres mots, encore, décriront ce que certaines personnes ressentent lorsque d’autres personnes ne portent pas assez de vêtements (indécence).
+
+
+ + + +
5.3.9
+
+ +
Use this domain for words related to clothing styles.
+
Classer dans ce champ lexical les mots en rapport avec les styles vestimentaires.
+
+
+ + + +
5.4
+
+ +
Use this domain for words related to adornment.
+
Classer dans ce champ lexical le vocabulaire associé à la parure.
+
+
+ + + +
5.4.1
+
+ +
Use this domain for objects such as jewelry that are put on or attached to the body or to the clothes as decoration.
+
Classer dans ce champ lexical des objets décoratifs (tels que des bijoux) qu’une personne porte sur son corps ou sur ses vêtements.
+
+
+ + + +
5.4.2
+
+ +
Use this domain for words related to cosmetics--things you put on your skin to make yourself beautiful in appearance.
+
Classer dans ce champ lexical le vocabulaire associé aux cosmétiques : ce que l’on met sur sa peau pour se rendre plus beau.
+
+
+ + + +
5.4.3
+
+ +
Use this domain for words related to caring for your hair.
+
Classer dans ce champ lexical le vocabulaire associé aux soins des cheveux.
+
+
+ + + +
5.4.3.1
+
+ +
Use this domain for words related to combing your hair.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se coiffer.
+
+
+ + + +
5.4.3.2
+
+ +
Use this domain for words related to plaiting your hair.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tresser les cheveux.
+
+
+ + + +
5.4.3.3
+
+ +
Use this domain for words related to dying your hair.
+
Classer dans ce champ lexical le vocabulaire associé à la coloration des cheveux.
+
+
+ + + +
5.4.3.4
+
+ +
Use this domain for words related to hairstyles.
+
Classer dans ce champ lexical le vocabulaire associé aux coiffures.
+
+
+ + + +
5.4.3.5
+
+ +
Use this domain for words related to cutting hair.
+
Classer dans ce champ lexical le vocabulaire associé à la coupe des cheveux.
+
+
+ + + +
5.4.3.6
+
+ +
Use this domain for words related to shaving.
+
Classer dans ce champ lexical le vocabulaire associé au rasage.
+
+
+ + + +
5.4.4
+
+ +
Use this domain for words related to caring for your teeth.
+
Classer dans ce champ lexical le vocabulaire associé aux soins dentaires.
+
+
+ + + +
5.4.5
+
+ +
Use this domain for words related to anointing the body.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’oindre son corps.
+
+
+ + + +
5.4.6
+
+ +
Use this domain for words related to ritual scarring.
+
Classer dans ce champ lexical le vocabulaire associé aux incisions et aux tatouages rituels.
+
+
+ + + +
5.4.6.1
+
+ +
Use this domain for words related to circumcision.
+
Classer dans ce champ lexical le vocabulaire associé à la circoncision.
+
+
+ + + +
5.4.7
+
+ +
Use this domain for words related to caring for the fingernails.
+
Classer dans ce champ lexical le vocabulaire associé aux soins des ongles.
+
+
+ + + +
5.5
+
+ +
Use this domain for general words that refer to fire and for words referring to types of fire. These words may be specific for what is being burned (forest fire 'a fire burning a forest'), the size of the fire (inferno 'a very large hot fire'), or the place where the fire burns (hellfire 'the fire in hell').
+
Classer dans ce champ lexical les termes génériques qui font référence au feu et aux types de feu. Ces mots peuvent être spécifiques à ce qui est brûlé (feu de forêt : un feu qui brûle une forêt), à la dimension du feu (enfer : un très grand feu), ou au lieu où brûle le feu (feu de l’enfer : le feu en enfer).
+
+
+ + + +
5.5.1
+
+ +
Use this domain for words related to lighting a fire.
+
Classer dans ce champ lexical le vocabulaire associé à l’allumage d’un feu.
+
+
+ + + +
5.5.2
+
+ +
Use this domain for words that refer to tending a fire--to keep a fire burning so that it burns well and does not go out.
+
Mettre dans ce champ lexical les mots qui font référence à l’entretien d’un feu, pour le garder allumé afin qu’il brûle bien et ne s’éteigne pas.
+
+
+ + + +
5.5.3
+
+ +
Use this domain for all the ways a person can stop a fire.
+
Classer dans ce champ lexical les façons de faire cesser un feu.
+
+
+ + + +
5.5.4
+
+ +
Use this domain for verbs that are used of fire: "The fire is ____." In some languages there are verbs for what is happening to the thing that is burning: "The house is ____."
+
Classer dans ce champ lexical des verbes qui sont utilisés pour le feu, tel que : « Le feu est en train de ____. » Dans certaines langues il y a des verbes pour ce qui arrive à la chose qui est en train de brûler, tel que : « La maison est en train de ___. »
+
+
+ + + +
5.5.5
+
+ +
Use this domain for words related to the things that fires produce.
+
Classer dans ce champ lexical le vocabulaire associé à ce que les feux produisent.
+
+
+ + + +
5.5.6
+
+ +
Use this domain for types of fuel and for words used in making, collecting, storing, or using fuel. This domain includes the scenario of collecting firewood.
+
Classer dans ce champ lexical les sortes de combustible et le vocabulaire utilisé pour fabriquer, ramasser, entreposer ou utiliser du combustible. Ce champ lexical inclut la séquence d’actions pour ramasser du bois de chauffage.
+
+
+ + + +
5.5.7
+
+ +
Use this domain for any place where fires are normally burned.
+
Classer dans ce champ lexical tout emplacement où brûle normalement un feu.
+
+
+ + + +
5.6
+
+ +
Use this domain for general words related to cleaning things.
+
Classer dans ce champ lexical les termes génériques associés au nettoyage des choses.
+
+
+ + + +
5.6.1
+
+ +
Use this domain for words describing whether something is clean or dirty.
+
Classer dans ce champ lexical le vocabulaire indiquant si quelque chose est propre ou sale.
+
+
+ + + +
5.6.2
+
+ +
Use this domain for words related to bathing.
+
Classer dans ce champ lexical le vocabulaire associé au bain.
+
+
+ + + +
5.6.3
+
+ +
Use this domain for words related to washing dishes.
+
Classer dans ce champ lexical le vocabulaire associé au lavage de la vaisselle.
+
+
+ + + +
5.6.4
+
+ +
Use this domain for words related to washing clothes.
+
Classer dans ce champ lexical le vocabulaire associé à l’entretien du linge.
+
+
+ + + +
5.6.5
+
+ +
Use this domain for words related to cleaning the floor or ground.
+
Classer dans ce champ lexical le vocabulaire associé au nettoyage du plancher ou du sol.
+
+
+ + + +
5.6.6
+
+ +
Use this domain for words related to wiping dirt off of things.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’enlever la saleté sur des objets.
+
+
+ + + +
5.7
+
+ +
Use this domain for words related to sleeping.
+
Classer dans ce champ lexical le vocabulaire associé au sommeil.
+
+
+ + + +
5.7.1
+
+ +
Use this domain for words related to going to bed and going to sleep.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aller au lit et de s’endormir.
+
+
+ + + +
5.7.2
+
+ +
Use this domain for words related to dreaming.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rêver.
+
+
+ + + +
5.7.3
+
+ +
Use this domain for words related to waking up from sleep.
+
Classer dans ce champ lexical le vocabulaire associé au réveil après le sommeil.
+
+
+ + + +
5.8
+
+ +
Use this domain for words related to managing a house.
+
Classer dans ce champ lexical le vocabulaire associé au fait de s’occuper d’une maison.
+
+
+ + + +
5.9
+
+ +
Use this domain for words related to living in a place.
+
Classer dans ce champ lexical le vocabulaire associé au fait de vivre quelque part.
+
+
+ + + +
6
+
+ +
Use this domain for general words related to working.
+
Classer dans ce champ lexical les termes génériques associés au travail.
+
+
+ + + +
6.1
+
+ +
Use this domain for words related to working.
+
Classer dans ce champ lexical les termes associés au travail.
+
+
+ + + +
6.1.1
+
+ +
Use this domain for words related to a worker.
+
Classer dans ce champ lexical les termes qui désignent un travailleur.
+
+
+ + + +
6.1.1.1
+
+ +
Use this domain for words related to being an expert--someone who can do something well.
+
Classer dans ce champ lexical les termes associés au fait d’être un spécialiste, quelqu’un qui est excellent dans un domaine.
+
+
+ + + +
6.1.2
+
+ +
Use this domain for words related to the method of doing something.
+
Classer dans ce champ lexical les termes associés à la façon de faire quelque chose.
+
+
+ + + +
6.1.2.1
+
+ +
Use this domain for words indicating that someone is trying to do something.
+
Classer dans ce champ lexical les termes associés au fait d’essayer de faire quelque chose.
+
+
+ + + +
6.1.2.2
+
+ +
Use this domain for words related to using something to do something.
+
Classer dans ce champ lexical les termes associés au fait d‘utiliser quelque chose dans une intention précise.
+
+
+ + + +
6.1.2.2.1
+
+ +
Use this domain for words related to being useful--words describing something that can be used to do something.
+
Classer dans ce champ lexical les termes associés au fait d’être utile : mots qui décrivent quelque chose qu’on peut utiliser à une fin précise.
+
+
+ + + +
6.1.2.2.2
+
+ +
Use this domain for words related to being useless--words describing something that cannot be used to do anything.
+
Classer dans ce champ lexical les termes associés au fait d’être inutile : mots qui décrivent quelque chose qui ne sert à rien.
+
+
+ + + +
6.1.2.2.3
+
+ +
Use this domain for words related to something being available to use.
+
Classer dans ce champ lexical les termes associés à quelque chose dont on dispose.
+
+
+ + + +
6.1.2.2.4
+
+ +
Use this domain for words related to using something up.
+
Classer dans ce champ lexical les termes associés au fait d’utiliser complètement quelque chose.
+
+
+ + + +
6.1.2.2.5
+
+ +
Use this domain for words related to taking care of something.
+
Classer dans ce champ lexical les termes associés au fait de prendre soin de quelque chose.
+
+
+ + + +
6.1.2.2.6
+
+ +
Use this domain for words related to wasting something.
+
Classer dans ce champ lexical les termes associés au gaspillage.
+
+
+ + + +
6.1.2.3
+
+ +
Use this domain for words related to working well.
+
Classer dans ce champ lexical les termes associés au fait de bien travailler.
+
+
+ + + +
6.1.2.3.1
+
+ +
Use this domain for words related to being careful.
+
Classer dans ce champ lexical les termes associés au fait d’être soigneux.
+
+
+ + + +
6.1.2.3.2
+
+ +
Use this domain for words related to working hard.
+
Classer dans ce champ lexical les termes associés au fait de travailler dur.
+
+
+ + + +
6.1.2.3.3
+
+ +
Use this domain for words related to being busy.
+
Classer dans ce champ lexical les termes associés au fait d’être très occupé.
+
+
+ + + +
6.1.2.3.4
+
+ +
Use this domain for words related to the power used to do something.
+
Classer dans ce champ lexical les termes associés à la force utilisée pour faire quelque chose.
+
+
+ + + +
6.1.2.3.5
+
+ +
Use this domain for words related to completing a task.
+
Classer dans ce champ lexical les termes associés au fait de terminer une tâche.
+
+
+ + + +
6.1.2.3.6
+
+ +
Use this domain for words related to being ambitious.
+
Classer dans ce champ lexical les termes associés au fait d’être ambitieux.
+
+
+ + + +
6.1.2.4
+
+ +
Use this domain for words related to working poorly.
+
Classer dans ce champ lexical les termes associés au fait de mal travailler.
+
+
+ + + +
6.1.2.4.1
+
+ +
Use this domain for words related to being careless.
+
Classer dans ce champ lexical les termes associés au fait d’être négligent.
+
+
+ + + +
6.1.2.4.2
+
+ +
Use this domain for words related to being lazy.
+
Classer dans ce champ lexical les termes associés au fait d’être paresseux.
+
+
+ + + +
6.1.2.4.3
+
+ +
Use this domain for words related to giving up.
+
Classer dans ce champ lexical les termes associés au fait d’abandonner.
+
+
+ + + +
6.1.2.5
+
+ +
Use this domain for words related to planning.
+
Classer dans ce champ lexical les termes associés au fait d’organiser quelque chose.
+
+
+ + + +
6.1.2.5.1
+
+ +
Use this domain for words related to arranging an event, such as a meeting.
+
Classer dans ce champ lexical les termes associés à l’organisation d’une manifestation, telle qu’un congrès.
+
+
+ + + +
6.1.2.5.2
+
+ +
Use this domain for words related to canceling a plan, decision, or event.
+
Classer dans ce champ lexical les termes associés au fait d’annuler un projet, une décision ou une manifestation.
+
+
+ + + +
6.1.2.6
+
+ +
Use this domain for words related to preparing to do something.
+
Classer dans ce champ lexical les termes associés au fait de préparer quelque chose.
+
+
+ + + +
6.1.2.6.1
+
+ +
Use this domain for words related to preparing something so that it can be used for some purpose.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’action de faire des préparatifs dans tel ou tel but.
+
+
+ + + +
6.1.2.7
+
+ +
Use this domain for words related to being effective.
+
Classer dans ce champ lexical les termes associés au fait d’être efficace.
+
+
+ + + +
6.1.2.8
+
+ +
Use this domain for words related to being efficient.
+
Classer dans ce champ lexical les termes associés à l’occasion de faire quelque chose.
+
+
+ + + +
6.1.2.9
+
+ +
Use this domain for words related to an opportunity to do something.
+
+
+
+ + + +
6.1.3
+
+ +
Use this domain for words describing something that is difficult or impossible to do.
+
Classer dans ce champ lexical les termes qui décrivent quelque chose qui est difficile ou impossible à faire.
+
+
+ + + +
6.1.3.1
+
+ +
Use this domain for words describing something that is easy or possible to do.
+
Classer dans ce champ lexical les termes qui décrivent quelque chose qui est facile à faire ou qu’il est possible de réaliser.
+
+
+ + + +
6.1.3.2
+
+ +
Use this domain for words related to succeeding in doing something.
+
Classer dans ce champ lexical les termes signifiant réussir à faire quelque chose.
+
+
+ + + +
6.1.3.3
+
+ +
Use this domain for words related to failing to do something.
+
Classer dans ce champ lexical les termes signifiant échouer à faire quelque chose.
+
+
+ + + +
6.1.3.4
+
+ +
Use this domain for words related to having an advantage--something that helps you succeed that other people don't have.
+
Classer dans ce champ lexical le vocabulaire concernant le fait d’avoir un avantage, quelque chose qui aide à réussir et que les autres n’ont pas.
+
+
+ + + +
6.1.4
+
+ +
Use this domain for words related to being satisfied with your job.
+
Classer dans ce champ lexical les termes signifiant être satisfait de son travail.
+
+
+ + + +
6.1.5
+
+ +
Use this domain for words related to being unemployed.
+
Classer dans ce champ lexical les termes signifiant ne pas avoir de travail.
+
+
+ + + +
6.1.6
+
+ +
Use this domain for words describing something made by hand instead of by a machine.
+
Classer dans ce champ lexical les termes qui font référence à des produits faits à la main.
+
+
+ + + +
6.1.7
+
+ +
Use this domain for words describing something that is artificial--something that is made by people.
+
Classer dans ce champ lexical les termes qui font référence à quelque chose qui est artificiel : qui est fabriqué par l’homme.
+
+
+ + + +
6.1.8
+
+ +
Use this domain for words related to being experienced at doing something.
+
Classer dans ce champ lexical les termes signifiant être expérimenté.
+
+
+ + + +
6.1.8.1
+
+ +
Use this domain for words related to being accustomed to something.
+
Classer dans ce champ lexical les termes signifiant être habitué à quelque chose.
+
+
+ + + +
6.2
+
+ +
Use this domain for words related to agriculture--working with plants.
+
Classer dans ce champ lexical les termes associés à l’agriculture : la culture des végétaux.
+
+
+ + + +
6.2.1
+
+ +
Use this domain for general words related to growing crops. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it.
+
Classer dans ce champ lexical les termes génériques associés à la culture des champs. Si une culture est très répandue et si les mots qui s’y rapportent sont nombreux, on prévoit un champ lexical distinct pour celle-ci.
+
+
+ + + +
6.2.1.1
+
+ +
Use this domain for general words related to growing grain crops such as barley, maize (corn), millet, oats, rice, rye, sesame, sorghum, and wheat. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for rice, wheat, and maize, since they are so common around the world.
+
Classer dans ce champ lexical les termes génériques associés à la culture des céréales, telles que l’orge, le maïs, l’avoine, le millet, le riz, le blé, le sésame, le sorgho, le seigle, le mil… Si une culture est très répandue et que les mots qui s’y rapportent sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour le riz, le blé et le maïs, car la culture de ces céréales est très répandue dans le monde.
+
+
+ + + +
6.2.1.1.1
+
+ +
Use this domain for words related to growing rice.
+
Classer dans ce champ lexical les termes associés à la culture du riz.
+
+
+ + + +
6.2.1.1.2
+
+ +
Use this domain for words related to growing wheat.
+
Classer dans ce champ lexical les termes associés à la culture du blé.
+
+
+ + + +
6.2.1.1.3
+
+ +
Use this domain for words related to growing maize.
+
Classer dans ce champ lexical les termes associés à la culture du maïs.
+
+
+ + + +
6.2.1.2
+
+ +
Use this domain for words related to growing root crops such as beets, carrots, cassava, garlic, ginger, leeks, manioc, onions, peanuts, potatoes, radishes, rutabagas, taro, turnips, and yams. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for potatoes and cassava, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture de tubercules, tels que la betterave, les carottes, le manioc, le gingembre, l’ail, le poireau, l’igname, les oignons, les cacahuètes, les pommes de terre, les radis, les rutabagas, le taro ou le navet, les patates douces. Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour les pommes de terre et le manioc, car la culture de ces tubercules est très répandue dans le monde.
+
+
+ + + +
6.2.1.2.1
+
+ +
Use this domain for words related to growing potatoes.
+
Classer dans ce champ lexical les termes associés à la culture des pommes de terre.
+
+
+ + + +
6.2.1.2.2
+
+ +
Use this domain for words related to growing cassava.
+
Classer dans ce champ lexical les termes associés à la culture du manioc.
+
+
+ + + +
6.2.1.3
+
+ +
Use this domain for words related to growing vegetables, such as asparagus, beans, broccoli, cabbage, celery, chard, cucumbers, eggplant, melons, peas, peppers, pumpkins, spinach, squash, tomatoes, and watermelons. If one type of vegetable is cultivated extensively and there are many words related to it, set up a separate domain for it.
+
Classer dans ce champ lexical les termes associés aux légumes, tels que les asperges, haricots, brocolis, choux, céleris, blettes, concombres, aubergines, pois, piments, courges, épinards, courgettes, tomates. Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci.
+
+
+ + + +
6.2.1.4
+
+ +
Use this domain for words related to growing fruit, such as berries, cranberries, grapes, raspberries, and strawberries. If one type of fruit is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for grapes and bananas, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture des fruits tels que les melons, pastèques, baies, raisins, airelles, framboises, fraises, myrtilles, canneberges, pommes, poires, abricots, pêches, oranges, citrons… Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour le raisin et les bananes, car la culture de ces fruits est très répandue dans le monde.
+
+
+ + + +
6.2.1.4.1
+
+ +
Use this domain for words related to growing grapes.
+
Classer dans ce champ lexical les termes associés à la culture de la vigne.
+
+
+ + + +
6.2.1.4.2
+
+ +
Use this domain for words related to growing bananas.
+
Classer dans ce champ lexical les termes associés à la culture des bananes.
+
+
+ + + +
6.2.1.5
+
+ +
Use this domain for words related to growing grass, such as sod, hay, alfalfa, bamboo, papyrus, sugarcane, and tobacco. If one type of grass is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for sugarcane and tobacco, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture des herbes, telles que le gazon, le trèfle, le foin, la luzerne, le bambou, le papyrus, la canne à sucre ou le tabac. Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour la canne à sucre et le tabac, car leur culture est très répandue dans le monde.
+
+
+ + + +
6.2.1.5.1
+
+ +
Use this domain for words related to growing sugarcane.
+
Classer dans ce champ lexical les termes associés à la culture de la canne à sucre.
+
+
+ + + +
6.2.1.5.2
+
+ +
Use this domain for words related to growing tobacco.
+
Classer dans ce champ lexical les termes associés à la culture du tabac.
+
+
+ + + +
6.2.1.6
+
+ +
Use this domain for words related to growing flowers. If one type of flower is cultivated extensively and there are many words related to it, set up a separate domain for it.
+
Classer dans ce champ lexical les termes associés à la culture des fleurs. Si la culture d’une espèce de fleur est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci.
+
+
+ + + +
6.2.1.7
+
+ +
Use this domain for words related to growing trees. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for coconuts and coffee, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture des arbres. Si la culture d’une espèce d’arbre est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour les cocotiers et les caféiers, car leur culture est très répandue dans le monde.
+
+
+ + + +
6.2.1.7.1
+
+ +
Use this domain for words related to growing coconuts.
+
Classer dans ce champ lexical les termes associés à la culture des cocotiers.
+
+
+ + + +
6.2.1.7.2
+
+ +
Use this domain for words related to growing coffee.
+
Classer dans ce champ lexical les termes associés à la culture du café.
+
+
+ + + +
6.2.2
+
+ +
Use this domain for words related to preparing land for planting crops.
+
Classer dans ce champ lexical les termes associés à la préparation d’un champ avant la culture.
+
+
+ + + +
6.2.2.1
+
+ +
Use this domain for words related to clearing a field.
+
Classer dans ce champ lexical les termes associés au débroussaillage.
+
+
+ + + +
6.2.2.2
+
+ +
Use this domain for words related to plowing a field.
+
Classer dans ce champ lexical les termes associés au fait de labourer un champ.
+
+
+ + + +
6.2.2.3
+
+ +
Use this domain for words related to fertilizing a field.
+
Classer dans ce champ lexical les termes associés au fait de mettre de l’engrais dans un champ.
+
+
+ + + +
6.2.3
+
+ +
Use this domain for words related to planting a field.
+
Classer dans ce champ lexical les termes associés au fait de planter un champ.
+
+
+ + + +
6.2.4
+
+ +
Use this domain for words related to tending a field.
+
Classer dans ce champ lexical les termes associés au fait d’entretenir un champ.
+
+
+ + + +
6.2.4.1
+
+ +
Use this domain for words related to cutting grass.
+
Classer dans ce champ lexical les termes associés au fait de couper l’herbe.
+
+
+ + + +
6.2.4.2
+
+ +
Use this domain for words related to uprooting plants.
+
Classer dans ce champ lexical le vocabulaire lié à l’action d’arracher des plantes.
+
+
+ + + +
6.2.4.3
+
+ +
Use this domain for words related to irrigating a field.
+
Classer dans ce champ lexical les termes associés au fait d’arroser un champ.
+
+
+ + + +
6.2.4.4
+
+ +
Use this domain for words related to trimming plants.
+
Classer dans ce champ lexical les termes associés au fait de tailler des plantes.
+
+
+ + + +
6.2.4.5
+
+ +
Use this domain for words related to neglecting plants.
+
Classer dans ce champ lexical les termes associés au fait de négliger des plantes.
+
+
+ + + +
6.2.5
+
+ +
Use this domain for words related to harvesting crops. If there is an important crop and there are a lot of words that refer to harvesting it, set up a special domain for it, such as 'Harvest rice' or 'Harvest coconuts'. If there is more than one such crop, set up a separate domain for each of them.
+
Classer dans ce champ lexical les termes associés au fait de faire une récolte. Si une récolte est très répandue et si les mots qui s’y rapportent sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour « Récolte du riz » ou « récolte des noix de coco ». S’il y en a plusieurs, on prévoit un champ lexical pour chacune.
+
+
+ + + +
6.2.5.1
+
+ +
Use this domain for words referring to the first fruits or crops to be harvested.
+
Classer dans ce champ lexical les termes associés aux premiers fruits ou productions récoltés.
+
+
+ + + +
6.2.5.2
+
+ +
Use this domain for words related to crop failure.
+
Classer dans ce champ lexical les termes associés au fait d’avoir une mauvaise récolte.
+
+
+ + + +
6.2.5.3
+
+ +
Use this domain for words related to gathering wild plants. In a hunter-gatherer culture this domain might need to be extensively developed.
+
Classer dans ce champ lexical les termes associés à la cueillette de plantes sauvages. Dans les cultures de chasseurs cueilleurs, il est possible que ce champ lexical soit très riche.
+
+
+ + + +
6.2.5.4
+
+ +
Use this domain for words referring to materials and substances that are taken from plants and used for various purposes. It is necessary to think through various types of plants to think of what materials are taken from each.
+
Classer dans ce champ lexical les termes associés aux matières premières et aux substances tirées des végétaux et employées à diverses fins. Il faut penser aux différents types de végétaux et à ce qu’on en tire.
+
+
+ + + +
6.2.6
+
+ +
Use this domain for words related to processing the harvest.
+
Classer dans ce champ lexical les termes associés à la récolte.
+
+
+ + + +
6.2.6.1
+
+ +
Use this domain for words related to winnowing grain--to separate the chaff from the grain.
+
Classer dans ce champ lexical les termes associés au fait de battre du grain.
+
+
+ + + +
6.2.6.2
+
+ +
Use this domain for words related to milling grain.
+
Classer dans ce champ lexical les termes associés à l’action de vanner le grain : séparer la balle du grain.
+
+
+ + + +
6.2.6.3
+
+ +
Use this domain for words related to threshing grain.
+
Classer dans ce champ lexical les termes associés au fait de moudre le grain.
+
+
+ + + +
6.2.6.4
+
+ +
Use this domain for words related to storing the harvest.
+
Classer dans ce champ lexical les termes associés au stockage de la récolte.
+
+
+ + + +
6.2.7
+
+ +
Use this domain for words related to farm workers.
+
Classer dans ce champ lexical les termes associés au personnel agricole.
+
+
+ + + +
6.2.8
+
+ +
Use this domain for words related to agricultural tools.
+
Classer dans ce champ lexical les termes désignant des outils agricoles.
+
+
+ + + +
6.2.9
+
+ +
Use this domain for words related to farmland.
+
Classer dans ce champ lexical les termes associés aux terres agricoles.
+
+
+ + + +
6.3
+
+ +
Use this domain for words related to animal husbandry--working with animals.
+
Classer dans ce champ lexical les termes associés à l’élevage : utilisation des animaux pour le travail.
+
+
+ + + +
6.3.1
+
+ +
Use this domain for words related to domesticated animals. Add extra domains for specific domesticated animals in your culture such as elephants in east Asia, camels in the Middle East, and llamas in South America.
+
Classer dans ce champ lexical les termes associés aux animaux domestiques. Vous ajouterez d’autres champs lexicaux pour les animaux domestiques propres à votre culture tels que les éléphants en Asie, les chameaux au Moyen-Orient ou les lamas en Amérique du Sud.
+
+
+ + + +
6.3.1.1
+
+ +
Use this domain for words related to cattle and the care of cattle.
+
Classer dans ce champ lexical les termes associés au gros bétail et à son élevage.
+
+
+ + + +
6.3.1.2
+
+ +
Use this domain for words related to sheep.
+
Classer dans ce champ lexical les termes associés aux moutons.
+
+
+ + + +
6.3.1.3
+
+ +
Use this domain for words related to goats.
+
Classer dans ce champ lexical les termes associés aux chèvres.
+
+
+ + + +
6.3.1.4
+
+ +
Use this domain for words related to pigs.
+
Classer dans ce champ lexical les termes associés aux porcs.
+
+
+ + + +
6.3.1.5
+
+ +
Use this domain for words related to dogs.
+
Classer dans ce champ lexical les termes associés aux chiens.
+
+
+ + + +
6.3.1.6
+
+ +
Use this domain for words related to cats.
+
Classer dans ce champ lexical les termes associés aux chats.
+
+
+ + + +
6.3.1.7
+
+ +
Use this domain for words related to animals that are used as a beast of burden--either to ride, to carry loads, or to pull vehicles. The questions refer to horses, but can be applied to any animal.
+
Classer dans ce champ lexical les termes associés aux animaux employés comme bête de somme : soit pour être montée, soit pour transporter un chargement, ou pour tirer un véhicule. Les questions concernent les chevaux, mais peuvent s'appliquer aussi à n'importe quel autre animal.
+
+
+ + + +
6.3.2
+
+ +
Use this domain for words related to tending a herd in the fields.
+
Classer dans ce champ lexical les termes associés au fait de garder un troupeau dans les champs.
+
+
+ + + +
6.3.3
+
+ +
Use this domain for words related to milking an animal.
+
Classer dans ce champ lexical les termes associés à la traite d’un animal.
+
+
+ + + +
6.3.4
+
+ +
Use this domain for words referring to killing animals and cutting them up for food.
+
Classer dans ce champ lexical les termes associés au fait de tuer des animaux et de les découper pour les manger.
+
+
+ + + +
6.3.5
+
+ +
Use this domain for words related to wool production--cutting the hair off of a sheep.
+
Classer dans ce champ lexical les termes associés à la production de laine : couper la toison d’un mouton.
+
+
+ + + +
6.3.6
+
+ +
Use this domain for words related to raising birds.
+
Classer dans ce champ lexical les termes associés à l’élevage de la volaille.
+
+
+ + + +
6.3.6.1
+
+ +
Use this domain for words related to chickens.
+
Classer dans ce champ lexical les termes associés aux poules.
+
+
+ + + +
6.3.7
+
+ +
Use this domain for words related to animal products.
+
Classer dans ce champ lexical les termes associés aux produits venant des animaux.
+
+
+ + + +
6.3.8
+
+ +
Use this domain for words related to treating animal diseases.
+
Classer dans ce champ lexical les termes associés au traitement des maladies des animaux.
+
+
+ + + +
6.3.8.1
+
+ +
Use this domain for words related to animal diseases.
+
Classer dans ce champ lexical les termes associés aux maladies des animaux.
+
+
+ + + +
6.3.8.2
+
+ +
Use this domain for words related to castrating animals. There are sometimes specific terms for castrated animals, such as 'steer--a male cow that has been castrated before maturity'.
+
Classer dans ce champ lexical les termes associés à la castration d’un animal. Il existe parfois des termes spécifiques pour désigner les animaux castrés, tels que « bœuf », pour désigner un bovin castré avant l'âge adulte.
+
+
+ + + +
6.4
+
+ +
Use this domain for words related to hunting and fishing--catching and killing wild animals.
+
Classer dans ce champ lexical les termes associés à la chasse et à la pêche : attraper et tuer des animaux sauvages.
+
+
+ + + +
6.4.1
+
+ +
Use this domain for words related to hunting wild animals.
+
Classer dans ce champ lexical les termes associés à la chasse d’animaux sauvages.
+
+
+ + + +
6.4.1.1
+
+ +
Use this domain for words related to tracking an animal.
+
Classer dans ce champ lexical les termes associés au fait de suivre un animal.
+
+
+ + + +
6.4.2
+
+ +
Use this domain for words related to trapping an animal.
+
Classer dans ce champ lexical les termes associés au fait de piéger un animal.
+
+
+ + + +
6.4.3
+
+ +
Use this domain for words related to hunting birds.
+
Classer dans ce champ lexical les termes associés à la chasse aux oiseaux.
+
+
+ + + +
6.4.4
+
+ +
Use this domain for words related to keeping bees.
+
Classer dans ce champ lexical les termes associés à l’apiculture.
+
+
+ + + +
6.4.5
+
+ +
Use this domain for words related to catching fish.
+
Classer dans ce champ lexical les termes associés à la pêche.
+
+
+ + + +
6.4.5.1
+
+ +
Use this domain for words related to fishing with a net.
+
Classer dans ce champ lexical les termes associés à la pêche au filet.
+
+
+ + + +
6.4.5.2
+
+ +
Use this domain for words related to fishing with a hook and line.
+
Classer dans ce champ lexical les termes associés à la pêche à la ligne.
+
+
+ + + +
6.4.5.3
+
+ +
Use this domain for words related to fishing equipment.
+
Classer dans ce champ lexical les termes associés au matériel de pêche.
+
+
+ + + +
6.4.6
+
+ +
Use this domain for words related to things done to animals.
+
Classer dans ce champ lexical les termes associés à ce que l'on peut faire aux animaux.
+
+
+ + + +
6.5
+
+ +
Use this domain for words related to working with buildings.
+
Classer dans ce champ lexical les termes associés au travail dans le bâtiment.
+
+
+ + + +
6.5.1
+
+ +
Use this domain for words related to buildings and other large structures that people build.
+
Classer dans ce champ lexical les termes associés aux bâtiments et autres grandes structures que les gens construisent.
+
+
+ + + +
6.5.1.1
+
+ +
Use this domain for general words referring to a house where people live.
+
Classer dans ce champ lexical les termes génériques faisant référence à une maison où des gens vivent.
+
+
+ + + +
6.5.1.2
+
+ +
Use this domain for words referring to types of houses.
+
Classer dans ce champ lexical les termes désignant les différents types de maison.
+
+
+ + + +
6.5.1.3
+
+ +
Use this domain for words related to land that a person owns or the land on which a house is built.
+
Classer dans ce champ lexical le vocabulaire associé au terrain qu’une personne possède ou le terrain sur lequel une maison est construite.
+
+
+ + + +
6.5.1.4
+
+ +
Use this domain for words referring to the outside of a house, the area around a house, a barrier separating one house from another, and the entryway to the area around a house.
+
Classer dans ce champ lexical le vocabulaire désignant l’extérieur d’une maison, le terrain qui l’entoure, une séparation entre les maisons et l’accès à la propriété.
+
+
+ + + +
6.5.1.5
+
+ +
Use this domain for words referring to a fence, wall, hedge, or other barrier separating one house from another, and a gate or entryway through a fence or wall.
+
Classer dans ce champ lexical le vocabulaire qui désigne une clôture, un mur, une haie, ou autre barrière séparant une maison d’une autre ainsi que le portail ou le passage que cette séparation peut comporter.
+
+
+ + + +
6.5.2
+
+ +
Use this domain for words referring to the parts and areas of a building.
+
Classer dans ce champ lexical les termes associés aux différentes parties d’un bâtiment.
+
+
+ + + +
6.5.2.1
+
+ +
Use this domain for words related to walls.
+
Classer dans ce champ lexical les termes associés aux murs.
+
+
+ + + +
6.5.2.2
+
+ +
Use this domain for words related to a roof.
+
Classer dans ce champ lexical les termes associés à la toiture.
+
+
+ + + +
6.5.2.3
+
+ +
Use this domain for words related to a floor.
+
Classer dans ce champ lexical les termes associés au sol.
+
+
+ + + +
6.5.2.4
+
+ +
Use this domain for words related to a door.
+
Classer dans ce champ lexical les termes associés à une porte.
+
+
+ + + +
6.5.2.5
+
+ +
Use this domain for words related to a window.
+
Classer dans ce champ lexical les termes associés à une fenêtre.
+
+
+ + + +
6.5.2.6
+
+ +
Use this domain for words related to the foundation of a building.
+
Classer dans ce champ lexical les termes associés aux fondations d’un bâtiment.
+
+
+ + + +
6.5.2.7
+
+ +
Use this domain for words related to the rooms of a building.
+
Classer dans ce champ lexical les termes associés aux pièces d’un bâtiment.
+
+
+ + + +
6.5.2.8
+
+ +
Use this domain for words related to the levels of a building.
+
Classer dans ce champ lexical les termes associés aux niveaux d’un bâtiment.
+
+
+ + + +
6.5.3
+
+ +
Use this domain for words related to the materials used to make a building.
+
Classer dans ce champ lexical les termes associés aux matériaux de construction.
+
+
+ + + +
6.5.3.1
+
+ +
Use this domain for words referring to the equipment and maintenance of a building.
+
Classer dans ce champ lexical les termes associés au matériel d’entretien et à l’entretien d’un bâtiment.
+
+
+ + + +
6.5.4
+
+ +
Use this domain for words related to infrastructure--the big things people make that many people use, such as roads, electric power lines, and water supply systems.
+
Classer dans ce champ lexical les termes associés aux infrastructures : réalisations importantes que de nombreuses personnes utilisent, telles que les routes, les lignes électriques ou les réseaux d’alimentation en eau.
+
+
+ + + +
6.5.4.1
+
+ +
Use this domain for words related to a road.
+
Classer dans ce champ lexical les termes associés à une route.
+
+
+ + + +
6.5.4.2
+
+ +
Use this domain for words related to the boundary of an area.
+
Classer dans ce champ lexical les termes associés à la délimitation d’une zone.
+
+
+ + + +
6.6
+
+ +
Use this domain for words related to occupations.
+
Classer dans ce champ lexical les termes associés à diverses activités.
+
+
+ + + +
6.6.1
+
+ +
Use this domain for words related to working with cloth.
+
Classer dans ce champ lexical les termes associés au travail du textile.
+
+
+ + + +
6.6.1.1
+
+ +
Use this domain for words related to cloth.
+
Classer dans ce champ lexical les termes associés au tissu.
+
+
+ + + +
6.6.1.2
+
+ +
Use this domain for words related to spinning thread.
+
Classer dans ce champ lexical les termes associés au fait de filer.
+
+
+ + + +
6.6.1.3
+
+ +
Use this domain for words related to knitting.
+
Classer dans ce champ lexical les termes associés au tricotage.
+
+
+ + + +
6.6.1.4
+
+ +
Use this domain for words related to weaving cloth.
+
Classer dans ce champ lexical les termes associés au tissage.
+
+
+ + + +
6.6.2
+
+ +
Use this domain for words related to working with minerals.
+
Classer dans ce champ lexical les termes associés au travail en lien avec les matières minérales.
+
+
+ + + +
6.6.2.1
+
+ +
Use this domain for words related to mining.
+
Classer dans ce champ lexical les termes associés à la mine.
+
+
+ + + +
6.6.2.2
+
+ +
Use this domain for words related to smelting--melting rocks to get metal out of them.
+
Classer dans ce champ lexical les termes associés à la fonderie : fondre des blocs de pierre pour en extraire le métal.
+
+
+ + + +
6.6.2.3
+
+ +
Use this domain for words related to working with metal. Answer each question below for each kind of smith.
+
Classer dans ce champ lexical les termes associés au travail du métal. Vous répondrez aux questions ci-après pour chaque type de métaux.
+
+
+ + + +
6.6.2.4
+
+ +
Use this domain for words related to working with clay.
+
Classer dans ce champ lexical les termes associés au travail de l’argile.
+
+
+ + + +
6.6.2.5
+
+ +
Use this domain for words related to working with glass.
+
Classer dans ce champ lexical les termes associés au travail du verre.
+
+
+ + + +
6.6.2.6
+
+ +
Use this domain for words related to working with oil and gas.
+
Classer dans ce champ lexical les termes associés au travail en lien avec le pétrole et le gaz.
+
+
+ + + +
6.6.2.7
+
+ +
Use this domain for words related to working with stone.
+
Classer dans ce champ lexical les termes associés au travail de la pierre.
+
+
+ + + +
6.6.2.8
+
+ +
Use this domain for words related to working with bricks.
+
Classer dans ce champ lexical les termes associés au travail avec des briques.
+
+
+ + + +
6.6.2.9
+
+ +
Use this domain for words related to working with chemicals.
+
Classer dans ce champ lexical les termes associés au travail avec des produits chimiques.
+
+
+ + + +
6.6.2.9.1
+
+ +
Use this domain for words related to bombs or chemicals exploding.
+
Classer dans ce champ lexical les termes associés aux bombes et aux explosifs.
+
+
+ + + +
6.6.3
+
+ +
Use this domain for words related to working with wood.
+
Classer dans ce champ lexical les termes associés au travail du bois.
+
+
+ + + +
6.6.3.1
+
+ +
Use this domain for words related to lumbering--cutting down trees and cutting them up.
+
Classer dans ce champ lexical les termes associés à la coupe du bois : abattre des arbres et les débiter.
+
+
+ + + +
6.6.3.2
+
+ +
Use this domain for words related to wood.
+
Classer dans ce champ lexical les termes associés au bois.
+
+
+ + + +
6.6.3.3
+
+ +
Use this domain for words related to paper.
+
Classer dans ce champ lexical les termes associés au papier.
+
+
+ + + +
6.6.4
+
+ +
Use this domain for words related to crafts.
+
Classer dans ce champ lexical les termes associés à l’artisanat.
+
+
+ + + +
6.6.4.1
+
+ +
Use this domain for words related to working with cords and ropes.
+
Classer dans ce champ lexical les termes associés au travail des cordes et des ficelles.
+
+
+ + + +
6.6.4.2
+
+ +
Use this domain for words related to weaving baskets, mats, and other things.
+
Classer dans ce champ lexical les termes associés à la vannerie (tressage de paniers, nattes, etc.…).
+
+
+ + + +
6.6.4.3
+
+ +
Use this domain for words related to working with leather.
+
Classer dans ce champ lexical les termes associés au travail du cuir.
+
+
+ + + +
6.6.4.4
+
+ +
Use this domain for words related to working with bone.
+
Classer dans ce champ lexical les termes associés au travail de l’os ou de la corne.
+
+
+ + + +
6.6.5
+
+ +
Use this domain for words related to art.
+
Classer dans ce champ lexical les termes associés à l’art plastique.
+
+
+ + + +
6.6.5.1
+
+ +
Use this domain for words related to drawing and painting pictures.
+
Classer dans ce champ lexical les termes associés à la peinture ou au dessin.
+
+
+ + + +
6.6.5.2
+
+ +
Use this domain for words related to photography.
+
Classer dans ce champ lexical les termes associés à la photographie.
+
+
+ + + +
6.6.5.3
+
+ +
Use this domain for words related to sculpture.
+
Classer dans ce champ lexical les termes associés à la sculpture.
+
+
+ + + +
6.6.6
+
+ +
Use this domain for words related to working with land.
+
Classer dans ce champ lexical les termes associés au travail de la terre.
+
+
+ + + +
6.6.7
+
+ +
Use this domain for words related to working with water.
+
Classer dans ce champ lexical les termes associés au travail se rapportant à l’eau.
+
+
+ + + +
6.6.7.1
+
+ +
Use this domain for words related to working with water pipes.
+
Classer dans ce champ lexical les termes associés au travail sur des canalisations d’eau.
+
+
+ + + +
6.6.7.2
+
+ +
Use this domain for words related to conveying water--moving water from one place to another place.
+
Classer dans ce champ lexical les termes associés au transport de l’eau, au fait d’amener l’eau d’un endroit à l’autre.
+
+
+ + + +
6.6.7.3
+
+ +
Use this domain for words related to controlling the movement of water.
+
Classer dans ce champ lexical les termes associés au contrôle des mouvements de l’eau.
+
+
+ + + +
6.6.7.4
+
+ +
Use this domain for words related to working in the sea.
+
Classer dans ce champ lexical les termes associés au travail en mer.
+
+
+ + + +
6.6.8
+
+ +
Use this domain for words related to working with machines.
+
Classer dans ce champ lexical les termes associés au travail avec des machines.
+
+
+ + + +
6.6.8.1
+
+ +
Use this domain for words related to working with electricity.
+
Classer dans ce champ lexical les termes associés au travail se rapportant à l’électricité.
+
+
+ + + +
6.7
+
+ +
Use this domain for general words for tools and machines. The domains in this section should be used for general tools and machines that are used in a variety of tasks. Specialized tools and machines should be classified under the specific work or activity for which they are used.
+
Classer dans ce champ lexical les termes génériques associés aux outils et aux machines. Ce champ lexical est destiné aux termes génériques pour les outils et les machines qui servent à une multitude de tâches. Le nom des outils et des machines spécialisés doit être classé sous la tâche correspondante.
+
+
+ + + +
6.7.1
+
+ +
Use this domain for words related to cutting tools.
+
Classer dans ce champ lexical le vocabulaire associé aux outils coupants.
+
+
+ + + +
6.7.1.1
+
+ +
Use this domain for words related to poking tools--tools used to make holes in things.
+
Classer dans ce champ lexical le vocabulaire associé aux outils pointus : outils qui servent à faire des trous.
+
+
+ + + +
6.7.1.2
+
+ +
Use this domain for words related to digging tools.
+
Classer dans ce champ lexical le vocabulaire associé aux outils pour creuser.
+
+
+ + + +
6.7.2
+
+ +
Use this domain for words related to pounding tools.
+
Classer dans ce champ lexical le vocabulaire associé aux marteaux et maillets.
+
+
+ + + +
6.7.3
+
+ +
Use this domain for words related to carrying tools.
+
Classer dans ce champ lexical le vocabulaire associé aux valises, sacs et autres.
+
+
+ + + +
6.7.4
+
+ +
Use this domain for words referring to tools used to lift things.
+
Classer dans ce champ lexical le vocabulaire associé aux outils pour soulever une charge.
+
+
+ + + +
6.7.5
+
+ +
Use this domain for words related to fastening tools.
+
Classer dans ce champ lexical le vocabulaire associé à ce qui sert à attacher.
+
+
+ + + +
6.7.6
+
+ +
Use this domain for words related to holding tools--tools used to grip and hold things so that they don't move, and tools used to hold things that you can't hold with your hand, such as very hot things.
+
Classer dans ce champ lexical le vocabulaire associé aux objets qui servent à tenir quelque chose afin qu’elle ne bouge pas ou qu’on ne peut tenir avec la main, si c’est brûlant par exemple.
+
+
+ + + +
6.7.7
+
+ +
Use this domain for words related to containers.
+
Classer dans ce champ lexical le vocabulaire associé à des contenants.
+
+
+ + + +
6.7.7.1
+
+ +
Use this domain for words related to bags.
+
Classer dans ce champ lexical le vocabulaire associé à des sacs.
+
+
+ + + +
6.7.7.2
+
+ +
Use this domain for words related to a sheath--a container for a weapon.
+
Classer dans ce champ lexical le vocabulaire associé à un fourreau : quelque chose qui contient une arme (par exemple).
+
+
+ + + +
6.7.8
+
+ +
Use this domain for words referring to parts of tools and machines. You need to think of different tools and machines, and think of each part.
+
Classer dans ce champ lexical le vocabulaire associé à des composantes d’outils ou de machines. Il faudra réfléchir à tous les outils ou machines et aux éléments qui les constituent.
+
+
+ + + +
6.7.9
+
+ +
Use this domain for words referring to machines.
+
Classer dans ce champ lexical le vocabulaire associé aux machines.
+
+
+ + + +
6.8
+
+ +
Use this domain for words related to finance.
+
Classer dans ce champ lexical le vocabulaire associé à la finance.
+
+
+ + + +
6.8.1
+
+ +
Use this domain for words related to having wealth.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir des richesses.
+
+
+ + + +
6.8.1.1
+
+ +
Use this domain for words related to owning something.
+
Classer dans ce champ lexical le vocabulaire associé à la possession de quelque chose.
+
+
+ + + +
6.8.1.2
+
+ +
Use this domain for words related to being rich.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être riche.
+
+
+ + + +
6.8.1.3
+
+ +
Use this domain for words related to being poor.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être pauvre.
+
+
+ + + +
6.8.1.4
+
+ +
Use this domain for words related to storing wealth.
+
Classer dans ce champ lexical le vocabulaire associé à la mise en réserve de richesses.
+
+
+ + + +
6.8.1.5
+
+ +
Use this domain for words related to property--the things you own.
+
Classer dans ce champ lexical le vocabulaire associé à la propriété, aux choses qu’on possède.
+
+
+ + + +
6.8.2
+
+ +
Use this domain for words related to accumulating wealth.
+
Classer dans ce champ lexical le vocabulaire associé à l’accumulation de richesses.
+
+
+ + + +
6.8.2.1
+
+ +
Use this domain for words related to producing wealth.
+
Classer dans ce champ lexical le vocabulaire associé à la production de richesses.
+
+
+ + + +
6.8.2.2
+
+ +
Use this domain for words related to making a profit.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire des bénéfices.
+
+
+ + + +
6.8.2.3
+
+ +
Use this domain for words related to losing wealth.
+
Classer dans ce champ lexical le vocabulaire associé à la perte de ses richesses.
+
+
+ + + +
6.8.2.4
+
+ +
Use this domain for words related to being frugal--to not spend a lot of money.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être économe : ne pas dépenser beaucoup d’argent.
+
+
+ + + +
6.8.2.5
+
+ +
Use this domain for words related to being greedy.
+
Classer dans ce champ lexical le vocabulaire associé à l’avidité.
+
+
+ + + +
6.8.2.6
+
+ +
Use this domain for words related to collecting things you find interesting. In some cultures people collect rare or valuable things that they think are attractive or interesting, such as art, stamps, coins, books, or antiques.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de collectionner des choses intéressantes. Dans certaines cultures, les gens collectionnent des choses rares ou précieuses qu’ils estiment intéressantes telles que des œuvres d’art, des timbres, des pièces de monnaie, des livres ou des objets anciens.
+
+
+ + + +
6.8.2.7
+
+ +
Use this domain for words related to earning money for work that you do.
+
Classer dans ce champ lexical le vocabulaire associé au fait de gagner de l’argent pour le travail exécuté.
+
+
+ + + +
6.8.3
+
+ +
Use this domain for words related to sharing wealth with others.
+
Classer dans ce champ lexical le vocabulaire associé au partage de ses richesses avec d’autres.
+
+
+ + + + +
6.8.3.2
+
+ +
Use this domain for words related to being generous.
+
Classer dans ce champ lexical le vocabulaire associé à la générosité.
+
+
+ + + +
6.8.3.3
+
+ +
Use this domain for words related to being stingy.
+
Classer dans ce champ lexical le vocabulaire associé à l’avarice.
+
+
+ + + +
6.8.3.4
+
+ +
Use this domain for words related to begging--for a poor person to ask other people to give them money, food, or other things.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mendier : quelqu’un de pauvre demande à des gens de lui donner de l’argent, de la nourriture, ou autres.
+
+
+ + + +
6.8.4
+
+ +
Use this domain for words related to financial transactions.
+
Classer dans ce champ lexical le vocabulaire associé à des transactions financières.
+
+
+ + + +
6.8.4.1
+
+ +
Use this domain for words related to buying something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’acheter quelque chose.
+
+
+ + + +
6.8.4.2
+
+ +
Use this domain for words related to selling something.
+
Classer dans ce champ lexical le vocabulaire associé à la vente de quelque chose.
+
+
+ + + +
6.8.4.3
+
+ +
Use this domain for words related to the price of something--how much money you have to pay to buy something.
+
Classer dans ce champ lexical le vocabulaire associé au prix de quelque chose : somme à payer pour acheter quelque chose.
+
+
+ + + +
6.8.4.3.1
+
+ +
Use this domain for words related to an expensive price.
+
Classer dans ce champ lexical le vocabulaire associé à un prix élevé.
+
+
+ + + +
6.8.4.3.2
+
+ +
Use this domain for words related to a cheap price.
+
Classer dans ce champ lexical le vocabulaire associé à un prix bon marché.
+
+
+ + + +
6.8.4.3.3
+
+ +
Use this domain for words related to something being free of charge--something you can have without paying for it.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de gratuit : que l’on peut avoir sans rien payer.
+
+
+ + + +
6.8.4.4
+
+ +
Use this domain for words related to bargaining over the price of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de marchander un prix.
+
+
+ + + +
6.8.4.5
+
+ +
Use this domain for words related to paying money for something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de payer.
+
+
+ + + +
6.8.4.6
+
+ +
Use this domain for words related to hiring or renting something--to pay money so that you can use something that belongs to someone else.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de louer quelque chose : payer pour pouvoir utiliser quelque chose qui appartient à quelqu’un d’autre.
+
+
+ + + +
6.8.4.7
+
+ +
Use this domain for words related to spending money.
+
Classer dans ce champ lexical le vocabulaire associé au fait de dépenser de l’argent.
+
+
+ + + +
6.8.4.8
+
+ +
Use this domain for words related to a store or marketplace where things are sold.
+
Classer dans ce champ lexical le vocabulaire associé aux lieux où l’on vend.
+
+
+ + + +
6.8.4.9
+
+ +
Use this domain for words related to exchanging or trading things.
+
Classer dans ce champ lexical le vocabulaire associé au commerce et aux échanges commerciaux.
+
+
+ + + +
6.8.5
+
+ +
Use this domain for words related to borrowing something.
+
Classer dans ce champ lexical le vocabulaire associé à l’emprunt de quelque chose.
+
+
+ + + +
6.8.5.1
+
+ +
Use this domain for words related to lending something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de prêter.
+
+
+ + + +
6.8.5.2
+
+ +
Use this domain for words related to giving a pledge to replay a loan.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de donner quelque chose en gage pour un prêt.
+
+
+ + + +
6.8.5.3
+
+ +
Use this domain for words related to owing money.
+
Classer dans ce champ lexical le vocabulaire associé au fait de devoir de l’argent.
+
+
+ + + +
6.8.5.4
+
+ +
Use this domain for words related to repaying a debt.
+
Classer dans ce champ lexical le vocabulaire associé au remboursement d’une dette.
+
+
+ + + +
6.8.5.5
+
+ +
Use this domain for words referring to credit--when a lending institution, such as a bank, has some of your money, so they owe you something.
+
Classer dans ce champ lexical le vocabulaire associé au crédit : quand l’argent est placé dans un organisme de prêt tel une banque, et qu’il rapporte quelque chose.
+
+
+ + + +
6.8.6
+
+ +
Use this domain for words related to money.
+
Classer dans ce champ lexical le vocabulaire associé à l’argent.
+
+
+ + + +
6.8.6.1
+
+ +
Use this domain for words related to monetary units.
+
Classer dans ce champ lexical le vocabulaire associé aux unités monétaires.
+
+
+ + + +
6.8.7
+
+ +
Use this domain for words related to accounting--to keep records of money.
+
Classer dans ce champ lexical le vocabulaire associé à la comptabilité : fait de garder trace des transactions financières.
+
+
+ + + +
6.8.8
+
+ +
Use this domain for words related to tax.
+
Classer dans ce champ lexical le vocabulaire associé aux impôts.
+
+
+ + + +
6.8.9
+
+ +
Use this domain for words related to dishonest financial practices.
+
Classer dans ce champ lexical le vocabulaire associé à des pratiques financières malhonnêtes.
+
+
+ + + +
6.8.9.1
+
+ +
Use this domain for words related to stealing something--to take something that does not belong to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de voler, de prendre ce qui appartient à quelqu’un d’autre.
+
+
+ + + +
6.8.9.2
+
+ +
Use this domain for words related to cheating someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tromper quelqu’un.
+
+
+ + + +
6.8.9.3
+
+ +
Use this domain for words related to extorting money--forcing someone to give you money on a regular basis by threatening them with some harm.
+
Classer dans ce champ lexical le vocabulaire associé à l’extorsion d’argent : forcer quelqu’un à donner régulièrement de l’argent en le menaçant de lui faire du mal.
+
+
+ + + +
6.8.9.4
+
+ +
Use this domain for words related to taking something by force.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prendre quelque chose de force.
+
+
+ + + +
6.8.9.5
+
+ +
Use this domain for money given to a person to do something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait de donner de l’argent pour corrompre quelqu’un.
+
+
+ + + +
6.8.9.6
+
+ +
Use this domain for words related to smuggling--taking something secretly into a country, something which is illegal or without paying duty.
+
Classer dans ce champ lexical le vocabulaire associé à la contrebande : faire entrer secrètement dans un pays quelque chose qui est illégal ou sans payer les taxes.
+
+
+ + + +
6.9
+
+ +
Use this domain for words related to business organization.
+
Classer dans ce champ lexical le vocabulaire associé aux entreprises.
+
+
+ + + +
6.9.1
+
+ +
Use this domain for words related to managing something.
+
Classer dans ce champ lexical le vocabulaire associé à la gestion.
+
+
+ + + +
6.9.2
+
+ +
Use this domain for words related to working for someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de travailler pour autrui.
+
+
+ + + +
6.9.3
+
+ +
Use this domain for words related to the promotion of trade and sales.
+
Classer dans ce champ lexical le vocabulaire associé à la promotion des ventes.
+
+
+ + + +
6.9.4
+
+ +
Use this domain for words related to commerce--taking something to a place and trying to sell it there.
+
Classer dans ce champ lexical le vocabulaire associé au commerce : au fait d’acheter une chose pour la revendre.
+
+
+ + + +
6.9.5
+
+ +
Use this domain for words related to economics--the study of the money, trade, and industry of a country.
+
Classer dans ce champ lexical le vocabulaire associé à l’économie : l’étude des devises, des marchés, du commerce, des services et de l’industrie d’un pays.
+
+
+ + + +
6.9.6
+
+ +
Use this domain for words related to insurance.
+
Classer dans ce champ lexical le vocabulaire associé aux assurances.
+
+
+ + + +
7
+
+ +
Use this domain for general words for physical actions--moving yourself, moving things, and changing things.
+
Classer dans ce champ lexical les termes génériques pour les activités physiques : se déplacer, déplacer des choses et les changer.
+
+
+ + + +
7.1
+
+ +
Use this domain for general words indicating the posture or stance of a person's body. Use the domains in this section for specific words for postures and for moving parts of the body. Many of these words have two meanings. One meaning is stative, indicating that the body is in a particular posture, but not moving. The other meaning is active, indicating that the person is moving his body into a particular posture. Some of these words can be used of animals or even things, if the things are perceived as being similar in posture to that of a human body.
+
Classer dans ce champ lexical les termes génériques indiquant la posture ou la position du corps de quelqu’un. Classer dans les champs lexicaux de cette partie les mots relatifs aux postures et aux parties mobiles du corps. Un grand nombre de ces mots ont deux sens. Le premier est statique : il indique une position du corps. Le deuxième sens est actif : il indique que quelqu’un fait un mouvement pour se mettre dans une certaine position. On peut utiliser certains de ces mots pour les animaux ou même pour les choses, si celles-ci sont perçues comme ayant la même position qu’un corps humain.
+
+
+ + + +
7.1.1
+
+ +
Use this domain for words related to standing. The words in this domain may include whether the person is standing on one foot or two, whether the person's feet are together or placed apart, whether something is between the person's feet, how fast the person stands up.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être debout. On peut y inclure le vocabulaire désignant une personne qui se tient sur un pied ou deux, à pieds joints ou les jambes écartées, s’il y a quelque chose entre ses pieds, ou la vitesse à laquelle elle se met debout.
+
+
+ + + +
7.1.2
+
+ +
Use this domain for words referring to sitting and squatting.
+
Classer dans ce champ lexical les mots ou expressions qui désignent la position assise ou accroupie.
+
+
+ + + +
7.1.3
+
+ +
Use this domain for words referring to lying down.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la position allongée.
+
+
+ + + +
7.1.4
+
+ +
Use this domain for words referring to kneeling.
+
Classer dans ce champ lexical les mots ou expressions qui expriment le fait de s’agenouiller.
+
+
+ + + +
7.1.5
+
+ +
Use this domain for words referring to bowing to someone--to face someone and lower your head or bend at the waist so that your upper body is lowered. The words in this domain should all be symbolic acts, that is, the culture assigns a meaning and significance to the physical action. Some cultures define it as a greeting, as an act of respect, or as an act of submission. For instance in ancient middle eastern culture bowing was an act of submission done in the presence of the king. Failure to bow was an act of rebellion punishable by death. In far eastern culture it is a greeting. In African culture it is an act of respect or done to welcome a visitor. Cultures define how a person is to bow, for instance how they are to hold their hands. A person may bow while standing, or may kneel, or even prostrate himself flat on his face. Whether both people bow is also significant. The depth of the bow can have significance. In Japan the person of lower social rank must bow deeper. In European culture a performer bows to acknowledge applause.
+
Classer dans ce champ lexical les mots ou expressions faisant référence au fait de se prosterner devant quelqu’un, de faire une courbette ou de courber la tête devant quelqu’un. Les mots de ce champ lexical peuvent désigner des actes symboliques qui, dans une culture, ont une certaine signification. Ainsi, cela peut vouloir dire qu’on salue quelqu’un, qu’on manifeste du respect ou qu’on exprime sa soumission. Par exemple, dans la culture antique du Moyen-Orient, se prosterner était un signe de soumission envers le roi. Ne pas se prosterner était considéré comme un signe de rébellion et était condamnable à mort. En Extrême-Orient, ce geste est une salutation. Dans la culture africaine, c’est un signe de respect ou d’accueil d’un visiteur. Les cultures définissent la manière dont ce geste doit être fait, par exemple quelle doit être la position des mains. Une personne peut se prosterner en étant debout, s’agenouiller, ou même se coucher face contre terre. Le fait que les deux personnes se prosternent a aussi une signification. L’ampleur du geste peut avoir un sens aussi. Au Japon, une personne d’un rang social inférieur doit se prosterner plus bas. En Europe, un artiste s’incline en remerciement des applaudissements.
+
+
+ + + +
7.1.6
+
+ +
Use this domain for words describing a person who is leaning.
+
Classer dans ce champ lexical les mots qui décrivent une personne qui s’appuie.
+
+
+ + + +
7.1.7
+
+ +
Use this domain for words referring to straight posture--holding your body straight, stiff, or erect, rather than relaxed.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de se tenir droit, raide et non d’être détendu.
+
+
+ + + +
7.1.7.1
+
+ +
Use this domain for words describing a relaxed posture.
+
Classer dans ce champ lexical les mots ou expressions qui décrivent une position détendue.
+
+
+ + + +
7.1.8
+
+ +
Use this domain for words referring to bending down--to bend your body so that it is closer to the ground (in order to see something, pick up something, or hide).
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la position penchée : au fait de se courber afin de se rapprocher du sol (pour voir quelque chose, ramasser quelque chose ou se cacher).
+
+
+ + + +
7.1.9
+
+ +
Use this domain for words referring to moving various parts of the body.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au mouvement des diverses parties du corps.
+
+
+ + + +
7.2
+
+ +
Use this domain for intransitive verbs of movement referring to moving your whole body to a different location. There are many components of meaning involved in verbs of movement. They can include a source location (from), a goal location (to), a path (along), manner (walk, run), speed (race, crawl), direction +(forward, back, side, up, down, toward, away from), shape of the path (straight, curve, circle, angle), relationship to some object or objects (on, hang, against, between, across, through, into, out of, onto, off of, around), proximity (near, far), multiple movements (back and forth, return, bounce), inclusion with other objects or parts of objects (join, leave, collect, disperse, unite, separate), volition (go versus drift), intransitive versus transitive (move versus move something). Some verbs of movement do not involve moving from one place to another, but express bodily movement.
+
Classer dans ce champ lexical les verbes intransitifs de mouvement exprimant l’action de se déplacer d’un endroit vers un autre. Les verbes de mouvement comportent un grand nombre de traits sémantiques : le lieu de départ (d’où), la destination (vers), un chemin (le long), la manière (faire la course, ramper), la vitesse (marcher, courir), la direction (en avant, derrière, sur le côté, en haut, en bas, en direction de, loin de), la forme du chemin (droit, en lacet, en rond, angle), la relation à un ou des objets (sur, accrocher, contre, entre, en face, à travers, dans, hors de, sur, de, autour de), la proximité (près de, loin de), des mouvements multiples (aller-retour, revenir ou retourner, rebondir), la relation à d’autres objets ou parties d’objets (assembler, laisser, collectionner, disperser, unir, séparer), la volonté (aller par opposition à dériver), les verbes intransitifs par opposition aux verbes transitifs (bouger par opposition à bouger quelque chose).Certains verbes de mouvement ne comportent pas la notion de déplacement d’un endroit à un autre, mais expriment un mouvement du corps.
+
+
+ + + +
7.2.1
+
+ +
Use this domain for general words referring to the way in which a person moves.
+
Classer dans ce champ lexical le vocabulaire associé à la façon dont quelqu’un se déplace.
+
+
+ + + +
7.2.1.1
+
+ +
Use this domain for words related to walking--moving slowly using your legs.
+
Classer dans ce champ lexical le vocabulaire associé à la marche, à l’action de se déplacer lentement sur ses jambes.
+
+
+ + + +
7.2.1.1.1
+
+ +
Use this domain for words referring to running--moving fast on your legs.
+
Classer dans ce champ lexical le vocabulaire faisant référence à la course : action de se déplacer rapidement
+
+
+ + + +
7.2.1.1.2
+
+ +
Use this domain for words referring to crawling--moving on your hands and knees or on your stomach.
+
Classer dans ce champ lexical le vocabulaire associé à la reptation : se mouvoir sur les mains et les genoux ou sur le ventre.
+
+
+ + + +
7.2.1.1.3
+
+ +
Use this domain for words referring to jumping--moving your body off the ground by pushing hard with your legs.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de sauter : faire décoller son corps du sol en poussant fortement sur ses jambes.
+
+
+ + + +
7.2.1.2
+
+ +
Use this domain for words referring to moving quickly or slowly.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de se déplacer rapidement ou lentement.
+
+
+ + + +
7.2.1.2.1
+
+ +
Use this domain for words referring to moving slowly.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’action de se déplacer lentement.
+
+
+ + + +
7.2.1.3
+
+ +
Use this domain for words referring to wandering--to move slowly without any purpose or goal.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’action d’errer : se déplacer lentement, sans but précis.
+
+
+ + + +
7.2.1.4
+
+ +
Use this domain for words referring to moving in a graceful manner.
+
Classer dans ce champ lexical le vocabulaire qui signifie se déplacer avec grâce.
+
+
+ + + +
7.2.1.4.1
+
+ +
Use this domain for words referring to moving in a clumsy manner.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de se déplacer d’une manière maladroite.
+
+
+ + + +
7.2.1.5
+
+ +
Use this domain for words referring to walking with some difficulty such as stumbling--to miss your step because of hitting an object such as a stone, hole, or mud; staggering--to walk unsteadily because of weakness, illness, or drunkenness; or limping--to walk unevenly or with difficulty because of injury to a foot.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de rencontrer des problèmes en marchant : trébucher à cause d’un obstacle (pierre, trou), glisser à cause de la boue, tituber à cause d’un malaise, d’une maladie, de l’ivresse ou boiter, c’est-à-dire marcher en claudiquant ou difficilement à cause d’une blessure au pied.
+
+
+ + + +
7.2.1.5.1
+
+ +
Use this domain for moving across a smooth or lubricated surface.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de se déplacer sur une surface lisse ou glissante.
+
+
+ + + +
7.2.1.6
+
+ +
Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.
+
Classer dans ce champ lexical le vocabulaire qui sert à qualifier la facilité avec laquelle quelqu’un ou quelque chose se déplace ou est déplacé.
+
+
+ + + +
7.2.1.6.1
+
+ +
Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rester en équilibre ou faire tenir quelque chose en équilibre : quelqu’un ou quelque chose peut rester en équilibre ou se déplacer sans tomber.
+
+
+ + + +
7.2.1.7
+
+ +
Use this domain for words referring to making a noise while moving.
+
Classer dans ce champ lexical le vocabulaire désignant le bruit fait en se déplaçant.
+
+
+ + + +
7.2.2
+
+ +
Use the domains in this section for words referring to moving in a direction related to the orientation of the person's body (not in relation to the position of the destination).
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement dans une direction par rapport à son corps (et non par rapport à la destination finale).
+
+
+ + + +
7.2.2.1
+
+ +
Use this domain for words referring to moving in a forward direction--in the same direction the person is facing.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement vers l’avant : dans la direction devant soi.
+
+
+ + + +
7.2.2.2
+
+ +
Use this domain for words referring to moving in a backward direction--the person is facing one direction, but moving toward their back--to move in the opposite direction from the direction the person is facing.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement vers l’arrière : la personne fait face à une direction, mais se déplace dans la direction opposée, dans celle à laquelle elle tourne le dos.
+
+
+ + + +
7.2.2.3
+
+ +
Use this domain for words referring to moving in a sideways direction--the person is facing one direction, but moving toward their side.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement latéral : la personne fait face à une direction, mais se déplace sur le côté.
+
+
+ + + +
7.2.2.4
+
+ +
Use this domain for words referring to moving in an upward direction or to moving to a higher place.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement vers le haut ou dans un endroit plus haut.
+
+
+ + + +
7.2.2.5
+
+ +
Use this domain for words referring to moving in a downward direction or to moving to a lower place.
+
Classer dans ce champ lexical le vocabulaire en rapport avec un déplacement vers le bas ou vers un niveau inférieur.
+
+
+ + + +
7.2.2.5.1
+
+ +
Use this domain for words referring to something falling--for something to move down under the influence of gravity.
+
Classer dans ce champ lexical le vocabulaire concernant une chute : quelque chose se dirige vers le bas à cause de la gravité.
+
+
+ + + +
7.2.2.6
+
+ +
Use this domain for words referring to turning and changing the direction in which one is moving.
+
Classer dans ce champ lexical le vocabulaire associé à un changement de direction.
+
+
+ + + +
7.2.2.7
+
+ +
Use this domain for words referring to continually changing the direction you are facing in until you are once again facing in the same direction, e.g. moving in a circle, moving around something, or rotating.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire un tour complet pour revenir dans la direction où l’on était (ex : tourner en rond, tourner autour de quelque chose).
+
+
+ + + +
7.2.2.8
+
+ +
Use this domain for words related to moving back and forth.
+
Classer dans ce champ lexical le vocabulaire en relation avec l’action de marcher de long en large.
+
+
+ + + +
7.2.2.9
+
+ +
Use this domain for words referring to moving straight without changing direction.
+
Classer dans ce champ lexical le vocabulaire en rapport avec l’action de se déplacer tout droit, sans changement de direction.
+
+
+ + + +
7.2.3
+
+ +
Use this domain for words referring to moving toward, in the direction of, or near something or some place. The words in this domain should refer to moving in the direction of a place, but should not require that the person actually arrived. Some languages (such as German and Polish) distinguish 'go on foot' from 'go in a vehicle'.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de s’avancer, d’aller dans une direction, ou de s’approcher d’une chose ou d’un lieu. Les mots ou expressions de ce champ lexical doivent désigner un mouvement vers un endroit, mais ne doivent pas impliquer que la personne y arrive. Certaines langues (l’allemand ou le polonais par exemple) distinguent l’action d’aller à pied de celle d’aller au moyen d’un véhicule.
+
+
+ + + +
7.2.3.1
+
+ +
Use this domain for words referring to moving away from a place.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de s’éloigner d’un lieu.
+
+
+ + + +
7.2.3.2
+
+ +
Use this domain for words referring to moving away from the speaker. In Australian languages many movement words are marked for direction toward or away from the speaker.
+
Classer dans ce champ lexical le vocabulaire qui signifie se déplacer loin de la personne qui parle. Dans les langues australiennes, il existe de nombreux mots qui indiquent un déplacement dans la direction de celui qui parle ou à l’opposé.
+
+
+ + + +
7.2.3.2.1
+
+ +
Use this domain for words referring to moving toward the speaker.
+
Classer dans ce champ lexical le vocabulaire qui signifie se rapprocher de la personne qui parle.
+
+
+ + + +
7.2.3.3
+
+ +
Use this domain for words referring to moving away from a place.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de partir d’un lieu.
+
+
+ + + +
7.2.3.3.1
+
+ +
Use this domain for words referring to arriving at a place.
+
Classer dans ce champ lexical le vocabulaire désignant l’arrivée dans un lieu.
+
+
+ + + +
7.2.3.4
+
+ +
Use this domain for words related to moving into something, such as a house or an area.
+
Classer dans ce champ lexical le vocabulaire relatif à l’action d’entrer dans un lieu (une maison, un endroit…).
+
+
+ + + +
7.2.3.4.1
+
+ +
Use this domain for words related to moving out of something, such as a house or area.
+
Classer dans ce champ lexical le vocabulaire relatif à l’action de sortir de quelque part (maison, endroit).
+
+
+ + + +
7.2.3.5
+
+ +
Use this domain for words referring to moving past, over, or through something.
+
Classer dans ce champ lexical le vocabulaire désignant le fait de passer à côté, de passer sur ou au travers de quelque chose.
+
+
+ + + +
7.2.3.6
+
+ +
Use this domain for words referring to returning to a place--to go back to a place you earlier left.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de revenir à un endroit que l’on avait quitté.
+
+
+ + + +
7.2.4
+
+ +
Use this domain for words referring to traveling--to move a long distance. The words in this domain may imply that the person has to sleep somewhere other than his home.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’action de voyager, de faire un long déplacement. Cela peut vouloir dire que la personne dorme ailleurs que chez elle.
+
+
+ + + +
7.2.4.1
+
+ +
Use this domain for words related to traveling by land.
+
Classer dans ce champ lexical le vocabulaire associé au fait de voyager par voie terrestre.
+
+
+ + + +
7.2.4.1.1
+
+ +
Use this domain for things used to move.
+
Classer dans ce champ lexical le vocabulaire qui désigne des véhicules et autres moyens de locomotion.
+
+
+ + + +
7.2.4.1.2
+
+ +
Use this domain for words related to railroads.
+
Classer dans ce champ lexical le vocabulaire associé aux chemins de fer.
+
+
+ + + +
7.2.4.2
+
+ +
Use this domain for words related to traveling by water.
+
Classer dans ce champ lexical le vocabulaire associé au fait de voyager par voie fluviale ou maritime.
+
+
+ + + +
7.2.4.2.1
+
+ +
Use this domain for words related to a boat.
+
Classer dans ce champ lexical le vocabulaire associé aux bateaux.
+
+
+ + + +
7.2.4.2.2
+
+ +
Use this domain for words related to swimming.
+
Classer dans ce champ lexical le vocabulaire associé à la nage.
+
+
+ + + +
7.2.4.2.3
+
+ +
Use this domain for words referring to moving under the water.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de se déplacer sous l’eau.
+
+
+ + + +
7.2.4.3
+
+ +
Use this domain for words related to traveling by air.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de voyager en avion ou en hélicoptère.
+
+
+ + + +
7.2.4.4
+
+ +
Use this domain for words related to traveling in space.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de voyager dans l’espace.
+
+
+ + + +
7.2.4.5
+
+ +
Use this domain for words related to permanently leaving your home or country, and for words related to migrating--moving every year to the same places because of the weather and food supplies.
+
Classer dans ce champ lexical le vocabulaire associé au fait de quitter définitivement son domicile ou son pays, et le vocabulaire associé à l’action de transhumer : se déplacer chaque année aux mêmes endroits en fonction des saisons et des sources de nourriture.
+
+
+ + + +
7.2.4.6
+
+ +
Use this domain for words related to the way or route that you take to go somewhere.
+
Classer dans ce champ lexical le vocabulaire concernant une route ou un itinéraire pris pour se rendre quelque part.
+
+
+ + + +
7.2.4.7
+
+ +
Use this domain for words related to losing your way.
+
Classer dans ce champ lexical le vocabulaire associé au fait de perdre son chemin.
+
+
+ + + +
7.2.4.8
+
+ +
Use this domain for words related to a map--a drawing of the world or part of the world.
+
Classer dans ce champ lexical le vocabulaire associé à une carte, un dessin représentant le monde ou une partie du monde.
+
+
+ + + +
7.2.5
+
+ +
Use this domain for words referring to moving with someone.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de se déplacer avec quelqu’un.
+
+
+ + + +
7.2.5.1
+
+ +
Use this domain for words related to going first or going ahead of someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aller en premier ou devant quelqu’un.
+
+
+ + + +
7.2.5.2
+
+ +
Use this domain for words related to following someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de suivre quelqu’un.
+
+
+ + + +
7.2.5.3
+
+ +
Use this domain for words related to guiding someone--to show someone where to go by going ahead of them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de guider quelqu’un, de montrer à quelqu’un où aller en allant devant lui.
+
+
+ + + +
7.2.5.4
+
+ +
Use this domain for words referring to more than one thing moving together.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à plusieurs éléments qui se déplacent ensemble.
+
+
+ + + +
7.2.6
+
+ +
Use this domain for words related to pursuing someone--to follow someone in order to catch them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de poursuivre quelqu’un : le suivre dans le but de l’attraper.
+
+
+ + + +
7.2.6.1
+
+ +
Use this domain for words related to catching someone who is trying to escape.
+
Classer dans ce champ lexical le vocabulaire concernant le fait d’attraper quelqu’un qui tente de s’échapper.
+
+
+ + + +
7.2.6.2
+
+ +
Use this domain for words referring to preventing someone or something from moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’empêcher quelqu’un de bouger.
+
+
+ + + +
7.2.6.3
+
+ +
Use this domain for words related to escaping from danger.
+
Classez dans ce champ lexical le vocabulaire concernant le fait d’échapper au danger.
+
+
+ + + +
7.2.6.4
+
+ +
Use this domain for words related to setting someone free.
+
Classer dans ce champ lexical le vocabulaire en rapport avec la libération de quelqu’un.
+
+
+ + + +
7.2.7
+
+ +
Use this domain for words referring to not moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas bouger.
+
+
+ + + +
7.2.7.1
+
+ +
Use this domain for words referring to stopping moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait de cesser de bouger.
+
+
+ + + +
7.2.7.2
+
+ +
Use this domain for words referring to not moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne plus bouger.
+
+
+ + + +
7.2.7.3
+
+ +
Use this domain for words referring to waiting in a place, waiting to do something, or waiting for something to happen. The basic idea of waiting is for someone to not do anything for a period of time, because he expects something to happen that will cause him to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attendre quelque part, d’attendre quelque chose ou d’attendre que quelque chose se passe. L’idée principale de la notion d’attente est que quelqu’un ne fait rien pendant un certain temps parce qu’il attend que quelque chose se passe et entraîne une action de sa part.
+
+
+ + + +
7.2.8
+
+ +
Use this domain for words related to causing someone to go somewhere.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’envoyer quelqu’un quelque part.
+
+
+ + + +
7.3
+
+ +
Use this domain for general words referring to moving something or someone.
+
Classer dans ce champ lexical les termes génériques associés au déplacement de quelque chose.
+
+
+ + + +
7.3.1
+
+ +
Use this domain for words referring to carrying something--to pick something up and hold it while moving oneself.
+
Classer dans ce champ lexical le vocabulaire associé au fait de transporter quelque chose, de prendre quelque chose et de le tenir en se déplaçant.
+
+
+ + + +
7.3.1.1
+
+ +
Use this domain for words referring to throwing something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de lancer quelque chose.
+
+
+ + + +
7.3.1.2
+
+ +
Use this domain for verbs for catching something that is thrown or dropped
+
Classer dans ce champ lexical les verbes qui expriment l’action d’attraper quelque chose qu’on a lancé ou qui est tombé.
+
+
+ + + +
7.3.1.3
+
+ +
Use this domain for words referring to moving something back and forth.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de bouger quelque chose d’avant en arrière.
+
+
+ + + +
7.3.1.4
+
+ +
Use this domain for words referring to knocking something over so that it falls, and for knocking a container over so that it spills its contents.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire tomber quelque chose ou de heurter une chose dont le contenu se répand.
+
+
+ + + +
7.3.1.5
+
+ +
Use this domain for words related to setting something upright.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre quelque chose d’aplomb.
+
+
+ + + +
7.3.2
+
+ +
Use this domain for general words related to moving something in a direction.
+
Classer dans ce champ lexical les termes génériques relatifs à l’action de déplacer quelque chose dans une direction.
+
+
+ + + +
7.3.2.1
+
+ +
Use this domain for words referring to putting something in front of you or in front of something else.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre devant soi ou devant autre chose.
+
+
+ + + +
7.3.2.2
+
+ +
Use this domain for words referring to putting something in back of you or in back of something else.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre quelque chose derrière soi ou derrière quelque chose d’autre.
+
+
+ + + +
7.3.2.3
+
+ +
Use this domain for words referring to putting something to the side of you.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre quelque chose à côté de soi.
+
+
+ + + +
7.3.2.4
+
+ +
Use this domain for words referring to putting something above you or above something else, putting something on top of something else, or moving something higher than it was.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre quelque chose au-dessus de soi ou de quelque chose d’autre, dessus quelque chose ou de le mettre plus haut.
+
+
+ + + +
7.3.2.4.1
+
+ +
Use this domain for words referring to hanging something, and for words describing something that has been hung.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de suspendre ou de pendre quelque chose.
+
+
+ + + +
7.3.2.5
+
+ +
Use this domain for words referring to putting something lower than you or lower than something else, putting something under something else, or moving something lower than it was.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre quelque chose plus bas que soi ou que quelque chose d’autre, de mettre quelque chose sous quelque chose d’autre ou de mettre quelque chose plus bas.
+
+
+ + + +
7.3.2.6
+
+ +
Use this domain for words referring to putting something inside something else.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre quelque chose dans autre chose.
+
+
+ + + +
7.3.2.7
+
+ +
Use this domain for words referring to taking something out of something else.
+
Classer dans ce champ lexical le vocabulaire associé au fait de retirer quelque chose d’autre chose.
+
+
+ + + +
7.3.2.8
+
+ +
Use this domain for words related to pulling--causing something to move toward you.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de tirer : déplacer quelque chose vers soi.
+
+
+ + + +
7.3.2.9
+
+ +
Use this domain for when someone or something causes something to move away from him.
+
Classer dans ce champ lexical le vocabulaire employé lorsque quelqu’un, ou quelque chose, provoque l’éloignement de quelque chose.
+
+
+ + + +
7.3.3
+
+ +
Use this domain for words referring to taking something or someone somewhere.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’amener quelque chose ou quelqu’un quelque part.
+
+
+ + + +
7.3.3.1
+
+ +
Use this domain for words referring to taking something or someone from its place.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’emmener quelque chose de quelque part.
+
+
+ + + +
7.3.3.2
+
+ +
Use this domain for words referring to moving something back to an original place or person. (Something is in a place, someone (or something) moves it, then someone moves it back to the first place.)
+
Classer dans ce champ lexical le vocabulaire associé à l’action de ramener quelque chose à sa place première ou à quelqu’un. Quelque chose est à un endroit, quelqu’un (ou quelque chose) le déplace, puis quelqu’un le remet là où cela était.
+
+
+ + + +
7.3.3.3
+
+ +
Use this domain for words related to sending something--to cause someone to take something somewhere.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’envoyer quelque chose : faire en sorte que quelqu’un prenne quelque chose quelque part.
+
+
+ + + +
7.3.3.4
+
+ +
Use this domain for words related to chasing or driving people and animals--to cause someone (or an animal) to move.
+
Classer dans ce champ lexical le vocabulaire associé au fait de chasser ou conduire des personnes et des animaux : les faire se déplacer.
+
+
+ + + +
7.3.3.5
+
+ +
Use this domain for words related to driving people and animals--to cause someone (or an animal) to move with you.
+
Classer dans ce champ lexical le vocabulaire relatif au fait de conduire des personnes et des animaux : les faire se déplacer avec soi.
+
+
+ + + +
7.3.4
+
+ +
Use this domain for general words for using the hands to move something.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’usage des mains pour bouger quelque chose.
+
+
+ + + +
7.3.4.1
+
+ +
Use this domain for words referring to touching something with your hand without moving the thing.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de toucher une chose de la main sans la déplacer.
+
+
+ + + +
7.3.4.2
+
+ +
Use this domain for words related to picking something up.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de ramasser quelque chose.
+
+
+ + + +
7.3.4.3
+
+ +
Use this domain for words related to putting something down.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de poser quelque chose.
+
+
+ + + +
7.3.4.4
+
+ +
Use this domain for holding something in the hand.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de tenir quelque chose à la main.
+
+
+ + + +
7.3.4.5
+
+ +
Use this domain for the functions and actions of the hand.
+
Classer dans ce champ lexical le vocabulaire associé aux fonctions et aux mouvements de la main.
+
+
+ + + +
7.3.4.6
+
+ +
Use this domain for words related to keeping something from falling.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’empêcher quelque chose de tomber.
+
+
+ + + +
7.3.4.7
+
+ +
Use this domain for words related to extending something--to move something so that it covers a greater distance or area.
+
Classer dans ce champ lexical le vocabulaire associé à l’extension de quelque chose, au fait d’étendre ou d’étirer une chose pour qu’elle couvre une plus grande zone ou parcoure une plus grande distance.
+
+
+ + + +
7.3.5
+
+ +
Use this domain for turning something--to cause something to change direction, or to cause something to revolve or move in a circle.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire tourner quelque chose ; le faire changer de direction, le faire tourner autour de quelque chose ou lui faire former un cercle.
+
+
+ + + +
7.3.6
+
+ +
Use this domain for words related to opening something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’ouvrir quelque chose.
+
+
+ + + +
7.3.6.1
+
+ +
Use this domain for words related to shutting something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de fermer quelque chose.
+
+
+ + + +
7.3.6.2
+
+ +
Use this domain for words referring to preventing someone or something from moving
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’empêcher quelqu’un ou quelque chose de se déplacer.
+
+
+ + + +
7.3.6.3
+
+ +
Use this domain for words referring to a limit beyond which something may or should not go, and for words referring to imposing a limit.
+
Classer dans ce champ lexical le vocabulaire associé à la limite au-delà de laquelle on ne doit pas ou on ne peut pas aller, et aux mots qui signifient imposer cette limite.
+
+
+ + + +
7.3.7
+
+ +
Use this domain for words related to covering something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de couvrir quelque chose.
+
+
+ + + +
7.3.7.1
+
+ +
Use this domain for words related to uncovering something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de découvrir quelque chose.
+
+
+ + + +
7.3.7.2
+
+ +
Use this domain for words related to wrapping something--to cover something on all sides with something like leaves, cloth, or paper.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’envelopper quelque chose ; le couvrir de tous les côtés avec quelque chose de fin et de souple, avec par exemple des feuilles, du tissu ou du papier.
+
+
+ + + +
7.3.7.3
+
+ +
Use this domain for words related to spreading something--to cover something on all sides with something liquid or sticky like paint or mud.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’étendre quelque chose pour couvrir quelque chose de tous les côtés avec un liquide ou quelque chose de collant tel que de la peinture ou de la boue.
+
+
+ + + +
7.3.8
+
+ +
Use this domain for words referring to moving something in a vehicle.
+
Classer dans ce champ lexical les termes génériques qui signifient déplacer quelque chose dans un véhicule.
+
+
+ + + +
7.4
+
+ +
Use this domain for words related to having something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de posséder quelque chose.
+
+
+ + + +
7.4.1
+
+ +
Use this domain for words referring to giving something to someone, in which there is no transaction of ownership, merely the movement of the thing from one person to another.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de donner quelque chose à quelqu’un, sans transfert de propriété ; il ne s’agit que du passage d’une chose d’une personne à une autre.
+
+
+ + + +
7.4.2
+
+ +
Use this domain for words related to receiving something from someone.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de recevoir quelque chose de quelqu’un.
+
+
+ + + +
7.4.3
+
+ +
Use this domain for words referring to getting something.
+
Classer dans ce champ lexical le vocabulaire associé à l’obtention de quelque chose.
+
+
+ + + +
7.4.4
+
+ +
Use this domain for words related to distributing things to several people.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de distribuer des choses à plusieurs personnes.
+
+
+ + + +
7.4.5
+
+ +
Use this domain for words related to keeping something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de garder quelque chose.
+
+
+ + + +
7.4.5.1
+
+ +
Use this domain for words referring to leaving something or someone in a place and going away.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de laisser quelque chose ou quelqu’un quelque part et de s’en aller.
+
+
+ + + +
7.4.5.2
+
+ +
Use this domain for throwing away something that you no longer want.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de jeter ce qu’on ne veut plus.
+
+
+ + + +
7.4.6
+
+ +
Use this domain for words related to having something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas avoir.
+
+
+ + + +
7.5
+
+ +
Use this domain for words referring to arranging things--to physically move a group of things or people and put them in a pattern.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’arranger les choses, de déplacer plusieurs choses ou personnes pour les disposer selon une certaine disposition.
+
+
+ + + +
7.5.1
+
+ +
Use this domain for words referring to gathering things into a group. The basic idea of this domain involves a situation in which two or more things are not together, and someone moves them so that they are together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de réunir des choses. L’idée principale, dans ce champ lexical, est celle où deux choses, ou plus, ne sont pas ensemble et où quelqu’un les déplace afin de les réunir.
+
+
+ + + +
7.5.1.1
+
+ +
Use this domain for words referring to separating things into groups, and scattering things. The basic idea of this domain involves a situation in which two or more things are together, and someone moves them so that they are no longer together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de séparer les choses en groupes, de les disperser. L’idée principale de ce champ lexical est le cas où deux choses, ou plus, sont réunies et quelqu’un les déplace de façon à ce qu’elles ne soient plus ensemble.
+
+
+ + + +
7.5.1.2
+
+ +
Use this domain for words related to including something in a group.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’inclure quelque chose dans un groupe.
+
+
+ + + +
7.5.1.3
+
+ +
Use this domain for words that describe a member of a group that is different or special.
+
Classer dans ce champ lexical le vocabulaire associé au fait de qualifier un membre d’un groupe qui est différent ou particulier.
+
+
+ + + +
7.5.2
+
+ +
Use this domain for words related to joining two or more things together.
+
Classer dans ce champ lexical le vocabulaire associé au fait de réunir deux choses ou plus.
+
+
+ + + +
7.5.2.1
+
+ +
Use this domain for words related to a linking or connecting things together--to put something like a road, pipe, or wire between things so that people or things can move between them.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de relier ou de connecter des choses, par exemple des routes, des tuyaux, des fils électriques, afin que la circulation entre elles puisse se faire.
+
+
+ + + +
7.5.2.2
+
+ +
Use this domain for words referring to two or more things cohering or sticking together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de coller ou de faire adhérer deux choses ou plus.
+
+
+ + + +
7.5.2.3
+
+ +
Use this domain for words related to adding something to another thing.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’ajouter une chose à une autre.
+
+
+ + + +
7.5.2.4
+
+ +
Use this domain for words related to removing part of something, taking something apart, and things coming apart.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’enlever des parties de quelque chose, de démonter quelque chose, ainsi qu’aux choses séparables.
+
+
+ + + +
7.5.3
+
+ +
Use this domain for words related to mixing things together--to put two or more different kinds of substances, like liquids or cooking ingredients, together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mélanger des choses : mettre ensemble plusieurs types de substances différentes (liquides, ingrédients…).
+
+
+ + + +
7.5.3.1
+
+ +
Use this domain for words related to being pure--words describing something (like water, food, or air) that does not have anything bad in it; or unmixed--words describing something that is only one thing and has not been mixed with something else.
+
Classer dans ce champ lexical le vocabulaire associé à la pureté [mots décrivant quelque chose (eau, nourriture, air…) qui ne contient rien de mauvais], ou à l’absence de mélange (mots décrivant quelque chose qui n’est fait que d’un seul élément et n’est pas mélangé à autre chose).
+
+
+ + + +
7.5.4
+
+ +
Use this domain for words related to tying things together.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attacher des choses ensemble.
+
+
+ + + +
7.5.4.1
+
+ +
Use this domain for words referring to rope, string, and other things used to tie things together.
+
Classer dans ce champ lexical le vocabulaire faisant référence à une corde, une ficelle, et à d’autres moyens utilisés pour attacher des choses ensemble.
+
+
+ + + +
7.5.4.2
+
+ +
Use this domain for words related to becoming tangled--when something long and thin, such as rope, string, thread, hair, grass, or vines, becomes disorganized, twisted, or knotted, so that it is hard to separate it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de s’enchevêtrer : lorsque quelque chose de long et fin, tel que corde, ficelle, fils, cheveux, herbe, ou plantes grimpantes, se désorganise, s’entortille, ou se noue, si bien, qu’il est difficile d’en séparer les éléments.
+
+
+ + + +
7.5.5
+
+ +
Use this domain for words referring to organizing things, people, events, and ideas--to think about and decide on the pattern a group of things should be arranged in, and then doing whatever is necessary to arrange them so that they can be used for some purpose. This domain is like the domain 'Arrange' except that 'Arrange' emphasizes physically moving the things, and the domain 'Organize' emphasizes the logical system. 'Organize' does not require that the things be moved, only that the logical pattern is specified.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’organisation de choses, de personnes, d’événements, et d’idées : dans le but de décider, après réflexion, sous quelle forme organiser un ensemble afin de pouvoir ensuite lui donner telle ou telle utilisation. Ce champ lexical est semblable au champ lexical « Arranger » sauf que celui-ci met l’accent sur le déplacement physique des choses, tandis que le champ « Organiser » met l’accent sur la méthode logique. « Organiser » ne requiert pas que les choses soient déplacées, mais que seule la structure logique soit spécifiée.
+
+
+ + + +
7.5.5.1
+
+ +
Use this domain for words related to things becoming disorganized.
+
Classer dans ce champ lexical le vocabulaire associé aux choses qui se désorganisent.
+
+
+ + + +
7.5.6
+
+ +
Use this domain for words referring to substituting something for something else--to move something and put something else in its place.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de déplacer quelque chose pour lui substituer quelque chose d’autre.
+
+
+ + + +
7.5.7
+
+ +
Use this domain for words referring to multiple things moving.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au déplacement de choses multiples.
+
+
+ + + +
7.5.8
+
+ +
Use this domain for words related to being simple or complicated--words describing the organization of a group of things.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être simple ou compliqué : des mots ou expressions qui décrivent l’organisation d’un ensemble de choses.
+
+
+ + + +
7.5.9
+
+ +
Use this domain for words related to putting something somewhere.
+
Classer dans ce champ lexical le vocabulaire associé au fait de poser quelque chose quelque part.
+
+
+ + + +
7.5.9.1
+
+ +
Use this domain for words related to putting lots of things on something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre beaucoup de choses sur quelque chose.
+
+
+ + + +
7.5.9.2
+
+ +
Use this domain for words related to filling a container or covering an area with something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remplir quelque chose ou de recouvrir une surface avec quelque chose.
+
+
+ + + +
7.6
+
+ +
Use this domain for words related to hiding things so that they cannot be seen or found, and for hiding oneself.
+
Classer dans ce champ lexical le vocabulaire associé au fait de cacher des choses de sorte qu’elles ne puissent pas être vues ou trouvées, et au fait de se cacher soi-même.
+
+
+ + + +
7.6.1
+
+ +
Use this domain for words related to searching for something that has been hidden or lost.
+
Classer dans ce champ lexical le vocabulaire associé au fait de chercher quelque chose qui a été caché ou perdu.
+
+
+ + + +
7.6.2
+
+ +
Use this domain for words related to finding something that has been hidden or lost.
+
Classer dans ce champ lexical le vocabulaire associé au fait de trouver quelque chose qui a été caché ou perdu.
+
+
+ + + +
7.6.3
+
+ +
Use this domain for words referring to putting something in a place and not being able to find it again, or for when someone else moves something without your knowledge so that you cannot find it.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de mettre quelque chose dans un lieu et ne pas être capable de le retrouver, ou au fait que quelqu’un d’autre déplace quelque chose sans que vous le sachiez si bien que vous ne pouvez pas le retrouver.
+
+
+ + + +
7.7
+
+ +
Use this domain for general words referring to making a physical impact on something, including the words for the action itself and the result of the action.
+
Classer dans ce champ lexical les termes génériques qui font référence au fait de produire un impact physique sur quelque chose, y compris les mots ou expressions pour l’action elle-même et le résultat de l’action.
+
+
+ + + +
7.7.1
+
+ +
Use this domain for words related to hitting something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de frapper ou heurter quelque chose.
+
+
+ + + +
7.7.2
+
+ +
Use this domain for words referring to aiming at a target, and for hitting or missing the target.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de viser une cible, et de frapper ou de rater la cible.
+
+
+ + + +
7.7.3
+
+ +
Use this domain for words referring to kicking--to hit something with your foot. The words in this domain may be distinguished by the way in which the foot moves, either in a swinging motion, or by first bending the leg and then quickly straightening it. They may also be distinguished by whether the foot moves horizontally or vertically, whether the effect is to move something or damage it, or how hard the person kicks.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de donner un coup de pied, de frapper quelque chose avec le pied. La langue peut opérer une distinction selon la manière avec laquelle le pied se déplace, que ce soit avec un mouvement de balancier, ou que ce soit en pliant la jambe, puis en la tendant rapidement. Elle peut aussi faire une distinction dans la manière dont le pied se déplace, horizontalement ou verticalement ou encore selon le but du geste, qu’il soit de déplacer quelque chose ou de l’endommager. Le vocabulaire peut aussi exprimer la force du coup de pied.
+
+
+ + + +
7.7.4
+
+ +
Use this domain for words referring to pressing something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de presser quelque chose.
+
+
+ + + +
7.7.5
+
+ +
Use this domain for words referring to rubbing--to move something smooth against something else, in order to make it smooth or clean.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de frotter : déplacer doucement quelque chose contre autre chose, afin de le rendre lisse, doux ou propre.
+
+
+ + + +
7.7.6
+
+ +
Use this domain for words referring to grinding--to rub something rough against something else, while applying force, in order to break it or remove its surface.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de moudre, concasser, broyer : frotter quelque chose avec force contre autre chose afin de le casser.
+
+
+ + + +
7.7.7
+
+ +
Use this domain for words related to making a mark on something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire une marque sur quelque chose.
+
+
+ + + +
7.8
+
+ +
Use this domain for words referring to dividing something into parts or pieces, perhaps with the added idea of using care, or into a certain number of parts.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de diviser quelque chose en morceaux ou en pièces, éventuellement avec l’idée de le faire avec soin ou en un certain nombre de pièces.
+
+
+ + + +
7.8.1
+
+ +
Use this domain for words referring breaking something into pieces, perhaps with the added idea of doing it accidentally or without being careful.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de briser quelque chose en plusieurs morceaux, éventuellement avec l’idée de l’avoir fait accidentellement ou sans faire attention.
+
+
+ + + +
7.8.2
+
+ +
Use this domain for words referring to a crack--a partial break in something that does not entirely divide it in pieces.
+
Classer dans ce champ lexical le vocabulaire associé à une fissure : quelque chose dont la cassure n’est pas complète, dont les morceaux ne se détachent pas.
+
+
+ + + +
7.8.3
+
+ +
Use this domain for words related to cutting something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de couper quelque chose.
+
+
+ + + +
7.8.4
+
+ +
Use this domain for words related to tearing or ripping something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de déchirer ou d’arracher quelque chose.
+
+
+ + + +
7.8.5
+
+ +
Use this domain for words related to making a hole or opening in something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire un trou ou une ouverture dans quelque chose.
+
+
+ + + +
7.8.6
+
+ +
Use this domain for words related to digging in the ground.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de creuser dans le sol.
+
+
+ + + +
7.9
+
+ +
Use this domain for words related to something breaking or wearing out, especially for things that people make and use.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de casser ou d’user quelque chose, notamment des objets fabriqués dont on se sert.
+
+
+ + + +
7.9.1
+
+ +
Use this domain for words referring to damaging something--to do something bad to something, but not completely ruin it so that it can't be used any more.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’endommager quelque chose : l’abîmer sans le détruire totalement de sorte qu’il peut encore servir.
+
+
+ + + +
7.9.2
+
+ +
Use this domain for words referring to tearing down buildings and other structures.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de démolir des bâtiments ou autres structures
+
+
+ + + +
7.9.3
+
+ +
Use this domain for words referring to destroying something--to damage something so that it is beyond repair and cannot be used.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de détruire quelque chose : l’endommager de sorte que cela ne soit plus réparable et ne puisse plus être utilisé.
+
+
+ + + +
7.9.4
+
+ +
Use this domain for words related to repairing something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de réparer quelque chose.
+
+
+ + + +
8
+
+ +
Use this domain for general words refer to the state or condition of something.
+
Classer dans ce champ lexical les termes génériques en rapport avec l’état ou la condition de quelque chose.
+
+
+ + + +
8.1
+
+ +
Use this domain for general words referring to the amount or quantity of something.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le montant ou la quantité de quelque chose.
+
+
+ + + +
8.1.1
+
+ +
Use this domain for words related to numbers. Every language has a word for 'one', and a word for 'two'. These two numbers often have special words. So we have included a separate domain for 'one' and 'two'. In addition the numbers form a series (one, two, three...). Most languages have more than one series of numbers (first, second, third...). So we have also included a domain for each series of numbers that most languages have. Your language may have other series of numbers. Put them in the domain 'Number series'.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les nombres. Toutes les langues ont des mots pour « un » et pour « deux ». Ces deux chiffres sont souvent désignés par des termes spéciaux. C’est pourquoi nous avons inclus un champ lexical séparé pour « un » et « deux ». En outre, les nombres forment une suite (un, deux, trois...). La plupart des langues ont plusieurs suites de nombres (premier, second, troisième...). C’est pourquoi nous avons aussi inclus un champ lexical pour chacune de celles qui existent dans la plupart des langues. Votre langue peut avoir d’autres suites de nombres. Vous les mettrez dans le champ lexical « Autres mots indiquant des nombres ».
+
+
+ + + +
8.1.1.1
+
+ +
Use this domain for words related to the cardinal numbers (one, two, three)--the numbers used to count.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les nombres cardinaux (un, deux, trois), les nombres qui servent à compter.
+
+
+ + + +
8.1.1.1.1
+
+ +
Use this domain for words related to the number one. It appears that every language has a word for 'one' and 'two', but not every language has a word for the numbers higher than two. Many languages have several words that mean 'one'.
+
Classer dans ce champ lexical le vocabulaire associé au chiffre un. Il semble que toutes les langues ont un mot pour « un » et « deux », mais toutes n’ont pas de terme pour les nombres supérieurs à deux. Par contre, beaucoup de langues ont plusieurs mots qui signifient « un ».
+
+
+ + + +
8.1.1.1.2
+
+ +
Use this domain for words related to the number two.
+
Classer dans ce champ lexical le vocabulaire associé au nombre deux.
+
+
+ + + +
8.1.1.2
+
+ +
Use this domain for words related to the ordinal numbers (first, second, third)--the numbers used to indicate the order of something in a series, such as "the first child".
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les nombres ordinaux (premier, second, troisième), les nombres utilisés pour indiquer l’ordre de quelque chose dans une série, tel que « le premier enfant ».
+
+
+ + + +
8.1.1.3
+
+ +
Use this domain for numbers that refer to the number of times something happens or is done. These numbers may be adverbs as in English (twice) or in some languages they may be verbs (to do something two times).
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le nombre de fois où quelque chose se produit ou est fait. Ces nombres peuvent être des adverbes comme en anglais (twice), ou, dans d’autres langues, des verbes (faire quelque chose deux fois).
+
+
+ + + +
8.1.1.4
+
+ +
Use this domain for words related to multiples of something (single, double, triple).
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les multiples de quelque chose (unique, double, triple).
+
+
+ + + +
8.1.1.5
+
+ +
Use this domain for words related to a group of a particular number of things or people (solo, duo, trio; alone, in threes).
+
Classer dans ce champ lexical les mots ou expressions en rapport avec un groupe constitué d’un nombre spécifique de choses ou de personnes (solo, duo, trio ; seul, par trois).
+
+
+ + + +
8.1.1.6
+
+ +
Use this domain for the numbers that refer to a fraction of something.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec une fraction de quelque chose.
+
+
+ + + +
8.1.1.7
+
+ +
Use this domain for other series of numbers that are different from those in the previous domains.
+
Classer dans ce champ lexical le vocabulaire associé à des mots indiquant des nombres qui n’entrent pas dans les champs lexicaux précédents.
+
+
+ + + +
8.1.2
+
+ +
Use this domain for words related to counting--to say the numbers in order, or to use numbers to find an amount.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le fait de compter : dire les nombres dans l’ordre, ou utiliser les nombres pour trouver un montant ou une quantité.
+
+
+ + + +
8.1.2.1
+
+ +
Use this domain for words related to mathematics and arithmetic--the study of numbers.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les mathématiques et l’arithmétique (l’étude des nombres).
+
+
+ + + +
8.1.2.2
+
+ +
Use this domain for words related to adding two numbers together.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec l’addition de deux chiffres entre eux.
+
+
+ + + +
8.1.2.3
+
+ +
Use this domain for words related to subtracting one number from another.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la soustraction d’un nombre à un autre.
+
+
+ + + +
8.1.2.4
+
+ +
Use this domain for words related to multiplying one number times another.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la multiplication d’un nombre par un autre.
+
+
+ + + +
8.1.2.5
+
+ +
Use this domain for words related to dividing one number by another number.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la division d’un nombre par un autre.
+
+
+ + + +
8.1.3
+
+ +
Use this domain for words and affixes that indicate that there is more than one of something. Some languages, such as Indo-European languages, indicate plural with an affix. Other languages, such as Austronesian languages, use a separate word. Some languages also have words or affixes that indicate that there are two of something.
+
Classer dans ce champ lexical les mots, expressions et affixes qui indiquent qu’il y a plus d'un exemplaire d’une chose. Dans certaines langues, telles que les langues indo-européennes, le pluriel est indiqué par un affixe. Dans d’autres langues, telles que les langues austronésiennes, il est indiqué par un mot distinct. Certaines langues ont des mots ou des affixes qui indiquent qu’il y a deux exemplaires d’une chose.
+
+
+ + + +
8.1.3.1
+
+ +
Use this domain for words indicating that there are many things or people, or that there is much of something.
+
Classer dans ce champ lexical les mots indiquant qu’il y a beaucoup de choses ou de monde.
+
+
+ + + +
8.1.3.2
+
+ +
Use this domain for words related there being few or little of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait qu’il y a peu ou un petit nombre de quelque chose.
+
+
+ + + +
8.1.3.3
+
+ +
Use this domain for words that refer to a group of things.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un ensemble de choses.
+
+
+ + + +
8.1.4
+
+ +
Use this domain for words related to there being more of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait qu’il y a plus de quelque chose.
+
+
+ + + +
8.1.4.1
+
+ +
Use this domain for words that indicate that the number or amount of something is less than the number or amount of another thing.
+
Classer dans ce champ lexical le vocabulaire associé au fait qu’un nombre ou une quantité de quelque chose est moins grand que le nombre ou la quantité d'autre chose.
+
+
+ + + +
8.1.4.2
+
+ +
Use this domain for words related to something increasing in number or amount--to be more than before.
+
Classer dans ce champ lexical le vocabulaire associé aux choses dont le nombre ou la quantité augmente, qui sont plus importantes qu’avant.
+
+
+ + + +
8.1.4.3
+
+ +
Use this domain for words related to something decreasing in number or amount--to be less than before.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui diminue en nombre ou en quantité : dont on a moins qu’avant.
+
+
+ + + +
8.1.5
+
+ +
Use this domain for words related to all.
+
Classer dans ce champ lexical le vocabulaire associé à tout ou tous.
+
+
+ + + +
8.1.5.1
+
+ +
Use this domain for words related to some--a number or amount of things or people when the number is not stated; an indefinite number or amount.
+
Classer dans ce champ lexical le vocabulaire qui indique un certain nombre de choses ou de personnes ou une quantité qui ne sont pas précisés : un nombre ou une quantité indéfinis.
+
+
+ + + +
8.1.5.2
+
+ +
Use this domain for words that nothing, no one, never, and nowhere.
+
Classer dans ce champ lexical le vocabulaire qui désigne rien, aucun, personne, jamais, nulle part.
+
+
+ + + +
8.1.5.3
+
+ +
Use this domain for words referring to both of two things.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à deux choses à la fois.
+
+
+ + + +
8.1.5.4
+
+ +
Use this domain for words related to most--more than half and less than all of something.
+
Classer dans ce champ lexical le vocabulaire qui signifie la plupart : plus que la moitié ou moins que la totalité de quelque chose.
+
+
+ + + +
8.1.5.5
+
+ +
Use this domain for words related to the most--the largest number or amount; or the least--the smallest number or amount. Most/least may refer to the largest/smallest number possible or needed. If there are several groups being counted, most/least may refer to the largest/smallest group.
+
Classer dans ce champ lexical le vocabulaire associé au superlatif : le plus grand nombre, la plus grande quantité,le plus petit nombre ou la plus petite quantité. Le plus ou le moins peut désigner le plus grand ou le plus petit nombre possible ou nécessaire. S’il y a plusieurs groupes qui sont comptés, plus ou moins peut désigner le plus grand ou le plus petit groupe.
+
+
+ + + +
8.1.5.6
+
+ +
Use this domain for words related to a number or amount that is almost the same as another number.
+
Classer dans ce champ lexical le vocabulaire associé à des nombres, des montants ou des quantités presque identiques.
+
+
+ + + +
8.1.5.7
+
+ +
Use this domain for words referring to only a particular number or amount of people or things--no more than one, or no more than a particular number or amount.
+
Classer dans ce champ lexical le vocabulaire désignant un nombre défini de personnes ou de choses : pas plus qu’un, ou pas plus qu’un nombre ou une somme défini(e).
+
+
+ + + +
8.1.5.8
+
+ +
Use this domain for words that indicate whether a number or amount is exact--not more and not less.
+
Classer dans ce champ lexical le vocabulaire indiquant si un nombre ou une somme est exacte : pas plus et pas moins.
+
+
+ + + +
8.1.5.8.1
+
+ +
Use this domain for words that indicate whether a number or amount is approximate.
+
Classer dans ce champ lexical le vocabulaire indiquant si un nombre ou une somme est approximatif.
+
+
+ + + +
8.1.5.9
+
+ +
Use this domain for words related to an average number.
+
Classer dans ce champ lexical le vocabulaire associé à un nombre moyen.
+
+
+ + + +
8.1.6
+
+ +
Use this domain for words describing a whole thing--all of something with no parts missing.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la totalité de quelque chose : la totalité sans rien oublier.
+
+
+ + + +
8.1.6.1
+
+ +
Many things have parts. Use this domain for words referring to a part of something, and for words that express the idea that something has parts, that something is a part of something, or that link the whole with a part.
+
Beaucoup de choses sont composées de plusieurs parties. Classer dans ce champ lexical le vocabulaire qui fait référence à une partie de quelque chose ; également celui qui exprime l’idée que quelque chose comporte des parties, que quelque chose est une partie d’autre chose ou relie la totalité à une partie.
+
+
+ + + +
8.1.6.2
+
+ +
Use this domain for words referring to a part of something that has been broken or cut off.
+
Classer dans ce champ lexical le vocabulaire désignant un élément de quelque chose qui a été cassé ou coupé.
+
+
+ + + +
8.1.7
+
+ +
Use this domain for words related to being or having enough--to have as much of something or as many of something as you need or want.
+
Classer dans ce champ lexical le vocabulaire désignant le fait d’être assez ou d’avoir assez, c’est-à-dire d’avoir autant que l’on a besoin ou que l’on veut.
+
+
+ + + +
8.1.7.1
+
+ +
Use this domain for words related to having extra--to have more than enough or more than what you need.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir plus : plus qu'assez ou plus que ce dont on a besoin.
+
+
+ + + +
8.1.7.2
+
+ +
Use this domain for words related to having insufficient--to not have enough.
+
Classer dans ce champ lexical le vocabulaire associé au fait de manquer : ne pas avoir assez.
+
+
+ + + +
8.1.7.3
+
+ +
Use this domain for words related to needing something for some purpose.
+
Classer dans ce champ lexical le vocabulaire désignant le fait d’avoir besoin de quelque chose dans un but précis.
+
+
+ + + +
8.1.7.4
+
+ +
Use this domain for words related to the remainder of something--the part or amount of something that remains behind after the other parts have been taken away. Something can be left because everything else has been used or eaten, or everything else has been destroyed or burned.
+
Classer dans ce champ lexical le vocabulaire associé au reste de quelque chose : la partie ou la quantité qui reste après que les autres parties ont été ôtées. Quelque chose qui peut être laissé parce que tout le reste a été utilisé ou mangé, ou bien a été détruit ou brûlé.
+
+
+ + + +
8.1.8
+
+ +
Use this domain for words referring to a container being full of something.
+
Classer dans ce champ lexical le vocabulaire relatif au fait qu'un contenant est plein.
+
+
+ + + +
8.1.8.1
+
+ +
Use this domain for words referring to being empty.
+
Classer dans ce champ lexical le vocabulaire qui désigne le fait d'être vide.
+
+
+ + + +
8.2
+
+ +
Use this domain for words describing something that is big.
+
Classez dans ce champ lexical les mots ou expressions décrivant quelque chose de gros ou de grand
+
+
+ + + +
8.2.1
+
+ +
Use this domain for words referring to being small.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être petit.
+
+
+ + + +
8.2.2
+
+ +
Use this domain for words related to being long. In many languages there is more than one system of measuring length. These systems may be used for different purposes or in different jobs. For instance measuring the length of an object may use different words than measuring the distance a person travels.
+
Classer dans ce champ lexical le vocabulaire associé à la longueur. Dans de nombreuses langues, il y a plusieurs systèmes pour mesurer la longueur. Ces systèmes peuvent avoir des usages différents, ou être utilisés dans différents métiers. Par exemple, on utilisera peut-être des mots différents pour mesurer la longueur d'un objet et la distance parcourue lors d'un voyage.
+
+
+ + + +
8.2.2.1
+
+ +
Use this domain for words related to being short in length.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être court.
+
+
+ + + +
8.2.2.2
+
+ +
Use this domain for words related to being tall--a word describing something that is big from the top to the bottom.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être grand de taille : être grand du haut jusqu'en bas.
+
+
+ + + +
8.2.2.3
+
+ +
Use this domain for words related to being short in height.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être de petite taille.
+
+
+ + + +
8.2.3
+
+ +
Use this domain for words referring to being thick.
+
Classer dans ce champ lexical le vocabulaire se rapportant à l’épaisseur.
+
+
+ + + +
8.2.3.1
+
+ +
Use this domain for words describing something that is thin.
+
Classez dans ce champ lexical les mots et expressions décrivant quelque chose de mince.
+
+
+ + + +
8.2.3.2
+
+ +
Use this domain for words describing a person or animal who is fat.
+
Classez dans ce champ lexical les mots et expressions décrivant une personne forte ou un animal gras ?
+
+
+ + + +
8.2.3.3
+
+ +
Use this domain for words describing a person or animal who is thin.
+
Classer dans ce champ lexical les mots et expressions décrivant une personne ou un animal mince ?
+
+
+ + + +
8.2.4
+
+ +
Use this domain for words related to being wide--a word describing something like a road or river that is far from one side to the other side.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être large : un mot servant à décrire des espaces comme une route ou un fleuve dont les deux côtés ou les deux rives sont éloignés l’un(e) de l’autre.
+
+
+ + + +
8.2.4.1
+
+ +
Use this domain for words related to being narrow.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être étroit.
+
+
+ + + +
8.2.5
+
+ +
Use this domain for words describing a big area.
+
Classer dans ce champ lexical le vocabulaire décrivant une grande surface.
+
+
+ + + +
8.2.5.1
+
+ +
Use this domain for words referring to the volume of something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au volume de quelque chose.
+
+
+ + + +
8.2.6
+
+ +
Use this domain for words referring to the distance between two things.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la distance entre deux choses.
+
+
+ + + +
8.2.6.1
+
+ +
Use this domain for words indicating that something is far from something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est loin d’autre chose.
+
+
+ + + +
8.2.6.2
+
+ +
Use this domain for words indicating that something is near something else.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose est proche d’une autre.
+
+
+ + + +
8.2.6.3
+
+ +
Use this domain for words that express the idea that something is high.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’idée que quelque chose est haut.
+
+
+ + + +
8.2.6.4
+
+ +
Use this domain for words indicating that something is low--in the air but not high above the ground.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est bas : pas très haut au-dessus du sol.
+
+
+ + + +
8.2.6.5
+
+ +
Use this domain for words related to being deep or shallow--how far something such as a hole extends below the ground or other surface, or how far something is below the surface of the water.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être profond ou peu profond : dans quelle mesure une chose telle qu’un trou s’enfonce-t-elle dans la terre ou dans une autre surface, ou à quel niveau une chose se situe-t-elle sous la surface de l’eau.
+
+
+ + + +
8.2.7
+
+ +
Use this domain for words referring to something fitting--when something is not too big or too small, but just right.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à quelque chose qui va bien : lorsque quelque chose n'est ni trop grand ni trop petit, mais juste à la bonne taille.
+
+
+ + + +
8.2.7.1
+
+ +
Use this domain for words referring to being tight--when something is too small.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d'être serré : lorsque quelque chose est trop petit.
+
+
+ + + +
8.2.7.2
+
+ +
Use this domain for words referring to being loose--when something is too big.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être ample : lorsque quelque chose est trop grand.
+
+
+ + + +
8.2.7.3
+
+ +
Use this domain for words referring to being wedged in or stuck in a hole.
+
Classer dans ce champ lexical le vocabulaire qui désigne le fait d'être coincé ou bloqué dans un trou.
+
+
+ + + +
8.2.8
+
+ +
Use this domain for words related to measuring something--to find out the size, length, weight, or amount of something.
+
Classer dans ce champ lexical le vocabulaire associé à l'action de mesurer, de chercher à connaître la taille, la longueur, le poids, ou la quantité de quelque chose.
+
+
+ + + +
8.2.9
+
+ +
Use this domain for words related to weighing something.
+
Classer dans ce champ lexical le vocabulaire associé à l'action de peser.
+
+
+ + + +
8.2.9.1
+
+ +
Use this domain for words related to being heavy.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être lourd.
+
+
+ + + +
8.2.9.2
+
+ +
Use this domain for words related to being light in weight.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir un poids faible.
+
+
+ + + +
8.3
+
+ +
Use this domain for general words referring to the quality or condition of something.
+
Classer dans ce champ lexical les termes génériques qui font référence à la qualité ou à l'état de quelque chose.
+
+
+ + + +
8.3.1
+
+ +
Use this domain for general words referring to the shape of something, and for general words referring to changing the shape of something.
+
Classer dans ce champ lexical les termes génériques qui font référence à la forme de quelque chose, et ceux qui désignent le fait de modifier la forme de quelque chose.
+
+
+ + + +
8.3.1.1
+
+ +
Use this domain for words referring to a point--a small mark such as might be made by a pointed object.
+
Classer dans ce champ lexical les mots faisant référence à un point, une petite marque telle que celle que pourrait faire un objet pointu.
+
+
+ + + +
8.3.1.2
+
+ +
Use this domain for words referring to a line.
+
Classer dans ce champ lexical les mots faisant référence à une ligne.
+
+
+ + + +
8.3.1.3
+
+ +
Use this domain for words referring to being straight.
+
Classer dans ce champ lexical les mots désignant quelque chose de droit.
+
+
+ + + +
8.3.1.3.1
+
+ +
Use this domain for words describing something that is flat--having a surface that is even. A board or wall is flat when its surface is even and it does not bend.
+
Classer dans ce champ lexical le vocabulaire décrivant quelque chose de plat : qui a une surface lisse et qui n'est pas courbé.
+
+
+ + + +
8.3.1.4
+
+ +
Use this domain for words describing a horizontal orientation in relation to the ground or something that is level--a flat surface that does not rise in any direction. A person is horizontal when he is sleeping. A field is level when it is not on a hill and it has no uneven areas in it.
+
Classer dans ce champ lexical le vocabulaire décrivant quelqu’un ou quelque chose en position horizontale par rapport au sol ou à un niveau : une surface plane qui n’est pas inclinée. Une personne est en position horizontale lorsqu’elle dort. Un terrain est plat lorsqu’il n’est pas situé sur une colline et ne présente pas de bosses.
+
+
+ + + +
8.3.1.4.1
+
+ +
Use this domain for words describing a vertical orientation in relation to the ground. A person is vertical when he is standing.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un ou quelque chose en position verticale par rapport au sol. Une personne est en position verticale lorsqu’elle se tient debout.
+
+
+ + + +
8.3.1.4.2
+
+ +
Use this domain for words describing a leaning orientation in relation to the ground, or a surface that is sloping.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un ou quelque chose en position inclinée par rapport au sol ou une surface en pente.
+
+
+ + + +
8.3.1.5
+
+ +
Use this domain for words referring to bending something and for words that describe something that is bent or curved.
+
Classer dans ce champ lexical le vocabulaire qui est associé à une chose courbée ou que l’on courbe.
+
+
+ + + +
8.3.1.5.1
+
+ +
Use this domain for words referring to rolling something up.
+
Classer dans ce champ lexical le vocabulaire qui est associé au fait d’enrouler quelque chose.
+
+
+ + + +
8.3.1.5.2
+
+ +
Use this domain for words referring to twisting something--to take something long and turn one end one way and the other end the other way.
+
Classer dans ce champ lexical le vocabulaire qui est associé au fait de tordre quelque chose : prendre un objet en longueur et tourner une extrémité dans un sens et l’autre extrémité dans l’autre sens.
+
+
+ + + +
8.3.1.5.3
+
+ +
Use this domain for words referring to folding something.
+
Classer dans ce champ lexical le vocabulaire qui est associé au fait de plier quelque chose.
+
+
+ + + +
8.3.1.6
+
+ +
Use this domain for words referring to being round.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à quelque chose de rond.
+
+
+ + + +
8.3.1.6.1
+
+ +
Use this domain for words describing something that is concave--extending inward in shape away from the viewer. The inside of a bowl is concave in shape.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de concave : qui présente une surface courbe en creux. L’intérieur d’un bol est de forme concave.
+
+
+ + + +
8.3.1.6.2
+
+ +
Use this domain for words describing something that is convex--extending outward in shape toward the viewer.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de convexe : qui est saillant vers l’observateur.
+
+
+ + + +
8.3.1.6.3
+
+ +
Use this domain for words describing something that is hollow--empty on the inside.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de creux : vide à l’intérieur.
+
+
+ + + +
8.3.1.7
+
+ +
Use this domain for words referring to being square.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de carré.
+
+
+ + + +
8.3.1.8
+
+ +
Use this domain for words that refer to a pattern--a regular arrangement of shapes.
+
Classer dans ce champ lexical le vocabulaire associé à un modèle et à un motif : une disposition régulière de formes.
+
+
+ + + +
8.3.1.8.1
+
+ +
Use this domain for words that describe something that is symmetrical--having the same shape on both sides
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de symétrique : qui a la même forme des deux côtés.
+
+
+ + + +
8.3.1.9
+
+ +
Use this domain for words referring to stretching something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’étirer quelque chose.
+
+
+ + + +
8.3.2
+
+ +
Use this domain for general words referring to the texture of something--how the surface of something feels when you touch it.
+
Classer dans ce champ lexical les termes génériques associés à la texture de quelque chose, à la sensation éprouvée au contact d’une surface.
+
+
+ + + +
8.3.2.1
+
+ +
Use this domain for words referring to being smooth.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être doux.
+
+
+ + + +
8.3.2.2
+
+ +
Use this domain for words referring to being rough.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être rugueux.
+
+
+ + + +
8.3.2.3
+
+ +
Use this domain for words describing something that is sharp.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de tranchant.
+
+
+ + + +
8.3.2.3.1
+
+ +
Use this domain for words describing something that is pointed.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de pointu.
+
+
+ + + +
8.3.2.4
+
+ +
Use this domain for words describing something that is blunt.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’émoussé.
+
+
+ + + +
8.3.2.5
+
+ +
Use this domain for words related to a furrow--a long mark cut into the surface of something, such as the furrow made by a plow, or a long cut made by a knife.
+
Classer dans ce champ lexical le vocabulaire associé à une longue marque à la surface de quelque chose, comme le sillon creusé par une charrue, ou une longue incision faite par un couteau.
+
+
+ + + +
8.3.3
+
+ +
Use this domain for words related to light.
+
Classer dans ce champ lexical le vocabulaire associé à lumière.
+
+
+ + + +
8.3.3.1
+
+ +
Use this domain for words related to a light source shining--for something to make light.
+
Classer dans ce champ lexical le vocabulaire associé à une source de lumière qui brille.
+
+
+ + + +
8.3.3.1.1
+
+ +
Use this domain for words related to a source of light--something that makes or gives light.
+
Classer dans ce champ lexical le vocabulaire associé à une source de lumière : quelque chose qui produit ou donne de la lumière.
+
+
+ + + +
8.3.3.1.2
+
+ +
Use this domain for words describing something that is bright.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de lumineux.
+
+
+ + + +
8.3.3.2
+
+ +
Use this domain for words describing something that is dark--a place where there is little or no light.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de sombre : un lieu où il y a peu ou pas de lumière.
+
+
+ + + +
8.3.3.2.1
+
+ +
Use this domain for words related to a shadow--the area on the ground where the light does not shine because something is in the way. For instance if the sun +(or another light) is shining on an object, the area behind the object is in shadow (dark).
+
Classer dans ce champ lexical le vocabulaire associé à l’ombre : partie du sol sur laquelle il n’y a pas de lumière car quelque chose empêche la lumière de l’atteindre. Par exemple, si le soleil (ou tout autre lumière) éclaire un objet, la partie derrière cet objet est dans l’ombre.
+
+
+ + + +
8.3.3.3
+
+ +
Use this domain for words related to color.
+
Classer dans ce champ lexical le vocabulaire associé aux couleurs.
+
+
+ + + +
8.3.3.3.1
+
+ +
Use this domain for words describing something that is white.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de blanc.
+
+
+ + + +
8.3.3.3.2
+
+ +
Use this domain for words describing something that is black.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de noir.
+
+
+ + + +
8.3.3.3.3
+
+ +
Use this domain for words describing something that is gray.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de gris.
+
+
+ + + +
8.3.3.3.4
+
+ +
Use this domain for words describing something that is colored.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de coloré.
+
+
+ + + +
8.3.3.3.5
+
+ +
Use this domain for words related to animal colors and markings.
+
Classer dans ce champ lexical le vocabulaire associé à la couleur des animaux et à leurs taches.
+
+
+ + + +
8.3.3.3.6
+
+ +
Use this domain for words related to changing the color of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de changer la couleur.
+
+
+ + + +
8.3.3.3.7
+
+ +
Use this domain for words describing something that is multicolored--having many different colors.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui est multicolore : qui a de nombreuses couleurs.
+
+
+ + + +
8.3.3.4
+
+ +
Use this domain for words that describe something that is shiny--when something gives back light because light is shining on it.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de brillant : lorsque quelque chose renvoie la lumière.
+
+
+ + + +
8.3.4
+
+ +
Use this domain for words describing something that is hot.
+
Classer dans ce champ lexical le vocabulaire décrivant ce qui est très chaud.
+
+
+ + + +
8.3.4.1
+
+ +
Use this domain for words describing something that is cold.
+
Classer dans ce champ lexical le vocabulaire décrivant quelque chose de froid.
+
+
+ + + +
8.3.5
+
+ +
Use this domain for words related to something being a type of thing, or that something belongs to a class of things.
+
Classer dans ce champ lexical le vocabulaire associé à une certaine catégorie ou à quelque chose qui en fait partie.
+
+
+ + + +
8.3.5.1
+
+ +
Use this domain for words related to the nature of character of something.
+
Classer dans ce champ lexical le vocabulaire associé à la nature ou au caractère de quelque chose.
+
+
+ + + +
8.3.5.2
+
+ +
Use this domain for words related to comparing something or someone with another thing.
+
Classer dans ce champ lexical le vocabulaire associé à la comparaison de quelque chose ou de quelqu’un avec une autre chose ou une autre personne.
+
+
+ + + +
8.3.5.2.1
+
+ +
Use this domain for words describing something that is the same thing as you just mentioned, or describing two things that are exactly the same.
+
Classer dans ce champ lexical le vocabulaire décrivant deux choses qui se ressemblent.
+
+
+ + + +
8.3.5.2.2
+
+ +
Use this domain for words describing two things or people that are similar, but not the same.
+
Classer dans ce champ lexical le vocabulaire décrivant deux choses ou personnes qui sont similaires, mais pas exactement les mêmes.
+
+
+ + + +
8.3.5.2.3
+
+ +
Use this domain for words describing two things that are different--not the same.
+
Classer dans ce champ lexical le vocabulaire qui décrit deux choses qui sont différentes : pas identiques.
+
+
+ + + +
8.3.5.2.4
+
+ +
Use this domain for words related to other, as in 'the other person', 'another thing'--a thing that is not the same as something that has been mentioned.
+
Classer dans ce champ lexical le vocabulaire associé au mot autre, tel que dans « l’autre personne », « une autre chose » : une chose qui n'est pas identique à celle déjà mentionnée.
+
+
+ + + +
8.3.5.2.5
+
+ +
Use this domain for words describing a group of things that are all different from each other.
+
Classer dans ce champ lexical les mots décrivant un groupe de choses qui sont toutes différentes les unes des autres.
+
+
+ + + +
8.3.5.2.6
+
+ +
Use this domain for words describing two things that are opposite.
+
Classer dans ce champ lexical le vocabulaire décrivant deux choses qui sont opposées.
+
+
+ + + +
8.3.5.3
+
+ +
Use this domain for words describing something that is common.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de commun.
+
+
+ + + +
8.3.5.3.1
+
+ +
Use this domain for words describing something that is usual.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’habituel.
+
+
+ + + +
8.3.5.3.2
+
+ +
Use this domain for words describing something that is unusual.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’inhabituel.
+
+
+ + + +
8.3.5.3.3
+
+ +
Use this domain for words describing something that is unique--not like anything else.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’unique : ce à quoi on ne peut rien comparer.
+
+
+ + + +
8.3.5.3.4
+
+ +
Use this domain for words describing something that is strange.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’étrange.
+
+
+ + + +
8.3.5.4
+
+ +
Use this domain for words related to a pattern or model.
+
Classer dans ce champ lexical le vocabulaire associé à un schéma ou à un modèle.
+
+
+ + + +
8.3.5.5
+
+ +
Use this domain for words related to imitating someone--to do things in the same way as another person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'imiter quelqu’un : agir de la même manière qu'une autre personne.
+
+
+ + + +
8.3.5.6
+
+ +
Use this domain for words related to copying something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de copier quelque chose.
+
+
+ + + +
8.3.6
+
+ +
Use this domain for words that mark the material out of which something has been made.
+
Classer dans ce champ lexical le vocabulaire associé à la matière utilisée pour faire quelque chose.
+
+
+ + + +
8.3.6.1
+
+ +
Use this domain for words that describe something that is strong--not easily broken.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de solide : qui se casse difficilement.
+
+
+ + + +
8.3.6.2
+
+ +
Use this domain for words that describe something that is hard--not easily cut, or broken.
+
Classer dans ce champ lexical les mots associés à quelque chose de dur : que l’on raye ou plie difficilement.
+
+
+ + + +
8.3.6.3
+
+ +
Use this domain for words that describe something that is stiff--not easy to bend.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de raide : difficile à plier.
+
+
+ + + +
8.3.6.4
+
+ +
Use this domain for words describing something that is dense.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de dense.
+
+
+ + + +
8.3.6.5
+
+ +
Use this domain for words describing something that is soft or flimsy.
+
Classer dans ce champ le vocabulaire associé à quelque chose de mou ou tendre.
+
+
+ + + +
8.3.7
+
+ +
Use this domain for words describing something that is good.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de bon, de beau ou de bien.
+
+
+ + + +
8.3.7.1
+
+ +
Use this domain for words describing something bad.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de mauvais.
+
+
+ + + +
8.3.7.2
+
+ +
Use this domain for words describing something that is better than something else.
+
Classer dans ce champ lexical le vocabulaire associé à une chose mieux qu’une autre.
+
+
+ + + +
8.3.7.2.1
+
+ +
Use this domain for words describing something that is worse than something else.
+
Classer dans ce champ lexical le vocabulaire associé à une chose plus mauvaise qu’une autre.
+
+
+ + + +
8.3.7.3
+
+ +
Use this domain for words describing something that is perfect.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de parfait.
+
+
+ + + +
8.3.7.4
+
+ +
Use this domain for words describing something that is mediocre.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de médiocre.
+
+
+ + + +
8.3.7.5
+
+ +
Use this domain for words describing something that is important.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose d’important.
+
+
+ + + +
8.3.7.5.1
+
+ +
Use this domain for words describing something that is basic.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de fondamental.
+
+
+ + + +
8.3.7.6
+
+ +
Use this domain for words related to improving something--to make something better.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’améliorer une chose : la rendre meilleure.
+
+
+ + + +
8.3.7.7
+
+ +
Use this domain for words describing something, such as a tool or way of doing something, that is proper for a particular time, place, purpose, or job. The words in this domain involve a comparison between two things, an item and a setting. An evaluation is made as to how good the item is in the setting. The words may be used only of certain types of items, certain types of settings, or certain types of usefulness.
+
Classer dans ce champ lexical le vocabulaire qui décrit ce qui, tel un outil ou une manière de faire, est bon à un moment donné, pour un lieu, un but ou une tâche précis. Les mots de ce domaine comportent une comparaison entre deux choses, un élément et un contexte. Un jugement de valeur est porté sur l’adéquation de l’élément au contexte. Les mots peuvent n’être utilisés que pour certains types d’éléments, de contextes ou d’utilité.
+
+
+ + + +
8.3.7.7.1
+
+ +
Use this domain for words describing something, such as a tool or way of doing something, that is unsuitable for a particular time, place, purpose, or job.
+
Classer dans ce champ lexical le vocabulaire associé à ce qui, tel un outil ou une manière de faire, n’est pas souhaitable à un certain moment, dans un endroit donné, pour un but ou une tâche particulière.
+
+
+ + + +
8.3.7.7.2
+
+ +
Use this domain for words describing something that is convenient--a good time to do something.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui est pratique, bien à propos : un bon moment pour faire quelque chose.
+
+
+ + + +
8.3.7.7.3
+
+ +
Use this domain for words related to being compatible--words that describe two things or people that can be together or work together without problems or conflict.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être compatible : deux choses ou personnes vont ou travaillent bien ensemble, sans problème ni conflit.
+
+
+ + + +
8.3.7.8
+
+ +
Use this domain for words related to something decaying--when a living thing dies and becomes bad, or when a part of a living thing becomes bad.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui se décompose : lorsqu’une chose vivante meurt et se décompose, ou lorsqu’une partie d’une chose vivante pourrit.
+
+
+ + + +
8.3.7.8.1
+
+ +
Use this domain for words related to metal rusting--when metal becomes bad.
+
Classer dans ce champ lexical le vocabulaire associé à la rouille du métal : lorsqu'il se corrode.
+
+
+ + + +
8.3.7.8.2
+
+ +
Use this domain for words related to a blemish--something small and bad on the skin of a person or the surface of something, but not something serious, especially something wrong that does not affect how something works.
+
Classer dans ce champ lexical le vocabulaire associé à un défaut : quelque chose de petit et laid sur la peau d’une personne ou sur une surface, mais qui n’est pas grave, notamment quelque chose qui n’est pas bien mais n’affecte pas le fonctionnement.
+
+
+ + + +
8.3.7.8.3
+
+ +
Use this domain for words related to garbage--something that is no longer wanted.
+
Classer dans ce champ lexical le vocabulaire associé aux déchets : ce que l’on ne veut plus.
+
+
+ + + +
8.3.7.8.4
+
+ +
Use this domain for words related to preserving the condition of something from decay.
+
Classer dans ce champ lexical le vocabulaire associé au fait de préserver quelque chose de la décomposition.
+
+
+ + + +
8.3.7.9
+
+ +
Use this domain for words related to the value of something.
+
Classer dans ce champ lexical le vocabulaire associé à la valeur de quelque chose ?
+
+
+ + + +
8.3.8
+
+ +
Use this domain for words describing something that is decorated.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui est décoré.
+
+
+ + + +
8.3.8.1
+
+ +
Use this domain for words describing something that is simple or plain.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui est simple ou ordinaire.
+
+
+ + + +
8.3.8.2
+
+ +
Use this domain for words describing the appearance of something that has pleasing aspects or inspires awe and wonder in the viewer. For instance, the palace of a king, the home of a rich man, or a temple may be elaborately decorated and be described as glorious or magnificent. Or something in nature such as a sunset or flower may inspire awe and wonder.
+
Classer dans ce champ lexical le vocabulaire qui décrit l’apparence de quelque chose ayant des aspects attrayants, agréables, ou inspirant respect et émerveillement chez le spectateur. Par exemple le palais d’un roi, la maison d’un homme riche, ou un temple qui peut être minutieusement décoré et décrit comme splendide et magnifique. Ou quelque chose dans la nature comme un coucher de soleil ou une fleur qui peut inspirer la stupéfaction et l’émerveillement.
+
+
+ + + +
8.4
+
+ +
Use this domain for general words related to time, and for words indicating the temporal location of an event.
+
Classer dans ce champ lexical les termes génériques associés au temps, et les mots ou expressions qui indiquent la localisation temporelle d’un événement.
+
+
+ + + +
8.4.1
+
+ +
Use this domain for words referring to a period of time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une période de temps.
+
+
+ + + +
8.4.1.1
+
+ +
Use this domain for words related to the calendar.
+
Classer dans ce champ lexical le vocabulaire associé au calendrier.
+
+
+ + + +
8.4.1.2
+
+ +
Use this domain for words referring to a day.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un jour.
+
+
+ + + +
8.4.1.2.1
+
+ +
Use this domain for words referring to night.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la nuit.
+
+
+ + + +
8.4.1.2.2
+
+ +
Use this domain for words referring to days relative to each other.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des jours les uns par rapport aux autres.
+
+
+ + + +
8.4.1.2.3
+
+ +
Use this domain for words referring to a time of the day.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une période de temps de la journée.
+
+
+ + + +
8.4.1.3
+
+ +
Use this domain for words related to a week.
+
Classer dans ce champ lexical le vocabulaire associé à une semaine.
+
+
+ + + +
8.4.1.3.1
+
+ +
Use this domain for words referring to the days of the week.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux jours de la semaine.
+
+
+ + + +
8.4.1.4
+
+ +
Use this domain for words referring to a month.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un mois.
+
+
+ + + +
8.4.1.4.1
+
+ +
Use this domain for words referring to the months of the year.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux mois de l’année.
+
+
+ + + +
8.4.1.5
+
+ +
Use this domain for words referring to seasons of the year that are related to the time of year, the weather, or times of cultivation.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux saisons, en fonction de leur place dans l’année, des périodes de culture et du temps qu’il fait.
+
+
+ + + +
8.4.1.6
+
+ +
Use this domain for words referring to a year.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une année.
+
+
+ + + +
8.4.1.7
+
+ +
Use this domain for words referring to an era--a very long period of time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une ère : une très longue période de temps.
+
+
+ + + +
8.4.1.8
+
+ +
Use this domain for words referring to a special day.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un jour particulier.
+
+
+ + + +
8.4.2
+
+ +
Use this domain for words referring to taking time to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prendre le temps de faire quelque chose.
+
+
+ + + +
8.4.2.1
+
+ +
Use this domain for words referring to a short time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une courte durée.
+
+
+ + + +
8.4.2.2
+
+ +
Use this domain for words referring to a long time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une longue durée.
+
+
+ + + +
8.4.2.3
+
+ +
Use this domain for words referring to something happening forever.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui dure toujours.
+
+
+ + + +
8.4.2.4
+
+ +
Use this domain for words referring to something being temporary.
+
Classer dans ce champ lexical le vocabulaire qui qualifie quelque chose de temporaire.
+
+
+ + + +
8.4.3
+
+ +
Use this domain for words referring to an indefinite time.
+
Classer dans ce champ lexical le vocabulaire qui désigne un moment non précisé.
+
+
+ + + +
8.4.4
+
+ +
Use this domain for words related to telling time.
+
Classer dans ce champ lexical le vocabulaire associé à l’expression du temps.
+
+
+ + + +
8.4.4.1
+
+ +
Use this domain for words referring to planning the time of an event.
+
Classer dans ce champ lexical les mots associés au fait de planifier la durée et la date d’un événement.
+
+
+ + + +
8.4.4.2
+
+ +
Use this domain for machines that indicate what time it is.
+
Classer dans ce champ lexical ce qui sert à indiquer l’heure qu’il est.
+
+
+ + + +
8.4.5
+
+ +
Use the domains in this section for words that relate one time to another. Use this domain for words that indicate a temporal relation between situations.
+
Classer dans les champs lexicaux de cette partie les mots qui indiquent un moment par rapport à un autre, ainsi que des mots qui indiquent une relation temporelle entre des situations.
+
+
+ + + +
8.4.5.1
+
+ +
Use this domain for words referring to temporal order or sequence--the order in which a group of events happen. Things and people may also be in order based on the order in which something happened or should happen to them.
+
Classer dans ce champ lexical les mots associés à l’ordre temporel ou à une succession : l’ordre dans lequel une suite d’évènements se produit. Les choses et les personnes peuvent aussi être dans l'ordre dans lequel quelque chose est arrivé ou pourrait leur arriver.
+
+
+ + + +
8.4.5.1.1
+
+ +
Use this domain for words related to a series--several things that happen one after another.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec une série : plusieurs évènements se succédant chronologiquement.
+
+
+ + + +
8.4.5.1.2
+
+ +
Use this domain for words referring to something happening first--to be before all other things in order or time.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose qui se produit en premier : qui est devant toutes les autres choses en ordre ou en temps.
+
+
+ + + +
8.4.5.1.3
+
+ +
Use this domain for words referring to something happening next.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose qui se produit ensuite.
+
+
+ + + +
8.4.5.1.4
+
+ +
Use this domain for words referring to something happening last--to happen after all other things in a sequence, or to be the last person or thing in a sequence.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose se produisant en dernier :qui se produit à la fin d’une série de choses ou qui est la dernière personne ou chose d’une succession.
+
+
+ + + +
8.4.5.1.5
+
+ +
Use this domain for words referring to something that happens regularly.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des choses qui se produisent régulièrement.
+
+
+ + + +
8.4.5.1.6
+
+ +
Use this domain for words related to alternating--when several things happen one after another in a repeated pattern.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec l’alternance : plusieurs choses arrivent les unes à la suite des autres selon un même ordre.
+
+
+ + + +
8.4.5.2
+
+ +
Use this domain for words referring to one event happening before another.
+
Classer dans ce champ lexical le vocabulaire associé à un événement se produisant avant un autre.
+
+
+ + + +
8.4.5.2.1
+
+ +
Use this domain for words referring to one event happening after another.
+
Classer dans ce champ lexical le vocabulaire relatif à un événement qui se produit après un autre.
+
+
+ + + +
8.4.5.2.2
+
+ +
Use this domain for words referring to two things happening at the same time.
+
Classer dans ce champ lexical le vocabulaire qui est associé à deux choses qui se produisent au même moment.
+
+
+ + + +
8.4.5.2.3
+
+ +
Use this domain for words indicating that something happened during some time period, or that something happened while something else was happening.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est arrivé dans une certaine période ou bien s’est produit pendant qu’autre chose se produisait.
+
+
+ + + +
8.4.5.3
+
+ +
Use this domain for words referring to the right time to do something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au bon moment pour faire quelque chose.
+
+
+ + + +
8.4.5.3.1
+
+ +
Use this domain for words that indicate that something happens early--before the expected time, before the usual time, or before the time that was agreed on. Some words may include the idea that it is good that the event happened early. Other words may include the idea that it is bad that the event happened early.
+
Utiliser ce champ lexical pour le vocabulaire qui décrit quelque chose qui se produit tôt : avant le moment voulu, avant l’heure habituelle, ou avant l’heure ou le moment convenu. Certains mots comportent l'idée que c’est une bonne chose que cela se produise tôt. D’autres mots comportent l’idée que c’est une mauvaise chose que cela se produise tôt.
+
+
+ + + +
8.4.5.3.2
+
+ +
Use this domain for words describing something happening on time--at the expected time, at the usual time, or at the time that was agreed on.
+
Classer dans ce champ le vocabulaire qui décrit quelque chose qui se produit à l’heure : au moment attendu, à l’heure habituelle, ou à l’heure ou au moment convenu.
+
+
+ + + +
8.4.5.3.3
+
+ +
Use this domain for words describing something happening late--after the expected time, after the usual time, or after the time that was agreed on.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui se produit tardivement : après le moment voulu, après l’heure habituelle, ou après le moment convenu.
+
+
+ + + +
8.4.5.3.4
+
+ +
Use this domain for words referring to something delaying someone or something--to cause something to happen at a later time, cause someone to do something at a later time, or cause someone or something to be late.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose qui retarde une personne ou une action : elle est remise à plus tard parce que quelqu’un a fait quelque chose trop tard, ou parce que quelqu’un ou quelque chose a été retardé.
+
+
+ + + +
8.4.5.3.5
+
+ +
Use this domain for words referring to postponing something--to decide to do something later.
+
Classer dans ce champ lexical le vocabulaire qui est associé au report de quelque chose : décision de faire quelque chose plus tard.
+
+
+ + + +
8.4.6
+
+ +
Use this domain for words referring to a time period that is part of a longer time period.
+
Classer dans ce champ lexical le vocabulaire en rapport avec une période se trouvant dans une période plus longue.
+
+
+ + + +
8.4.6.1
+
+ +
Use this domain for words referring to starting something, or for something beginning to happen.
+
Classer dans ce champ lexical le vocabulaire désignant le début de quelque chose, ou quelque chose qui est sur le point d’arriver.
+
+
+ + + +
8.4.6.1.1
+
+ +
Use this domain for words referring to something beginning to happen, to beginning to do something, to cause something to start happening, or to cause people to start doing something.
+
Classer dans ce champ lexical les mots ou expressions qui désignent quelque chose qui vient juste de commencer, le début d’une action, ce qui fait commencer quelque chose, ou pousse des personnes à débuter quelque chose.
+
+
+ + + +
8.4.6.1.2
+
+ +
Use this domain for words related to the end of an action or situation.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la fin d’une action ou d’une situation.
+
+
+ + + +
8.4.6.1.3
+
+ +
Use this domain for words referring to the end of an action or situation.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à la fin d’une action ou d’une situation.
+
+
+ + + +
8.4.6.1.4
+
+ +
Use this domain for words that indicate that something will continue to happen until a particular time or until something else happens, and then it will stop.
+
Classer dans ce champ lexical le vocabulaire indiquant que quelque chose va continuer jusqu'à un moment donné ou jusqu’à ce qu’un autre évènement se produise, et qu'alors il s'arrêtera. En français, un tiret indique à l’écrit que quelque chose se produit de tel moment à tel autre, par exemple 8h00 – 10h00 ou « lundi – vendredi »
+
+
+ + + +
8.4.6.1.5
+
+ +
Use this domain for words that indicate that something will start to happen at some time and continue for some time.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose commencera à un moment donné et durera un certain temps.
+
+
+ + + +
8.4.6.2
+
+ +
Use this domain for words referring to the past or to a time in the past.
+
Classer dans ce champ lexical le vocabulaire en rapport avec le passé ou avec un moment du passé.
+
+
+ + + +
8.4.6.2.1
+
+ +
Use this domain for words indicating that something happened recently--a short time before now.
+
Classer dans ce champ lexical le vocabulaire se rapportant à un moment qui a eu lieu récemment : il y a peu de temps.
+
+
+ + + +
8.4.6.3
+
+ +
Use this domain for words referring to the present time.
+
Classer dans ce champ lexical le vocabulaire en rapport avec le temps présent.
+
+
+ + + +
8.4.6.3.1
+
+ +
Use this domain for words referring to now.
+
Classer dans ce champ lexical le vocabulaire se rapportant à l’instant présent.
+
+
+ + + +
8.4.6.4
+
+ +
Use this domain for words referring to the future.
+
Classer dans ce champ lexical le vocabulaire en rapport avec le futur.
+
+
+ + + +
8.4.6.4.1
+
+ +
Use this domain for words referring to something happening soon.
+
Classer dans ce champ lexical le vocabulaire désignant quelque chose qui est sur le point d’arriver.
+
+
+ + + +
8.4.6.4.2
+
+ +
Use this domain for words referring to something not happening yet.
+
Classer dans ce champ lexical le vocabulaire se rapportant à des évènements qui ne se sont pas encore passés.
+
+
+ + + +
8.4.6.4.3
+
+ +
Use this domain for words referring to something happening eventually.
+
Classer dans ce champ lexical le vocabulaire en rapport avec quelque chose qui finira par arriver.
+
+
+ + + +
8.4.6.4.4
+
+ +
Use this domain for words referring to something happening immediately--without any time passing before it happens.
+
Classer dans ce champ lexical le vocabulaire se rapportant à un évènement arrivant immédiatement : sans aucun délai.
+
+
+ + + +
8.4.6.5
+
+ +
Use this domain for words referring to the age of something.
+
Classer dans ce champ lexical les termes se rapportant à l’âge de quelque chose.
+
+
+ + + +
8.4.6.5.1
+
+ +
Use this domain for words describing something young--a word describing a living thing that has only existed for a short time.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de jeune : qui n'existe que depuis peu.
+
+
+ + + +
8.4.6.5.2
+
+ +
Use this domain for words describing something old--a word describing a living thing that has existed for a long time.
+
Classer dans ce champ lexical le vocabulaire qui décrit un être vivant âgé : qui existe depuis longtemps.
+
+
+ + + +
8.4.6.5.3
+
+ +
Use this domain for words describing something new--a word describing something that has only existed for a short time.
+
Classer dans ce champ lexical les mots ou expressions qui décrivent quelque chose de nouveau : qui n’existe que depuis peu.
+
+
+ + + +
8.4.6.5.4
+
+ +
Use this domain for words describing something old--a word describing something that has existed for a long time.
+
Classer dans ce champ lexical les mots ou expressions désignant quelque chose de vieux ou d’ancien : qui existe depuis long temps.
+
+
+ + + +
8.4.6.5.5
+
+ +
Use this domain for words describing something modern--a word that describes something like a machine, system, or country that uses the most recent equipment, ideas, and methods.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de moderne : une machine, un système ou un pays qui utilise des pièces, fait appel aux idées ou aux méthodes les plus récentes.
+
+
+ + + +
8.4.6.5.6
+
+ +
Use this domain for words describing something old fashioned--something that was done or used in the past, but not done or used now.
+
Classer dans ce champ lexical les mots et expressions décrivant des objets fabriqués autrefois ou des manières d’être en usage dans le passé mais qui ne le sont plus aujourd’hui.
+
+
+ + + +
8.4.6.6
+
+ +
Use this domain for words referring to something happening once.
+
Classer dans ce champ lexical les mots ou expressions faisant référence à ce qui arrive une fois.
+
+
+ + + +
8.4.6.6.1
+
+ +
Use this domain for words referring to something happening again or doing something again.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à un fait qui s’est répété.
+
+
+ + + +
8.4.6.6.2
+
+ +
Use this domain for words referring to something happening sometimes.
+
Classer dans ce champ lexical le vocabulaire faisant référence à quelque chose qui se produit parfois.
+
+
+ + + +
8.4.6.6.3
+
+ +
Use this domain for words referring to something happening often--happening or done many times.
+
Classer dans ce champ lexical le vocabulaire se rapportant à des faits se produisant souvent : qui se passe ou est fait de nombreuses fois.
+
+
+ + + +
8.4.6.6.4
+
+ +
Use this domain for words referring to something happening all the time.
+
Classer dans ce champ lexical le vocabulaire se rapportant à un fait qui se produit tout le temps.
+
+
+ + + +
8.4.6.6.5
+
+ +
Use this domain for words referring to something happening every time something else happens.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se produit chaque fois qu’une autre a lieu.
+
+
+ + + +
8.4.6.6.6
+
+ +
Use this domain for words that indicate that something that never happens, or that something has not once happened.
+
Classer dans ce champ lexical le vocabulaire qui se réfère à quelque chose qui ne se produit jamais ou qui ne s’est jamais produit une seule fois.
+
+
+ + + +
8.4.7
+
+ +
Use this domain for words referring to continuing to do something.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte au fait de continuer à faire quelque chose.
+
+
+ + + +
8.4.7.1
+
+ +
Use this domain for words referring to interrupting someone--speaking when someone is speaking, or doing something to stop someone from doing what they are doing.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’interrompre quelqu’un, de parler pendant que quelqu’un parle, ou de faire quelque chose afin d’empêcher la poursuite d'une activité.
+
+
+ + + +
8.4.7.2
+
+ +
Use this domain for words referring to starting to do something after stopping for some time.
+
Classer dans ce champ lexical le vocabulaire qui signifie recommencer à faire quelque chose qui avait été arrêté un moment.
+
+
+ + + +
8.4.7.3
+
+ +
Use this domain for words referring to an interval between two events.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte à l’intervalle entre deux évènements.
+
+
+ + + +
8.4.8
+
+ +
Use this domain for words referring to the speed at which a person acts or the speed at which something happens.
+
Classer dans ce champ lexical le vocabulaire qui désigne la vitesse à laquelle une personne agit ou la vitesse à laquelle quelque chose se passe.
+
+
+ + + +
8.4.8.1
+
+ +
Use this domain for words referring to doing something at a quick speed or something happening quickly.
+
Classer dans ce champ lexical le vocabulaire qui désigne l’action de faire quelque chose vite ou le fait que quelque chose se passe rapidement.
+
+
+ + + +
8.4.8.2
+
+ +
Use this domain for words referring to doing something at a slow speed.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire quelque chose lentement.
+
+
+ + + +
8.4.8.3
+
+ +
Use this domain for words referring to a sudden event--something happens that I don't expect.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un évènement soudain, à quelque chose d’inattendu qui se passe.
+
+
+ + + +
8.5
+
+ +
Use this domain for words that refer to the place where something is located and for words indicating the location of something.
+
Classer dans ce champ lexical le vocabulaire qui désigne l’endroit où se trouve quelque chose, et celui qui indique la localisation de quelque chose.
+
+
+ + + +
8.5.1
+
+ +
Use this domain for words that refer to a place in relation to the speaker or listener.
+
Classer dans ce champ lexical le vocabulaire qui désigne un endroit par rapport à la personne qui parle ou qui écoute.
+
+
+ + + +
8.5.1.1
+
+ +
Use this domain for words referring to being in front of you.
+
Classer dans ce champ lexical le vocabulaire qui désigne ce qui est devant soi.
+
+
+ + + +
8.5.1.1.1
+
+ +
Use this domain for words indicating that something is behind you.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est derrière soi.
+
+
+ + + +
8.5.1.2
+
+ +
Use this domain for words that indicate that something is to the side of someone.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est à côté de quelqu’un.
+
+
+ + + +
8.5.1.2.1
+
+ +
Use this domain for words indicating that something is around something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est autour d’une autre ?
+
+
+ + + +
8.5.1.2.2
+
+ +
Use this domain for words indicating that something is between two other things.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose se trouve entre deux.
+
+
+ + + +
8.5.1.3
+
+ +
Use this domain for words indicating that something is on another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve sur autre chose.
+
+
+ + + +
8.5.1.3.1
+
+ +
Use this domain for words that express the idea that something is above another thing. The concept 'above' is inherently relational, expressing the relative positions of two things.
+
Classer dans ce champ lexical le vocabulaire exprimant l’idée qu’une chose se trouve au-dessus d’une autre. Le concept « dessus » est, par nature, relatif car il exprime les positions relatives de deux choses.
+
+
+ + + +
8.5.1.3.2
+
+ +
Use this domain for words that express the idea that something is under another thing. The concept 'under' is inherently relational, expressing the relative positions of two things.
+
Classer dans ce champ lexical le vocabulaire exprimant l’idée que quelque chose se trouve sous autre chose. Le concept « sous » est, par nature, relatif car il exprime les positions relatives de deux choses.
+
+
+ + + +
8.5.1.4
+
+ +
Use this domain for words indicating that something is outside something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve à l’intérieur d’autre chose.
+
+
+ + + +
8.5.1.4.1
+
+ +
Use this domain for words indicating that something is outside of another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve à l’extérieur d’autre chose.
+
+
+ + + +
8.5.1.5
+
+ +
Use this domain for words indicating that two things are touching or in contact with each other.
+
Classer dans ce champ lexical le vocabulaire qui indique que deux choses se touchent ou sont en contact entre elles.
+
+
+ + + +
8.5.1.5.1
+
+ +
Use this domain for words indicating that something is next to something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est près d’autre chose.
+
+
+ + + +
8.5.1.6
+
+ +
Use this domain for words that refer to a place on another side of something from the reference point. 'Across' involves three things--the object, the reference point, and something else in between the two.
+
Classer dans ce champ lexical le vocabulaire qui désigne un endroit se trouvant de l’autre côté de quelque chose vu d’un point de référence. « De l’autre côté » implique trois choses : l’objet, le point de référence et autre chose entre les deux points.
+
+
+ + + +
8.5.1.7
+
+ +
Use this domain for words indicating that something is at an indefinite location.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve à un endroit indéterminé.
+
+
+ + + +
8.5.2
+
+ +
Use this domain for general words referring to a direction.
+
Classer dans ce champ lexical les termes génériques qui font référence à une direction.
+
+
+ + + +
8.5.2.1
+
+ +
Use this domain for words indicating a forward direction.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction vers l’avant.
+
+
+ + + +
8.5.2.2
+
+ +
Use this domain for words indicating a backward direction.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction vers l’arrière.
+
+
+ + + +
8.5.2.3
+
+ +
Use this domain for words referring to right and left.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la droite ou à la gauche.
+
+
+ + + +
8.5.2.4
+
+ +
Use this domain for words referring to the direction up.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la direction vers le haut.
+
+
+ + + +
8.5.2.5
+
+ +
Use this domain for words referring to the direction down.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la direction vers le bas.
+
+
+ + + +
8.5.2.6
+
+ +
Use this domain for words indicating a direction away from something.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction s’écartant de quelque chose.
+
+
+ + + +
8.5.2.7
+
+ +
Use this domain for words indicating a direction toward something.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction vers quelque chose.
+
+
+ + + +
8.5.2.8
+
+ +
Use this domain for words referring to the directions of the compass.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux directions de la boussole.
+
+
+ + + +
8.5.3
+
+ +
Use this domain for words related to being at a place.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être à un endroit.
+
+
+ + + +
8.5.3.1
+
+ +
Use this domain for words related to being absent--to not be in a particular place, or not be in the correct or expected place.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être absent : ne pas être dans un endroit particulier, ne pas être à la bonne place, ne pas être à l’endroit prévu ou attendu.
+
+
+ + + +
8.5.4
+
+ +
Use this domain for words referring to an area.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une région.
+
+
+ + + +
8.5.4.1
+
+ +
Use this domain for words related to a vicinity--an area around something else.
+
Classer dans ce champ lexical le vocabulaire associé à un voisinage : une zone autour de quelque chose.
+
+
+ + + +
8.5.4.2
+
+ +
Use this domain for words related to occupying an area.
+
Classer dans ce champ lexical le vocabulaire associé à l’occupation d’une surface.
+
+
+ + + +
8.5.4.3
+
+ +
Use this domain for words referring to the amount of empty space that is available to be used.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la quantité d’espace libre qui peut être utilisé.
+
+
+ + + +
8.5.4.4
+
+ +
Use this domain for words related to an interval or space between things.
+
Classer dans ce champ lexical le vocabulaire associé à un intervalle ou à l’espace entre des choses.
+
+
+ + + +
8.5.5
+
+ +
Use this domain for words that indicate a spatial relation between situations.
+
Classer dans ce champ lexical le vocabulaire qui indique une relation spatiale entre des situations.
+
+
+ + + +
8.5.6
+
+ +
Use this domain for words that express the idea that something contains something.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de contenir quelque chose.
+
+
+ + + +
8.6
+
+ +
Use this domain for words that refer to a part of something. These words are often based on the parts of a person's body.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une partie de quelque chose. Ces mots ou expressions tirent souvent leur origine de parties du corps humain.
+
+
+ + + +
8.6.1
+
+ +
Use this domain for words related to the front part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie avant de quelque chose.
+
+
+ + + +
8.6.1.1
+
+ +
Use this domain for words related to the back part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie arrière de quelque chose.
+
+
+ + + +
8.6.2
+
+ +
Use this domain for words related to the top part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie du haut de quelque chose.
+
+
+ + + +
8.6.2.1
+
+ +
Use this domain for words related to the bottom part of something.
+
Classer dans ce champ lexical les mots liés à la partie inférieure de quelque chose.
+
+
+ + + +
8.6.3
+
+ +
Use this domain for words related to the side part of something.
+
Classer dans ce champ lexical le vocabulaire lié au côté de quelque chose.
+
+
+ + + +
8.6.4
+
+ +
Use this domain for words related to the inside part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie intérieure de quelque chose.
+
+
+ + + +
8.6.4.1
+
+ +
Use this domain for words related to the outside or surface part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie exnérieure ou à la surface de quelque chose.
+
+
+ + + +
8.6.5
+
+ +
Use this domain for words related to the middle part or center of something.
+
Classer dans ce champ lexical les mots liés à la partie du milieu de quelque chose.
+
+
+ + + +
8.6.6
+
+ +
Use this domain for words related to the edge of something--the part of something where two sides come together.
+
Classer dans ce champ lexical le vocabulaire en lien avec le bord de quelque chose : la partie où deux côtés se rejoignent.
+
+
+ + + +
8.6.7
+
+ +
Use this domain for words related to the end of something.
+
Classer dans ce champ lexical le vocabulaire relatif à la fin de quelque chose.
+
+
+ + + +
9
+
+ +
Use this domain for technical linguistic terms that refer to grammatical words and constructions. Most languages have few if any words in this domain.
+
Classer dans ce champ lexical les termes linguistiques techniques qui font référence aux termes et constructions grammaticales. La plupart des langues ont très peu de mots, voire aucun, dans ce champ lexical.
+
+
+ + + +
9.1
+
+ +
Use the following section for words that don't belong in any other domain because they are so general in meaning that you can use them to talk about any topic. Use this domain for general and indefinite words that can be used in the place of any word. Some languages have a general word that can replace a noun or a verb. For instance some Philippine languages use the word 'kwan' in this way. Colloquial German can use the word 'dings' as a noun or verb. Often these words are used when you can't remember the particular word you are trying to think of. In English we use the word 'blank' when we don't want to say a word, for instance when we are testing someone and want them to say the word.
+
Utiliser la section suivante pour les termes qui n'appartiennent à aucun autre champ lexical parce que leur signification est si générique qu’on peut les utiliser pour parler de n'importe quel sujet. Utiliser ce champ lexical pour les termes génériques et indéfinis qu’on peut utiliser à la place de n'importe quel terme. Certaines langues possèdent un terme générique qui peut remplacer un nom ou un verbe. Par exemple, certaines langues des Philippines utilisent le terme « kwan » de cette manière. L'allemand familier peut utiliser le terme 'dings' comme nom ou comme verbe. Ces termes sont souvent utilisés lorsque l'on ne se souvient pas du terme particulier que l’on cherche. En anglais, on utilise le terme « blank' » lorsque l'on ne veut pas dire un mot, par exemple lorsque l'on essaie de mettre quelqu’un à l’épreuve et que l'on veut lui faire dire ce mot.
+
+
+ + + +
9.1.1
+
+ +
Many languages have general words that indicate some kind of state. These general words may be used with a wide variety of specific meanings. For instance in English the word 'be' may be used to identify something, describe something, and many other ideas.
+
De nombreuses langues ont des termes génériques qui indiquent un certain type d'état. Ces termes génériques peuvent être utilisés avec une grande variété de sens précis. Par exemple, en français, on peut utiliser le mot « être » pour identifier quelque chose, décrire quelque chose, et pour nombreuses autres notions.
+
+
+ + + +
9.1.1.1
+
+ +
Use this domain for words indicating that something exists.
+
Classer dans ce champ lexical les mots ou expressions indiquant que quelque chose existe.
+
+
+ + + +
9.1.1.2
+
+ +
Many languages have general words that indicate some kind of change of state. These general words may be used with a wide variety of specific meanings. For instance in English the word 'become' may be used to a change in identity, a change in characteristic, a change in nature, and many other ideas.
+
De nombreuses langues ont des termes génériques qui indiquent un certain type de changement d'état. Ces termes génériques peuvent être utilisés avec une grande variété de sens précis. Par exemple, en français, on peut utiliser le terme « devenir » pour un changement d'identité, un changement de caractéristiques, un changement de nature, et de nombreuses autres idées.
+
+
+ + + +
9.1.1.3
+
+ +
Many languages have several general words that are used to indicate a variety of relationships between two things. There are three such words in English: +"have," "of," and the possessive suffix "-'s." The basic meaning of these words in English is 'to own', but they can mean many other things too. For instance they can mean that I am related to someone (I have a brother), something has a part (birds have wings), and many other ideas. There is also a set of pronouns in English that are like nouns ending in -'s (my/mine, your/yours, his, her/hers, its, our/ours, their/theirs, whose). Use this domain for these general words.
+
De nombreuses langues utilisent plusieurs termes génériques pour indiquer une variété de relations entre deux choses. Il existe deux termes en anglais : "avoir" et "de". Le sens de base de ces termes en français est « posséder », mais ils peuvent également signifier de nombreuses autres choses. Par exemple, ils peuvent signifier que je suis lié à quelqu'un (j'ai un frère), que quelque chose comporte une partie (les oiseaux ont des ailes), et de nombreuses autres notions. Il existe aussi en français des pronoms ou adjectifs qui marquent la possession (mon ou le mien, ton ou le tien, votre ou le vôtre, son ou le sien, sa ou la sienne, notre ou le nôtre, leur ou le leur) et leurs féminins et pluriels respectifs. Utiliser ce champ lexical pour ces termes génériques.
+
+
+ + + +
9.1.1.4
+
+ +
Attributes often belong to a class of attributes (shape = straight, curved) or to a scale (length = long, short). The class or scale can sometimes be included in the expression, but does not mark the proposition itself. (The towel <feels> damp. The box <weighs> five kilos.)
+
Les qualificatifs appartiennent souvent à une catégorie (forme = droit, courbé) ou à une échelle (longueur = long, court). Cette catégorie ou cette échelle se trouve parfois contenue dans l'expression, mais ne marque pas la proposition elle-même. (La serviette <est> humide. Cette boite <pèse> 5 kg).
+
+
+ + + +
9.1.2
+
+ +
Use this domain for general verbs with a volitional subject (agent).
+
Classer dans ce champ lexical les verbes génériques avec un sujet (agent) volitif.
+
+
+ + + +
9.1.2.1
+
+ +
Use this domain for non-volitional pro-verbs.
+
Classer dans ce champ lexical les pro-verbes non-volitifs.
+
+
+ + + +
9.1.2.2
+
+ +
Use this domain for words referring to reacting or responding to something.
+
Classer dans ce champ lexical les termes qui signifient réagir ou répondre à quelque chose.
+
+
+ + + +
9.1.2.3
+
+ +
Use this domain for words referring to creating something--causing something to be that did not exist before.
+
Classer dans ce champ lexical les termes qui désignent le fait de créer quelque chose : une chose, qui n’existait pas auparavant, existe.
+
+
+ + + +
9.1.2.4
+
+ +
Use this domain for words referring to designing something--to decide and plan how something new will look and work.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de concevoir quelque chose, de décider de son apparence et de son fonctionnement.
+
+
+ + + +
9.1.2.5
+
+ +
Use this domain for words referring to making something--joining things together to create something to be that did not exist before.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de fabriquer quelque chose, au fait de réunir des choses pour créer quelque chose qui n’existait pas auparavant.
+
+
+ + + +
9.1.2.6
+
+ +
Use this domain for words referring to someone changing something.
+
Classer dans ce champ lexical les termes qui font référence à quelqu’un qui change quelque chose.
+
+
+ + + +
9.1.2.7
+
+ +
Use this domain for words that indicate event propositions. Event propositions are similar in that they are normally expressed by a subject and a verb, possibly including an object, indirect object, or complement clause. However there are multiple ways in which a language can express an event, such as a passive construction, noun phrase, or subordinate clause. In addition each event type is different in its primary cases, and in the ways those cases are marked. Each event type has subtypes, such as intransitive, transitive, and bitransitive verbs. A great deal of research is needed in order to identify all the variations. Ultimately every verb must be investigated to determine how it behaves in each syntactic construction and how its case relations are marked. No two verbs are entirely alike.
+
Classer dans ce champ lexical les mots indiquant des propositions factuelles. Celles-ci ont en commun qu’elles sont exprimées en général par un sujet et un verbe, voire un complément d’objet, un complément d’objet indirect ou une proposition complétive. Il existe toutefois de multiples façons dont une langue peut exprimer un fait, par exemple, une construction passive, un groupe nominal, ou une proposition subordonnée. En outre, chaque type de proposition factuelle diffère dans ses cas primaires et par la façon dont les cas sont marqués. Chaque type de proposition factuelle a des sous-types, tels que les verbes intransitifs, transitifs ou transitifs doubles. Il est nécessaire de faire des recherches pour identifier toutes ces variantes. Enfin, il faut étudier chaque verbe pour savoir comment il fonctionne dans chaque construction syntaxique et comment les fonctions des mots sont indiquées. Il n’y a pas deux verbes parfaitement identiques.
+
+
+ + + +
9.1.3
+
+ +
Use this domain for general words referring to things.
+
Classer dans ce champ lexical les termes génériques qui font référence à des choses.
+
+
+ + + +
9.1.3.1
+
+ +
Use this domain for words describing something that is physical--that you can touch and see, and for words describing something that is non-physical--that you cannot touch or see.
+
Classer dans ce champ lexical les termes décrivant quelque chose de physique (que l’on peut toucher et voir), et les termes décrivant quelque chose qui n’est pas physique (que l’on ne peut ni toucher ni voir).
+
+
+ + + +
9.1.3.2
+
+ +
Use this domain for words referring to a situation--a particular time and place, and the things that are true about it.
+
Classer dans ce champ lexical les termes faisant référence à une situation (une heure et un endroit précis), et à la réalité de cette situation.
+
+
+ + + +
9.1.4
+
+ +
Use this domain for general adjectives that can replace or stand for a specific adjective.
+
Classer dans ce champ lexical les adjectifs ou locutions adjectives génériques qui peuvent remplacer un adjectif qualificatif spécifique.
+
+
+ + + +
9.1.5
+
+ +
Use this domain for general adverbs that can replace or stand for other adverbs.
+
Classer dans ce champ lexical les adverbes génériques qui peuvent remplacer d’autres adverbes.
+
+
+ + + +
9.2
+
+ +
This domain is for organization purposes and should not be used for any words. Use the domains in this section for words that belong to a particular part of speech. It is best not to use these domains, since they are based on grammar and not meaning. But if you have a small group of words that belong to a part of speech and you want to list them all, you can use these domains. You can also classify words in this section if you don't know what they mean yet.
+
Ce champ lexical est destiné au vocabulaire grammatical et ne doit pas être utilisé pour n’importe quel mot. Utilisez les champs lexicaux de cette section pour les mots appartenant à une partie du discours spécifique. Il vaut mieux ne pas utiliser ces champs lexicaux puisqu'ils sont fondés sur la grammaire et non sur le sens ; mais vous pouvez les utiliser si vous avez un petit groupe de mots appartenant à une partie du discours et que vous vouliez tous les énumérer. Vous pouvez aussi classer dans cette section les mots dont vous ne connaissez pas encore le sens.
+
+
+ + + +
9.2.1
+
+ +
Use this domain to list all adjectives. If there are many adjectives in your language, you should not try to list them all here. If you want to find all the adjectives, most dictionary programs can sort your dictionary by part of speech. However if your language only has a few adjectives, you can list them all in this domain. In the book, "Where Have All the Adjectives Gone?" R. M. W. Dixon [Dixon, R. M. W. 1982. Where have all the adjectives gone? Berlin: Mouton.] identifies seven universal semantic types that are often expressed by adjectives. They are: Age (new, young, old), Dimension (big, little, long, short, wide, narrow, thick, fat, thin), Value (good, bad, proper, perfect, excellent, fine, delicious, atrocious, poor), Color (black, white, red), Human propensity (jealous, happy, kind, clever, generous, cruel, rude, proud, wicked), Physical property (hard, soft, heavy, light, rough, smooth, hot, cold, sweet, sour), Speed (fast, slow). Words in the Human propensity class may be nouns. Words in the Physical property and Speed classes may be verbs.
+
Classer dans ce champ lexical tous les adjectifs qualificatifs. Si votre langue en compte beaucoup, vous n’essaierez pas de tous les énumérer ici. Si vous souhaitez avoir une liste de tous les adjectifs, la plupart des logiciels de dictionnaires permettent de faire un tri par partie du discours. Néanmoins, s’il y a peu d’adjectifs dans votre langue, vous pouvez les citer tous ici. Dans son livre, R. M. W. Dixon [DIXON (R.M.W.), Where have all the adjectives gone ?, Berlin, Mouton, 1982.] identifie sept catégories sémantiques universelles qui sont souvent exprimées par des adjectifs : l’âge (nouveau, jeune, vieux), les dimensions (grand, petit, long, court, large, étroit, épais, gros, gras, maigre), la qualité (bon, mauvais, convenable, parfait, excellent, bien, délicieux, affreux, médiocre), la couleur (noir, blanc, rouge), les qualités et défauts (jaloux, joyeux, gentil, intelligent, généreux, cruel, grossier, fier, méchant), les propriétés physiques (dur, doux, mou, lourd, léger, rugueux, chaud, froid, acide), la vitesse (rapide, lent). Les mots de la catégorie Qualités et défauts peuvent être des noms, ceux des Propriétés physiques et de la Vitesse peuvent être des verbes.
+
+
+ + + +
9.2.2
+
+ +
Use this domain to list all adverbs. If there are many adverbs in your language, it is probably not worth the trouble to list them here. The Shoebox program (and other dictionary programs) can sort your dictionary by part of speech.
+
Classer dans ce champ lexical tous les adverbes. Si votre langue en compte beaucoup, il ne vaut peut-être pas la peine de les énumérer ici. Le logiciel Shoebox (ou autre) permet de trier votre dictionnaire par parties du discours. En français, un adverbe détermine un verbe, un adjectif, un autre adverbe, ou une phrase. Il indique le lieu, le temps, la manière, la quantité, l’affirmation, la négation, le doute, la cause, le but. Le plus souvent il se forme à partir d’un adjectif auquel on ajoute –ment (ex rapidement). Certains de ces adverbes sont aussi interrogatifs ; on trouve aussi des locutions adverbiales. Seuls quelques exemples principaux dans chaque domaine de sens seront indiqués ci-dessous.
+
+
+ + + +
9.2.3
+
+ +
Use this domain for the personal pronouns, including independent, subject, object, and possessive pronouns. It is best to collect all the pronouns in a chart. This way you are more certain of collecting them all and seeing how they are related to each other. A language may have more sets and more distinctions than English does, or it may have less. For instance some languages have a pronoun 'we' which includes the hearer, and another pronoun 'we' which excludes the hearer. Other languages have an indefinite pronoun that means something like the English word 'someone'. Many languages do not have the masculine (he), feminine (she), and neuter (it) distinctions that English has. It is necessary to determine the sets and functions of the pronouns for each language.
+
Classer dans ce champ lexical les pronoms personnels, ainsi que les pronoms toniques, sujet et objet, les pronoms et déterminants possessifs et démonstratifs. Le mieux est de rassembler tous les pronoms dans un tableau. Cela évite d'en oublier et permet de voir les relations entre eux. Il est possible qu’une langue ait plus de catégories et fasse plus de distinctions que le français ou l’inverse. Ainsi, dans certaines langues, il y a un pronom « nous » qui inclut les personnes auxquelles on parle et un pronom « nous » qui les exclut. De nombreuses langues ne font pas la distinction entre masculin (il) et féminin (elle), comme le français. Il faut donc déterminer les catégories et les fonctions des pronoms et déterminants de chaque langue.
+
+
+ + + +
9.2.3.1
+
+ +
Use this domain for pronouns that refer back to the subject of the sentence. These pronouns should be added to the chart of personal pronouns.
+
Classer dans ce champ lexical les pronoms qui renvoient au sujet de la phrase. Ces pronoms doivent être mis dans le tableau des pronoms personnels.
+
+
+ + + +
9.2.3.2
+
+ +
Use this domain for pronouns that do not refer to a definite person or thing, but can refer to anyone or anything. Some languages will not have all the sets of pronouns described below. Add each set you find in your language to the pronoun chart.
+
Classer dans ce champ lexical les pronoms qui ne désignent pas précisément quelqu’un ou quelque chose, mais peuvent désigner n’importe qui ou n’importe quoi. Certaines langues n'ont pas toutes les catégories de pronoms ci-dessous. Vous ajouterez dans votre tableau des pronoms les différentes catégories que vous trouvez dans votre langue. On utilise aussi des locutions pronominales.
+
+
+ + + +
9.2.3.3
+
+ +
Use this domain for pronouns used in relative clauses.
+
Classer dans ce champ lexical les pronoms employés dans les propositions relatives.
+
+
+ + + +
9.2.3.4
+
+ +
Use this domain for pronouns used in questions.
+
Classer dans ce champ lexical les pronoms ou déterminants utilisés pour poser des questions.
+
+
+ + + +
9.2.3.5
+
+ +
Use this domain for demonstrative pronouns.
+
Classer dans ce champ lexical les pronoms et déterminants démonstratifs.
+
+
+ + + +
9.2.3.6
+
+ +
Use this domain for words that indicate that someone does something himself, rather than through someone else.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent que c’est la personne qui fait elle-même quelque chose, et non via quelqu’un d’autre.
+
+
+ + + +
9.2.4
+
+ +
Use this domain to list all prepositions and postpositions.
+
Classer dans ce champ lexical toutes les prépositions.
+
+
+ + + +
9.2.5
+
+ +
Use this domain to list all conjunctions.
+
Classer dans ce champ lexical toutes les conjonctions.
+
+
+ + + +
9.2.5.1
+
+ +
Use this domain to list all phrase level conjunctions--conjunctions that join two words within a phrase.
+
Classer dans ce champ lexical toutes les conjonctions de coordination : celles qui relient deux mots dans un groupe de mots ou deux propositions de même nature.
+
+
+ + + +
9.2.5.2
+
+ +
Use this domain to list all clause level conjunctions--conjunctions that join two clauses.
+
Classer dans ce champ lexical toutes les conjonctions de subordination : conjonctions ou locutions conjonctives qui relient deux propositions dont une est subordonnée à l’autre.
+
+
+ + + +
9.2.5.3
+
+ +
Use this domain to list all sentence level conjunctions--conjunctions that join two sentences.
+
Classer dans ce champ lexical les conjonctions de coordination ou les adverbes qui relient deux phrases entre elles.
+
+
+ + + +
9.2.6
+
+ +
Use this domain to list all particles.
+
Classer dans ce champ lexical toutes les particules.
+
+
+ + + +
9.2.6.1
+
+ +
Use this domain to list all classifiers.
+
Classer dans ce champ lexical les classificateurs.
+
+
+ + + +
9.2.7
+
+ +
Use this domain to list all interjections.
+
Classer dans ce champ lexical les interjections.
+
+
+ + + +
9.2.8
+
+ +
Use this domain to list all idiophones. If there are many idiophones in your language, it is probably not worth the trouble to list them here. The Shoebox program +(and other dictionary programs) can sort your dictionary by part of speech.
+
Classer dans ce champ lexical tous les idéophones. S’il existe un grand nombre d’idéophones dans votre langue, il ne vaut peut-être pas la peine de les énumérer ici : le logiciel Shoebox peut trier votre dictionnaire par parties du discours.
+
+
+ + + +
9.2.9
+
+ +
Use this domain to list all affixes that do not fit in any of the subdomains under it. This section should be filled out by a linguist.
+
Classer dans ce champ lexical les affixes qui n’entrent dans aucun des champs spécifiques détaillés ci-après. Cette section doit être remplie par un linguiste.
+
+
+ + + +
9.2.9.1
+
+ +
Use this domain to list all verb affixes.
+
Classer dans ce champ lexical tous les affixes verbaux.
+
+
+ + + +
9.2.9.2
+
+ +
Use this domain to list all noun affixes.
+
Classer dans ce champ lexical tous les affixes nominaux.
+
+
+ + + +
9.2.9.3
+
+ +
Use this domain to list all derivational affixes. A derivational affix is joined to a root and changes it into a different word. Derivational affixes often change the root into a different part of speech. Adding a derivational affix usually changes the meaning of the root in a significant way.
+
Classer dans ce champ lexical tous les affixes de dérivation, c’est-à-dire ceux qui, ajoutés au radical, le transforment en un autre mot, appartenant souvent à une autre partie du discours. Les affixes de dérivation modifient en général le sens du radical de façon importante.
+
+
+ + + +
9.3
+
+ +
Use this domain for words that intensify an attribute.
+
Classer dans ce champ lexical les mots ou expressions qui intensifient un qualificatif.
+
+
+ + + +
9.3.1
+
+ +
Use this domain for words that indicate a degree on a scale.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent un degré sur une échelle.
+
+
+ + + +
9.3.1.1
+
+ +
Use this domain for words referring to a large degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion « à grande échelle ».
+
+
+ + + +
9.3.1.2
+
+ +
Use this domain for words referring to a small degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion de « faible mesure ».
+
+
+ + + +
9.3.1.3
+
+ +
Use this domain for words referring to a larger degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion « dans une part croissante ».
+
+
+ + + +
9.3.1.4
+
+ +
Use this domain for words referring to a smaller degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion de « en baisse ».
+
+
+ + + +
9.3.2
+
+ +
Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un degré complet : lorsque quelque chose est fait, arrive, est pensé ou est ressenti parfaitement et de toutes les manières possibles.
+
+
+ + + +
9.3.3
+
+ +
Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à ce qui est fait partiellement.
+
+
+ + + +
9.3.4
+
+ +
Use this domain for words indicating intensity of an action.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent l’intensité d’une action.
+
+
+ + + +
9.3.5
+
+ +
Use this domain for words that modify an attribute.
+
Classer dans ce champ lexical les mots ou expressions qui modifient un qualificatif.
+
+
+ + + +
9.4
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that modify verbs.
+
Classer dans cette partie les auxiliaires, les affixes et les adverbes qui modifient les verbes.
+
+
+ + + +
9.4.1
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate tense and aspect.
+
Classer dans cette partie les auxiliaires, les affixes, les adverbes et les particules qui indiquent le temps et l’aspect.
+
+
+ + + +
9.4.1.1
+
+ +
Use this domain for verbal auxiliaries, affixes, adverbs, and particles that indicate tense (also known as temporal deixis)--the time of a situation (event, activity, or state) in relation to a reference point, which is usually the time of utterance. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans ce champ lexical les auxiliaires, les affixes, les adverbes et les particules qui indiquent le temps (appelé également deixis temporelle) : temps où se passe le procès du verbe (événement, action ou état) en fonction d’un point de référence qui est en général le moment de l’énonciation. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.1.2
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of dynamic verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans ce champ lexical, les auxiliaires, les affixes, les adverbes et les particules qui indiquent l’aspect dans les verbes d’action. L’aspect décrit la façon dont le procès du verbe se déroule. Il peut se combiner à un temps, soit dans le même morphème, soit dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.1.3
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of stative verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans ce champ lexical les auxiliaires, les affixes, les adverbes et les particules qui indiquent l’aspect pour les verbes d’état. L’aspect sert à décrire la façon dont se déroule le procès du verbe. Il peut se combiner à n’importe quel temps, soit dans le même morphème, soit dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.1.4
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate relational tenses. Relational tenses describe situations where the reference time is not the same as the moment of speech. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, les affixes, les adverbes et les particules qui indiquent le temps relatif. Les temps relatifs décrivent un procès du verbe où le moment de référence est différent de celui de l’énonciation. Ils peuvent se combiner avec n’importe quel temps, que ce soit dans le même morphème ou dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.2
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate agent-oriented modalities. Agent-oriented modalities describe internal or external conditions on a willful agent with respect to the completion of the predicate situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, les affixes, les adverbes et les particules qui indiquent la modalité concernant l’agent. Les modalités concernant l’agent indiquent que, pour pouvoir accomplir le prédicat, l’agent dépend de conditions internes ou externes. Elles peuvent se combiner à n’importe quel temps, que ce soit dans le même morphème ou dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.2.1
+
+ +
Use this domain for words indicating that someone can do something.
+
Classer dans ce champ lexical les mots ou expressions indiquant que quelqu’un peut faire quelque chose.
+
+
+ + + +
9.4.2.2
+
+ +
Use this domain for words related to being incapable of doing something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être dans l’incapacité de faire quelque chose.
+
+
+ + + +
9.4.2.3
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something must happen.
+
Classer dans ce champ lexical les mots ou expressions employés pour indiquer qu’on pense que quelque chose doit arriver.
+
+
+ + + +
9.4.3
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate moods.
+
Classer dans ce champ lexical les auxiliaires, affixes, adverbes ou particules qui indiquent le mode.
+
+
+ + + +
9.4.3.1
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate imperatives. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press. Use this domain for words and affixes that a speaker uses to indicate that he is making a command. English has no command word. Some languages change the form of the verb by adding an affix. Some languages have special verbs that are only or normally used as commands. Those verbs could be classified here.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent l’impératif. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994. Dans certaines langues, un affixe modifie la forme du verbe. Dans d’autres, il existe des verbes qui ne sont employés que pour des ordres. On pourrait les classer ici.
+
+
+ + + +
9.4.3.2
+
+ +
Use this domain for ways of saying that someone should do something. If I say someone should do something, I think it is good that he does it.
+
Classer dans ce champ lexical les façons d’inciter à faire une chose qui serait bien.
+
+
+ + + +
9.4.3.3
+
+ +
Use this domain for words that a speaker uses to indicate that he is asking a question. English has no question word, but other languages such as Japanese do.
+
Classer dans ce champ lexical les mots ou expressions employés pour indiquer que l’on pose une question. Le français n’a pas de mot pour annoncer une question, contrairement à d’autres langues telles que le japonais.
+
+
+ + + +
9.4.4
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate epistemic moods. Epistemic moods have the whole proposition in their scope and indicate the degree of commitment of the speaker to the truth or future truth of the proposition. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent le mode épistémique. Ceux-ci portent sur toute la proposition et indiquent ce que pense le locuteur de la vérité ou vérité future, de la proposition. Ils peuvent se combiner avec n’importe quel temps, soit dans le même morphème, soit dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.4.1
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is certainly true or is certain to happen.
+
Classer dans ce champ lexical les mots ou expressions dont le locuteur se sert pour indiquer qu’il pense qu’une chose est certainement vraie ou va certainement arriver.
+
+
+ + + +
9.4.4.2
+
+ +
Use this domain for words related to being sure that something is true.
+
Classer dans ce champ lexical le vocabulaire lié au fait d’être sûr que quelque chose est vrai.
+
+
+ + + +
9.4.4.3
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is probable or likely to occur.
+
Classer dans ce champ lexical les mots ou expressions qu’un locuteur emploie pour indiquer qu’il pense que quelque chose est probable ou va vraisemblablement se produire.
+
+
+ + + +
9.4.4.4
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is possible. Maybe implies that the speaker doesn't know something.
+
Classer dans ce champ lexical les mots ou expressions qu’un locuteur emploie pour indiquer qu’il pense que quelque chose est possible. Il peut sous-entendre qu’il ignore quelque chose.
+
+
+ + + +
9.4.4.5
+
+ +
Use this domain for words that indicate that no one is certain that something is true, or when it is impossible to be certain that something is true.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent que personne n’est sûr qu’une chose soit vraie ou qu’il est impossible d’être sûr que ce soit vrai.
+
+
+ + + +
9.4.4.6
+
+ +
Use this domain for words related to not feeling sure about something or someone.
+
Classer dans ce champ lexical les mots ou expressions associés au fait de ne pas être sûr de quelque chose ou de quelqu’un.
+
+
+ + + +
9.4.4.6.1
+
+ +
Use this domain for words indicating that you think something is true, but you are not completely sure about it.
+
Classer dans ce champ lexical des mots ou expressions indiquant qu’on estime qu’une chose est vraie, sans en être tout à fait sûr.
+
+
+ + + +
9.4.4.6.2
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks it is possible that something may happen or be true, but he isn't certain.
+
Classer dans ce champ lexical les mots ou expressions employés pour indiquer qu’on pense qu’il est possible qu’une chose se produise ou soit vraie, sans en être sûr.
+
+
+ + + +
9.4.4.6.3
+
+ +
Use this domain for words indicating that something seems to be a certain way--you see (or hear) something and think something about it, but you are not sure that what you think is true.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent qu’on voit ou entend une chose, qu’on s’en fait une idée, sans être sûr qu‘elle soit vraie.
+
+
+ + + +
9.4.4.7
+
+ +
Use this domain for words indicating that although something is true, it almost is not true.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent que, bien qu’une chose soit vraie, cela a failli ne pas l’être.
+
+
+ + + +
9.4.4.8
+
+ +
Use this domain for words indicating that you think something is unlikely to be true or to happen.
+
Classer dans ce champ lexical le vocabulaire indiquant qu’on pense qu’une chose n’arrivera probablement pas.
+
+
+ + + +
9.4.4.9
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is impossible.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent qu’on croit qu’une chose est impossible.
+
+
+ + + +
9.4.5
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate evidentials. An evidential is when the speaker indicates the source of the information on which an assertion about a situation is based. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette section les verbes auxiliaires, affixes, adverbes, et particules grammaticales qui constituent des marqueurs évidentiels. Les marqueurs évidentiels sont le moyen utilisé par le locuteur pour indiquer la source d'information sur laquelle s'appuie une affirmation à propos d'une situation donnée. Les définitions qui suivent sont issues de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), L'évolution de la grammaire, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.5.1
+
+ +
Use this domain for words indicating who is evaluating the proposition.
+
Classer dans ce champ lexical le vocabulaire qui indique la personne qui évalue l'affirmation.
+
+
+ + + +
9.4.6
+
+ +
Use this domain for words that affirm or agree with the truth of something, or that answer a yes/no question in the affirmative.
+
Classer dans ce champ lexical le vocabulaire qui affirme ou confirme la véracité d’une affirmation, ou qui répond à une question par l’affirmative.
+
+
+ + + +
9.4.6.1
+
+ +
Use this domain for words that negate or deny the truth of something, or that answer a yes/no question in the negative.
+
Classer dans ce champ lexical le vocabulaire qui sert à nier la véracité de quelque chose, ou à répondre à une question par la négative.
+
+
+ + + +
9.4.6.2
+
+ +
Use this domain for words indicating that an affirmative answer is expected to a question.
+
Classer dans ce champ lexical le vocabulaire qui sert à indiquer qu'une question annonce une réponse affirmative.
+
+
+ + + +
9.4.6.3
+
+ +
Use this domain for words indicating that a negative answer is expected to a question.
+
Classer dans ce champ lexical le vocabulaire qui indique qu'une question annonce une réponse négative.
+
+
+ + + +
9.4.7
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a subordinate clause. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent une proposition subordonnée. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.8
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate adverbial clauses. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent une proposition adverbiale. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.5
+
+ +
Each verb has a set of semantic case relations. For instance in the sentence 'I gave flowers to my wife' the verb give has three case relations. 'I' is the Agent, +'flowers' is the Patient, and 'my wife is the 'Recipient'. In this sentence the only word that marks a case relation is 'to'. English often marks case relations by their position in the sentence. Some languages mark case relations by affixes, prepositions, postpositions, and sometimes special verbs. To completely describe a language, each verb must be investigated, all its case relations must be identified, and all the ways in which these relations are marked must be described. Since verbs are often unique and unpredictable in their case relations, this information should go into the dictionary. This section should be used to classify the words and affixes that are used to mark case relations. This domain should be used for technical terms that refer to case.
+
À chaque verbe correspond un ensemble de rôles sémantiques qui sont les fonctions remplies par les autres mots de la phrase. Par exemple, dans la phrase « Je donne des fleurs à ma femme », le verbe donner est associé à trois rôles sémantiques. « Je » est l'Agent, « des fleurs » est le Régime, et « ma femme » est le Destinataire. Dans cette phrase le seul mot qui indique un rôle sémantique est le mot « à ». Les rôles sémantiques sont souvent indiqués par la position des mots dans la phrase en français. Certaines langues indiquent les rôles sémantiques par des affixes, des prépositions, des postpositions, et parfois des verbes spéciaux. Pour décrire entièrement une langue, chaque verbe doit être étudié, tous ses rôles sémantiques doivent être identifiés, et toutes les manières de les indiquer doivent être décrites. Puisque les verbes sont souvent uniques et que leurs rôles sémantiques sont souvent imprévisibles, cette information doit entrer dans le dictionnaire. Cette section doit servir à classer les mots et les affixes qui sont utilisés pour indiquer les rôles sémantiques. Il faut classer dans ce champ lexical les termes techniques qui font référence à ce rôle sémantique.
+
+
+ + + +
9.5.1
+
+ +
Use this section for primary cases.
+
Classer dans cette section tout ce qui a trait aux rôles sémantiques primaires.
+
+
+ + + +
9.5.1.1
+
+ +
Use this domain for words that mark the beneficiary of an event. The sentence "John built a house for his father" is ambiguous. If the house was for his father to live in, then "for" would mark the 'Beneficiary of a patient', meaning that the house was for the father. If, on the other hand, the father was intending to build the house to sell, but couldn't due to an injury, then "for" would mark the 'Beneficiary of an event', meaning the father benefited from the building of the house.
+
Classer dans ce champ lexical le vocabulaire qui indique le bénéficiaire d'un événement. La phrase « Jean a construit une maison pour son père » est ambiguë. Si le père devait habiter dans cette maison, alors « pour » indique le « bénéficiaire du régime », c'est-à-dire que la maison était destinée au père. En revanche, si le père avait pour intention de construire cette maison pour la vendre, mais n'a pu le faire à cause d'une blessure, alors « pour » indique le « bénéficiaire d'un événement », c'est-à-dire que le père a tiré profit de la construction de la maison.
+
+
+ + + +
9.5.1.2
+
+ +
Use this domain for words that mark an instrument used to do something.
+
Classer dans ce champ lexical le vocabulaire qui indique le rôle d'instrument servant à faire quelque chose.
+
+
+ + + +
9.5.1.3
+
+ +
Use this domain for words indicating the means by which something is done.
+
Classer dans ce champ lexical le vocabulaire qui indique le moyen permettant de faire quelque chose.
+
+
+ + + +
9.5.1.4
+
+ +
Use this domain for words indicating the way or manner in which something is done.
+
Classer dans ce champ lexical le vocabulaire indiquant la manière dont une action est accomplie.
+
+
+ + + +
9.5.1.5
+
+ +
Use this domain for words indicating the attendant circumstances in which something happened.
+
Classer dans ce champ lexical le vocabulaire qui indique les circonstances qui ont entouré un événement.
+
+
+ + + +
9.5.1.6
+
+ +
Use this domain for words indicating the spatial location of an event.
+
Classer dans ce champ lexical le vocabulaire qui indique la localisation spatiale d'un événement.
+
+
+ + + +
9.5.1.6.1
+
+ +
Use this domain for words that mark the Source (original location) of something.
+
Classer dans ce champ lexical le vocabulaire qui indique l'origine (la localisation initiale) de quelque chose.
+
+
+ + + +
9.5.1.6.2
+
+ +
Use this domain for words indicating the Path of movement.
+
Classer dans ce champ lexical le vocabulaire qui indique la trajectoire d'un déplacement.
+
+
+ + + +
9.5.1.6.3
+
+ +
Use this domain for words indicating the Goal of movement.
+
Classer dans ce champ lexical le vocabulaire qui indique le but d'un déplacement.
+
+
+ + + +
9.5.1.6.4
+
+ +
Use this domain for words that mark the place where someone was born or the place where they have been living.
+
Classer dans ce champ lexical le vocabulaire qui indique le lieu où une personne est née ou le lieu où une personne a habité dernièrement.
+
+
+ + + +
9.5.2
+
+ +
Use this section for words that join semantically similar events into one sentence. Each sentence is actually reporting two or more situations, which may differ in one or two respects. The words to be included in these domains indicate that two situations are being reported, or mark the differences between the two situations.
+
Classer dans les champs lexicaux de cette partie les mots ou expressions qui relient dans une même phrase deux situations similaires sur le plan sémantique. Dans chaque phrase, il est fait mention de deux situations, ou plus, qui peuvent présenter une ou deux différences. Le vocabulaire à mettre dans ce champ lexical indique qu’il est fait état de deux situations, ou signale les différences entre les deux situations.
+
+
+ + + +
9.5.2.1
+
+ +
Use this domain for words indicating when two or more people each do the same thing and do it together, or when they do it separately.
+
Classer dans ce champ lexical le vocabulaire indiquant un collectif, à savoir qu’une action est faite par deux ou plusieurs personnes, que ce soit ensemble ou séparément.
+
+
+ + + +
9.5.2.2
+
+ +
Use this domain for words indicating a person who accompanied the subject of a proposition.
+
Classer dans ce champ lexical le vocabulaire qui indique que le sujet de la proposition est accompagné.
+
+
+ + + +
9.5.2.3
+
+ +
Use this domain for words indicating a person who does something with another person who is the subject of the sentence.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelqu’un agit avec la personne sujet de la phrase.
+
+
+ + + +
9.5.2.4
+
+ +
Use this domain for words indicating that two or more people do something to each other.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une ou plusieurs personnes agissent avec une autre.
+
+
+ + + +
9.5.2.5
+
+ +
Use this domain for words indicating that the subjects of a clause do something in groups.
+
Classer dans ce champ lexical le vocabulaire qui indique que les sujets d’une proposition font quelque chose en groupe.
+
+
+ + + +
9.5.3
+
+ +
Use this section for cases that bear a relationship to the 'Patient' of a proposition.
+
Classer dans ce champ lexical le vocabulaire associé à la relation à « l’objet » d’une proposition.
+
+
+ + + +
9.5.3.1
+
+ +
Use this domain for words that mark the beneficiary of the Patient of an activity. The Patient is often expressed as the object of a sentence. In the sentence +"John built a house for his parents," the house is the Patient. It is the house that benefits the parents, not the building of the house.
+
Classer dans ce champ lexical le vocabulaire qui indique le bénéficiaire de l’objet d’une action. L’objet de l’action se trouve souvent dans le complément d’objet de la phrase. Dans la phrase, « Jean a bâti une maison pour ses parents », la maison est l’objet de l’action et les bénéficiaires de la maison sont les parents, non la construction de la maison.
+
+
+ + + +
9.5.3.2
+
+ +
Use this domain for words that mark the recipient of the Patient of an activity. The Patient is usually expressed as the object of a sentence.
+
Classer dans ce champ lexical le vocabulaire qui indique les récipiendaires de l’objet d’une activité. L’objet de l’action se trouve souvent être le complément d’objet de la phrase.
+
+
+ + + +
9.5.3.3
+
+ +
Use this domain for words that mark a second Patient that accompanies the primary Patient of an activity. In this type of sentence there are actually two Patients, but one of them has more prominence than the other. The primary patient is usually expressed as the object of the sentence. The second Patient may be marked by an oblique case or preposition/postposition. For instance it may be conceived as accompanying the first Patient.
+
Classer dans ce champ lexical le vocabulaire qui indique un second objet qui accompagne le principal objet d’une action. Dans ce type de phrase, il y a en fait deux objets, mais l’un d’eux est plus important que l’autre. L’objet principal de l’action se trouve souvent dans le complément d’objet de la phrase tandis que le second objet est indiqué par un autre cas, une préposition ou une postposition. Il peut, par exemple, être conçu comme accompagnant le premier objet.
+
+
+ + + +
9.6
+
+ +
Use the domains in this section for words that indicate a logical relation between two or more words or sentences. Use this domain for words that indicate an unspecified logical relation between people, things, or situations.
+
Classer dans les champs lexicaux de cette partie les mots ou expressions qui indiquent une relation logique entre deux ou plusieurs mots, ou entre phrases. Classer dans ce domaine les mots ou expressions qui indiquent une relation logique non spécifiée entre des personnes, des choses ou des situations.
+
+
+ + + +
9.6.1
+
+ +
Use this section for words indicating coordinate relations. Do not put any words in this domain. It is only for organizational purposes.
+
Classer dans cette partie les mots ou expressions qui indiquent des relations de coordination. Ne pas mettre n’importe quels mots ou expressions dans ce champ lexical. Il ne sert qu’à des fins de classification.
+
+
+ + + +
9.6.1.1
+
+ +
Use this domain for words that indicate that you are adding another thought to a previous thought. Words in this domain may indicate a variety of relationships between words, phrases, clauses, or sentences. For instance the words may join two clauses that are the same except that the subjects are different, or the objects are different, or the verbs are different.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’on ajoute une idée à l’idée précédente. Les mots de ce champ lexical peuvent indiquer tout un éventail de relations entre les mots, groupes de mots, propositions ou phrases, par exemple, les mots peuvent relier deux propositions qui ne diffèrent que par leur sujet, par leur complément d’objet, ou par leur verbe.
+
+
+ + + +
9.6.1.2
+
+ +
Use this domain for words indicating an alternative relation between two things or propositions.
+
Classer dans ce champ lexical le vocabulaire qui indique une relation alternative entre deux choses ou propositions.
+
+
+ + + +
9.6.1.3
+
+ +
Use this domain for words indicating an association between two things.
+
Classer dans ce champ lexical le vocabulaire qui indique une association entre deux choses.
+
+
+ + + +
9.6.1.4
+
+ +
Use this domain for words indicating a combinative relation between two things.
+
Classer dans ce champ lexical le vocabulaire qui indique une combinaison de deux choses.
+
+
+ + + +
9.6.1.5
+
+ +
Use this domain for words indicating a contrast between two thoughts that are different in some way.
+
Classer dans ce champ lexical le vocabulaire qui indique un contraste entre deux idées qui diffèrent quelque peu.
+
+
+ + + +
9.6.1.5.1
+
+ +
Use this domain for words indicating that something is an exception to a group, rule or pattern--something is true of all the things (or people) in a group, but it is not true of one thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu‘une chose est une restriction par rapport à un groupe, une règle ou un modèle : une chose est vraie pour toutes les personnes ou les éléments du groupe, sauf pour l’une (ou l’un) d’entre elles (ou eux).
+
+
+ + + +
9.6.1.5.2
+
+ +
Use this domain for words indicating that something is true of one thing (or person) instead of another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose est vraie à la place d’une autre.
+
+
+ + + +
9.6.1.6
+
+ +
Use this domain for words indicating a dissociation relation between two things or propositions.
+
Classer dans ce champ lexical le vocabulaire qui indique une dissociation entre deux choses ou propositions.
+
+
+ + + +
9.6.1.7
+
+ +
Use this domain for words indicating that an event is distributed throughout a group, area, or time span.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une action a lieu dans tout un groupe, une région ou une période de temps.
+
+
+ + + +
9.6.1.8
+
+ +
Use this domain for words indicating equivalence between two things or propositions.
+
Classer dans ce champ lexical le vocabulaire qui indique l’équivalence entre deux choses ou propositions.
+
+
+ + + +
9.6.2
+
+ +
Use this domain for words indicating that something is dependent on another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose dépend d’une autre.
+
+
+ + + +
9.6.2.1
+
+ +
Use this domain for words indicating that something derives from another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose dérive d’une autre.
+
+
+ + + +
9.6.2.2
+
+ +
Use this domain for words indicating the topic that is being talked about.
+
Classer dans ce champ lexical le vocabulaire qui indique le sujet dont on parle.
+
+
+ + + +
9.6.2.2.1
+
+ +
Use this domain for words indicating that something is generally true, but not true in every case.
+
Classer dans ce champ lexical le vocabulaire qui indique qu‘une chose est vraie en général, mais non dans tous les cas.
+
+
+ + + +
9.6.2.3
+
+ +
Use this domain for words indicating relations involving correspondences--a situation in which one thing is the same or similar in some respect to something else.
+
Classer dans ce champ lexical le vocabulaire indiquant des correspondances : une situation où une chose ressemble sur certains points à une autre.
+
+
+ + + +
9.6.2.4
+
+ +
Use this domain for words indicating that something is the basis for another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique ce qui sert de base à autre chose.
+
+
+ + + +
9.6.2.5
+
+ +
Use this domain for words that indicate that someone or something is the cause for an event or state, that one event is the cause for another event or state, or that an event or state is reasonable (having sufficient cause). For instance in the sentence, "John caused David to fall," "John caused" is an enabling proposition that brings about the primary proposition "David fell."
+
Classer dans ce champ lexical le vocabulaire qui indique qu‘une personne ou une chose est la cause d’une action ou d’un état, qu’une action est la raison d’une autre action ou état, ou qu’une action ou un état est raisonnable (a une cause suffisante). Par exemple dans la phrase « Jean a fait tomber David », « Jean a fait » est la proposition qui précise la cause de la proposition centrale « David est tombé ».
+
+
+ + + +
9.6.2.5.1
+
+ +
Use this domain for words that reason why someone does something.
+
Classer dans ce champ lexical les mots ou expressions qui désignent la raison pour laquelle une personne fait quelque chose.
+
+
+ + + +
9.6.2.5.2
+
+ +
Use this domain for words that indicate that an event or state has no cause or reason, or is unreasonable (has insufficient cause).
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une action ou un état est sans cause ni raison, ou n’est pas raisonnable (sans raison suffisante).
+
+
+ + + +
9.6.2.6
+
+ +
Use this domain for words indicating that something is the result of another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose est le résultat d’une autre.
+
+
+ + + +
9.6.2.6.1
+
+ +
Use this domain for words indicating that something had no result.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose ne donne aucun résultat.
+
+
+ + + +
9.6.2.7
+
+ +
Use this domain for words indicating that something was done for the purpose of another thing happening.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’on a fait quelque chose pour qu’autre chose arrive.
+
+
+ + + +
9.6.2.7.1
+
+ +
Use this domain for words indicating that something had no purpose.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose n’a pas de but.
+
+
+ + + +
9.6.2.8
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a clause in a conditional sentence (If this is true, then that is true). The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent une proposition dans une phrase conditionnelle. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.6.2.9
+
+ +
Use this domain for words indicating that the speaker is conceding a point in a debate.
+
Classer dans ce champ lexical le vocabulaire qui indique que celui qui parle concède un argument dans un débat.
+
+
+ + + +
9.6.3
+
+ +
Use this domain for conjunctions and particles that function on the discourse level, and whose meaning and function is uncertain.
+
Classer dans ce champ lexical les conjonctions et les particules dont la fonction se situe au niveau du discours et dont le sens ou la fonction est aléatoire.
+
+
+ + + +
9.6.3.1
+
+ +
Use this domain for conjunctions that simply move the discourse forward without any specific relationship indicated between what comes before and what comes after.
+
Classer dans ce champ lexical les conjonctions qui servent uniquement à faire progresser le discours sans indiquer de relation précise entre ce qui vient et ce qui suit.
+
+
+ + + +
9.6.3.2
+
+ +
Use this domain for words that indicate that the phrase or sentence is particularly important.
+
Classer dans ce champ lexical le vocabulaire qui indique que le groupe de mots, ou la phrase, est particulièrement important.
+
+
+ + + +
9.6.3.3
+
+ +
Use this domain for words that are used to get someone's attention or direct the listener's attention to something. These may use a verb meaning 'look' or 'listen'. Some may be a word specifically referring to attention. Others may be a greeting. Others may be words that refer to non-verbal communication such as clearing your throat.
+
Classer dans ce champ lexical le vocabulaire employé pour attirer l’attention de quelqu’un sur quelque chose. Il peut contenir des verbes signifiant « voir » ou « écouter ». Dans certaines langues, il peut y avoir un mot désignant l’attention, dans d’autres ce peut être une salutation, dans d’autres encore ce peut être des mots qui font référence à la communication non verbale comme s’éclaircir la gorge.
+
+
+ + + +
9.6.3.4
+
+ +
Use this domain for words that the speaker uses to refer to the person he is addressing. These words are usually used when you start talking to someone, but can be used during a speech or conversation to refer to the person you are talking to.
+
Classer dans ce champ lexical le vocabulaire dont se sert la personne qui parle pour s’adresser à quelqu’un. Ces mots s’utilisent en général quand on se met à parler à quelqu’un, mais peuvent aussi être employés au cours d’un discours ou d’une conversation pour parler des personnes à qui on s’adresse.
+
+
+ + + +
9.6.3.5
+
+ +
Use this domain for words that begin a clause that identifies a specific case or example of what has just been said, or that explains what has just been said. Specific case: I have just mentioned a general class of things or a general idea and want to give a specific example of what I am talking about. Explanation: I have just said something and I think people might misunderstand, so I want to explain what I mean. Digression: I am talking about a particular topic, but want to say something that does not fit into my topic, so I say something that is about a different topic.
+
Classer dans ce champ lexical le vocabulaire qui introduit une proposition qui explique ce qui vient d’être dit ou qui en donne un cas ou un exemple. Exemple : Je viens de mentionner une catégorie d’objets ou une idée générale et je donne un exemple pour illustrer ce que j’ai dit. Explication : Je viens de dire quelque chose et j’ai peur que certains ne m’aient mal compris, alors j’explique ce que je veux dire. Digression : Je parle d’un sujet, mais veux dire quelque chose qui n’entre pas dans mon sujet ; je dis donc quelque chose sur un sujet différent.
+
+
+ + + +
9.6.3.6
+
+ +
Use this domain for words indicating that one of several things is in focus.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une ou plusieurs choses font l’objet d’une focalisation.
+
+
+ + + +
9.6.3.7
+
+ +
Use this domain for words that a speaker uses when he hesitates or pauses while he is speaking in order to think about what he is saying.
+
Classer dans ce champ lexical le vocabulaire qu’on emploie quand on hésite ou fait une pause, alors qu’on est en train de parler, afin de réfléchir à ce qu’on va dire.
+
+
+ + + +
9.6.3.8
+
+ +
Use this domain for words that the speaker uses to show respect or a lack of respect to the person he is addressing. Some languages have elaborate systems of honorifics. Other languages have none. Languages with a stratified social structure often use honorifics. Egalitarian societies generally lack them, but some egalitarian societies may use them. For instance in Nahuatl there are four levels of honorifics. Level 1 is how one addresses intimates, small children, and pets. Level 2 is for strangers and persons treated formally. Level 3 is for respected persons, the dead, and God. Level 4 is for obsequious respect, as for the archbishop in an interview with a priest, and for ritual kin. (Jane H. Hill and Kenneth C. Hill. 1978. Honorific usage in modern Nahuatl: the expression of social distance and respect in the Nahuatl of the Malinche Volcano area, Language 54:123-155.) In Japanese, which has a stratified social structure, a person uses one set of words and affixes when speaking to someone below you in the social hierarchy, such as your wife, children, and pets. A different set of words is used when speaking to peers. Another set is used when speaking to a superior. A fourth set is used when speaking to the emperor. English used to have two pronouns for second person singular. 'Thou' was used for equals and inferiors, and 'you' was used for superiors. Your language may have special honorific words used as (1) pronouns, (2) affixes, (3) particles, (4) terms of direct address, (5) greetings (6) requests, (7) apologies.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’on montre du respect ou un manque de respect à la personne à laquelle on s’adresse. Certaines langues ont des systèmes d’honneur complexes, d’autres n’en ont aucun. Dans les cultures très hiérarchisées, les langues ont souvent des expressions honorifiques alors que les sociétés égalitaires n’en ont pas, en général, mais il y a des exceptions. Par exemple, en nahuatl, il y a quatre niveaux d’honneur. Au niveau 1, on s’adresse à des intimes, de jeunes enfants et des animaux domestiques. Le niveau 2 est pour les étrangers et les personnes auxquelles on s’adresse poliment. On se sert du niveau 3 pour les personnes respectées, les morts et Dieu. Quant au niveau 4, il est employé pour montrer un respect exagéré, par servilité ou hypocrisie, tel que dans l’entretien d’un archevêque avec un prêtre ou pour des rituels familiaux. [HILL (Jane H.) et HILL (Kenneth C.), « Honorific usage in modern Nahuatl : the expression of social distance and respect in the Nahuatl of the Malinche Volcano area », Language, n° 54, p. 123-155, 1978.] Au Japon, où la société est très hiérarchisée, on emploie en japonais une série de mots et d’affixes quand on s’adresse à quelqu’un d’un rang social inférieur, par exemple, sa femme, ses enfants, ses animaux. Il y a une autre série de mots et d’affixes pour s’adresser à ses pairs et une autre pour parler à des supérieurs. Enfin, une quatrième série sert à s’adresser à l’empereur. En français, il y a trois pronoms pour s’adresser à une personne : tu (quand la personne est plus jeune ou égale à soi), vous (pour quelqu’un de supérieur à soi, inconnu ou âgé), monsieur ou madame (quand une personne s’adresse à un ambassadeur, ou quand du personnel de maison s’adresse à un employeur qui est de haut rang social, ou lorsque l’on s’adresse à un adulte que l’on ne connaît pas du tout). Il peut y avoir dans votre langue des mots honorifiques qui sont des pronoms (1), des affixes (2), des particules (3), des termes d’adresse (4), des salutations (5), des demandes (6), des excuses (7).
+
+
+ + + +
9.7
+
+ +
Use this domain for general words referring to proper nouns--the name given to a particular person or thing to distinguish it from other things like it. Proper nouns are often not included in a dictionary, or are included in an appendix at the front or back of a dictionary. This is because there are so many of them, they are sometimes difficult to define, and it saves space in the dictionary. For instance place names can be included in a map. So it might be good to type the proper nouns into a special file.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au nom propre : nom donné à une personne ou à une chose pour la distinguer d’autres choses semblables. Les noms propres sont rarement dans un dictionnaire ou alors, ils sont mis dans un appendice qui se trouve au début ou à la fin. Ceci parce qu’ils sont trop nombreux, difficiles parfois à définir et que cela permet de gagner de la place. Ainsi on trouve les noms de lieu sur une carte. Il serait donc judicieux de mettre les noms propres dans un fichier qui leur serait réservé.
+
+
+ + + +
9.7.1
+
+ +
Use this domain for words related to the name of a person. Each culture has a system of personal names to identify individuals and kin groups. The subcategories under this heading should reflect the cultural system. If your language has a special set of names that do not fit any of they domains given here, then set up a special domain.
+
Classer dans ce champ lexical le vocabulaire associé au nom de quelqu’un. Chaque culture a son système de noms pour désigner des individus ou des clans. Les différentes rubriques de ce champ devront refléter la culture. S’il existe dans votre langue une série de noms qui n’entrent dans aucune des catégories présentes ici, vous en créerez une autre.
+
+
+ + + +
9.7.1.1
+
+ +
Use this domain for those names that are given to people, that people use to call to each other and to talk about each other.
+
Classer dans ce champ lexical les noms donnés aux personnes dont on se sert pour se parler ou pour s’appeler.
+
+
+ + + +
9.7.1.2
+
+ +
Use this domain for the proper names of the families that exist within the language community. If your culture does not use family names, just leave this domain empty.
+
Classer dans ce champ lexical des exemples de nom de famille qui existent dans votre groupe linguistique. S’il n’y en a pas, vous laisserez simplement ce champ lexical vide.
+
+
+ + + +
9.7.1.3
+
+ +
Use this domain for the proper names of the clans that exist within the language community. The distinction between family, clan, tribe, and nation is based on politics and emotion. Our purpose here is not to make political statements, but merely to list the names. There may be no distinction between family and clan, in which case ignore this domain and use the domain 'Family names'.
+
Classer dans ce champ lexical des noms de clans qui existent dans votre groupe linguistique. Cette distinction entre famille, clan, tribu, et nation peut se fonder sur des considérations politiques ou affectives. Notre but ici n’est pas d’énoncer des principes politiques, mais uniquement d’inventorier des noms. Il se peut qu’on ne fasse aucune distinction entre les noms de famille et les noms de clans. Dans ce cas, vous ignorerez le champ lexical du clan et vous vous servirez de celui des noms de famille.
+
+
+ + + +
9.7.1.4
+
+ +
Use this domain for the proper names of the tribes that exist around the language community, including the name of your own tribe. These tribal names may or may not correspond with the names of countries.
+
Classer dans ce champ lexical les noms qui désignent les tribus de votre groupe linguistique, sans oublier le nom de votre tribu. Les noms de tribus peuvent correspondre ou non au nom des pays.
+
+
+ + + +
9.7.1.5
+
+ +
Use this domain for the proper names of the languages that are spoken in the area around the language community, including the name of your own language. These language names may or may not correspond with the names of countries. Do not try to include every language name in the world, only the neighboring and important ones. For instance you might want to include the languages that border your own and the national language. Give the form that you use. For instance the German people call their language 'Deutsch', but in English we call it 'German'.
+
Classer dans ce domaine les noms des langues parlées autour de votre groupe linguistique, sans oublier le nom de votre langue. Ces noms de langues peuvent être ceux du pays ou non. Vous n’essaierez pas de faire la liste de toutes les langues du monde, mais citerez seulement celles des régions proches de la vôtre et celles qui sont particulièrement importantes. Par exemple, vous pourriez citer celles qui sont parlées dans les régions voisines de la vôtre et votre langue nationale. Vous les citerez sous la forme en usage chez vous. Ainsi les Allemands appellent leur langue « Deutsch », tandis qu’en français, elle s’appelle « allemand ».
+
+
+ + + +
9.7.1.6
+
+ +
Use this domain for common nicknames--an additional name given to a person later in life, often descriptive. Also include general names used to call or refer to someone when you don't know their name
+
Classer dans ce champ lexical des surnoms répandus, des noms donnés à certaines personnes au cours de leur vie et qui ont souvent une valeur descriptive. Inclure aussi dans cette rubrique les noms employés pour appeler quelqu’un dont on ne connaît pas le nom ou pour parler de lui.
+
+
+ + + +
9.7.1.7
+
+ +
Use this domain for terms of endearment--a name used by lovers or spouses to express love or intimacy. Some languages may have special names used by close friends.
+
Classer dans ce champ lexical les mots ou expressions servant à appeler quelqu’un de manière affectueuse : noms employés par les amoureux ou les époux pour exprimer leur amour ou leur intimité. Dans certaines langues, il existe des noms qui s’emploient entre amis proches.
+
+
+ + + +
9.7.2
+
+ +
Use this domain for words referring to the name of a place.
+
Classer dans ce champ lexical des mots ou expressions associés au nom d’un lieu.
+
+
+ + + +
9.7.2.1
+
+ +
Use this domain for the proper names of the countries that exist around the language community, especially those countries where your language is spoken. Include the name of your own country. Do not list every country in the world, unless your language has developed special names or pronunciations for those countries. Include any country that you refer to in your language, especially those names whose pronunciation you have adapted to fit your language. Give the form of the name that you use, rather than the official spelling. For instance the Japanese refer to their country as 'Nihon', but in English will call it 'Japan'. So +'Japan' is an English word and should go into an English dictionary. But 'Nihon' is not an English word and should not go in the dictionary.
+
Classer dans ce champ lexical les noms des pays situés aux alentours de votre groupe linguistique, en particulier ceux des pays où votre langue est parlée. Ne pas oublier de citer votre pays. Ne pas citer tous les pays du monde, à moins qu’il n’existe dans votre langue des noms ou des prononciations spécifiques. Inclure dans cette liste tous les pays dont on parle dans votre langue, notamment ceux dont la prononciation a été modifiée pour s’adapter à votre langue. Donner le nom usité dans votre langue, plutôt que sa formulation officielle. Ainsi, les Japonais appellent leur pays « Nihon », alors qu’en français, il s’appelle « Japon ». Un dictionnaire français doit donc avoir une entrée « Japon » et ne doit pas avoir le mot « Nihon ». En effet « Japon » est le mot français, non « Nihon ».
+
+
+ + + +
9.7.2.2
+
+ +
Use this domain for the proper names of the regions within your country or language area. Some of these may be political regions. Others may be informal terms. Give the local pronunciation, rather than some foreign spelling. You may want to limit this domain to just those areas within your language area. However if you have special names for areas outside of your language area, for example 'the Mideast', you should include them.
+
Classer dans ce champ lexical les noms propres des régions de votre pays ou de votre région linguistique. Celles-ci peuvent être politiques. D’autres peuvent avoir un caractère informel. Donner leur prononciation locale plutôt que celle étrangère. Il se peut que vous souhaitiez limiter ce champ lexical à votre seule région linguistique. Cependant s’il existe des noms désignant des territoires situés hors de votre région linguistique, par exemple le Moyen-Orient, il est conseillé de les inclure dans votre liste.
+
+
+ + + +
9.7.2.3
+
+ +
Use this domain for the proper names of cities, towns, and villages in the language area. Include the names of important cities outside of the language area if your language has a special name for the city or a different pronunciation for it. It might be good to use a map for this. In fact it is good to include a map of the language area in a published dictionary. If your language area is very large, there may be hundreds or thousands of cities, towns, and villages. In this case you will have to decide which should be included in the dictionary. Or you could decided to list them in a special section.
+
Classer dans ce champ lexical les noms de grandes villes, de villes moyennes et de villages situés dans votre région linguistique. Citer aussi les villes importantes n’appartenant pas à votre région linguistique, si elles portent dans votre langue un nom spécial ou si leur nom est prononcé différemment. Pour répondre à cette question, une carte de géographie pourrait être utile. Il est bon en effet de mettre dans le dictionnaire publié, une carte de la région linguistique concernée. Si celle-ci est très vaste, il peut y avoir des centaines, voire des milliers de très grandes villes, de villes moyennes et de villages. Dans ce cas-là, il faudra décider lesquels devraient figurer dans le dictionnaire. On peut aussi décider d’en faire la liste dans une partie du dictionnaire réservée à cet effet.
+
+
+ + + +
9.7.2.4
+
+ +
Use this domain for the proper names of highways, roads, streets, and trails in the language area. If there are many such names, only include the important names (e.g. King's Highway) or commonly used names (e.g. Main Street).
+
Classer dans ce champ lexical les noms propres d’autoroutes, de routes, de rues ou de pistes se trouvant dans votre région linguistique. S’il y a un très grand nombre de noms de ce genre, retenez seulement les plus importants (ex. voie royale) ou ceux qui sont le plus utilisés (ex la Grand-rue).
+
+
+ + + +
9.7.2.5
+
+ +
Use this domain for the proper names of the heavenly bodies.
+
Classer dans ce champ lexical les noms propres des corps célestes.
+
+
+ + + +
9.7.2.6
+
+ +
Use this domain for the proper names of the continents. Only include the names of continents if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms des continents. Ne mettre les continents que s’ils ont un nom emprunté ou adapté dans votre langue et qu’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.2.7
+
+ +
Use this domain for the proper names of the mountains in the language area. Only include the names of mountains outside the language area if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms propres des montagnes situées dans votre région linguistique. Ne citer les noms de montagnes situées en dehors de votre région linguistique que si votre langue a emprunté ces noms ou en a adapté la prononciation, et s’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.2.8
+
+ +
Use this domain for the proper names of the oceans and lakes in the language area. Only include the names of oceans and lakes outside the language area if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms propres des océans et des lacs situés dans votre région linguistique. Ne citer les noms d’océans et de lacs situés en dehors de votre région linguistique que si votre langue en a emprunté les noms ou en a adapté la prononciation, et s’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.2.9
+
+ +
Use this domain for the proper names of the rivers in the language area. Only include the names of rivers outside the language area if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms propres des cours d’eau de cette région linguistique. Ne citer ceux situés en dehors de votre région linguistique que si votre langue a emprunté ces noms ou en a adapté la prononciation, et s’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.3
+
+ +
Use this domain for words related to the name of a thing. Many cultures give names to particular buildings, ships, airplanes, organizations, companies, schools, and other things. If your language has hundreds of names for some kind of thing, it is best to not try to list them all. But if there are a few important names for one kind of thing, set up a domain for them.
+
Classer dans ce champ lexical des mots ou expressions associés au nom propre d’une chose. Un grand nombre de cultures donne un nom propre à certains édifices, à des bateaux, à des avions, à des organismes, à des entreprises, à des écoles, etc. Si votre langue possède des centaines de noms pour certaines catégories de choses, le mieux est de ne pas essayer d’en dresser une liste complète. Par contre, s’il existe quelques noms importants pour une catégorie particulière de choses, on les réunira dans un champ lexical.
+
+
+ + + +
9.7.3.1
+
+ +
Use this domain for words referring to the name of an animal. Some cultures give names to domesticated animals or to animals in stories. Think through each kind of domesticated animal.
+
Classer dans ce champ lexical des mots ou expressions se référant au nom d’un animal. Certaines cultures donnent des noms aux animaux domestiques ou aux animaux qui jouent un rôle dans des histoires. Penser à différentes sortes d’animaux domestiques.
+
+
+ + + +
9.7.3.2
+
+ +
Use this domain for words referring to the name of a building.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte au nom propre d’un édifice.
+
+
+
+ + + + +
Conf
+
+
+ + + +
Dis
+
+
+ + + +
Pend
+
+
+ + + +
Tent
+
prov
+
+
+
+ + + + + + + + + +
PV
+
+
+ + + +
000
+
+
+ + + +
100
+
+
+ + + +
101
+
+
+ + + +
102
+
+
+ + + +
103
+
+
+ + + +
104
+
+
+ + + +
105
+
+
+ + + +
106
+
+
+ + + +
107
+
+
+ + + +
110
+
+
+ + + +
111
+
+
+ + + +
112
+
+
+ + + +
113
+
+
+ + + +
114
+
+
+ + + +
115
+
+
+ + + +
116
+
+
+ + + +
117
+
+
+ + + +
118
+
+
+ + + +
119
+
+
+ + + +
120
+
+
+ + + +
121
+
+
+ + + +
122
+
+
+ + + +
123
+
+
+ + + +
124
+
+
+ + + +
125
+
+
+ + + +
126
+
+
+ + + +
127
+
+
+ + + +
128
+
+
+ + + +
129
+
+
+ + + +
1210
+
+
+ + + +
1211
+
+
+ + + +
1212
+
+
+ + + +
1213
+
+
+ + + +
130
+
+
+ + + +
131
+
+
+ + + +
132
+
+
+ + + +
133
+
+
+ + + +
134
+
+
+ + + +
135
+
+
+ + + +
136
+
+
+ + + +
137
+
+
+ + + +
138
+
+
+ + + +
140
+
+
+ + + +
141
+
+
+ + + +
142
+
+
+ + + +
143
+
+
+ + + +
144
+
+
+ + + +
145
+
+
+ + + +
146
+
+
+ + + +
147
+
+
+ + + +
GC
+
+
+ + + +
150
+
+
+ + + +
151
+
+
+ + + +
152
+
+
+ + + +
153
+
+
+ + + +
154
+
+
+ + + +
155
+
+
+ + + +
156
+
+
+ + + +
157
+
+
+ + + +
158
+
+
+ + + +
159
+
+
+ + + +
160
+
+
+ + + +
161
+
+
+ + + +
162
+
+
+ + + +
163
+
+
+ + + +
164
+
+
+ + + +
165
+
+
+ + + +
166
+
+
+ + + +
167
+
+
+ + + +
168
+
+
+ + + +
170
+
+
+ + + +
171
+
+
+ + + +
172
+
+
+ + + +
173
+
+
+ + + +
174
+
+
+ + + +
175
+
+
+ + + +
176
+
+
+ + + +
177
+
+
+ + + +
178
+
+
+ + + +
179
+
+
+ + + +
1710
+
+
+ + + +
180
+
+
+ + + +
181
+
+
+ + + +
181.1
+
+
+ + + +
181.2
+
+
+ + + +
182
+
+
+ + + +
183
+
+
+ + + +
184
+
+
+ + + +
185
+
+
+ + + +
186
+
+
+ + + +
190
+
+
+ + + +
191
+
+
+ + + +
192
+
+
+ + + +
193
+
+
+ + + +
194
+
+
+ + + +
195
+
+
+ + + +
196
+
+
+ + + +
197
+
+
+ + + +
198
+
+
+ + + +
200
+
+
+ + + +
201
+
+
+ + + +
201.1
+
+
+ + + +
202
+
+
+ + + +
203
+
+
+ + + +
204
+
+
+ + + +
205
+
+
+ + + +
206
+
+
+ + + +
207
+
+
+ + + +
208
+
+
+ + + +
209
+
+
+ + + +
2010
+
+
+ + + +
210
+
+
+ + + +
211
+
+
+ + + +
212
+
+
+ + + +
213
+
+
+ + + +
214
+
+
+ + + +
215
+
+
+ + + +
216
+
+
+ + + +
217
+
+
+ + + +
218
+
+
+ + + +
MC
+
+
+ + + +
220
+
+
+ + + +
221
+
+
+ + + +
222
+
+
+ + + +
223
+
+
+ + + +
224
+
+
+ + + +
225
+
+
+ + + +
226
+
+
+ + + +
227
+
+
+ + + +
228
+
+
+ + + +
230
+
+
+ + + +
231
+
+
+ + + +
232
+
+
+ + + +
233
+
+
+ + + +
234
+
+
+ + + +
235
+
+
+ + + +
236
+
+
+ + + +
237
+
+
+ + + +
240
+
+
+ + + +
241
+
+
+ + + +
242
+
+
+ + + +
243
+
+
+ + + +
244
+
+
+ + + +
245
+
+
+ + + +
246
+
+
+ + + +
247
+
+
+ + + +
248
+
+
+ + + +
249
+
+
+ + + +
250
+
+
+ + + +
251
+
+
+ + + +
252
+
+
+ + + +
253
+
+
+ + + +
254
+
+
+ + + +
255
+
+
+ + + +
256
+
+
+ + + +
257
+
+
+ + + +
258
+
+
+ + + +
260
+
+
+ + + +
261
+
+
+ + + +
262
+
+
+ + + +
263
+
+
+ + + +
264
+
+
+ + + +
265
+
+
+ + + +
266
+
+
+ + + +
270
+
+
+ + + +
271
+
+
+ + + +
272
+
+
+ + + +
273
+
+
+ + + +
274
+
+
+ + + +
275
+
+
+ + + +
276
+
+
+ + + +
277
+
+
+ + + +
278
+
+
+ + + +
280
+
+
+ + + +
281
+
+
+ + + +
282
+
+
+ + + +
283
+
+
+ + + +
284
+
+
+ + + +
285
+
+
+ + + +
286
+
+
+ + + +
287
+
+
+ + + +
288
+
+
+ + + +
289
+
+
+ + + +
290
+
+
+ + + +
291
+
+
+ + + +
292
+
+
+ + + +
293
+
+
+ + + +
294
+
+
+ + + +
295
+
+
+ + + +
296
+
+
+ + + +
300
+
+
+ + + +
301
+
+
+ + + +
302
+
+
+ + + +
303
+
+
+ + + +
304
+
+
+ + + +
305
+
+
+ + + +
306
+
+
+ + + +
310
+
+
+ + + +
311
+
+
+ + + +
312
+
+
+ + + +
313
+
+
+ + + +
314
+
+
+ + + +
315
+
+
+ + + +
316
+
+
+ + + +
317
+
+
+ + + +
318
+
+
+ + + +
320
+
+
+ + + +
321
+
+
+ + + +
322
+
+
+ + + +
323
+
+
+ + + +
324
+
+
+ + + +
325
+
+
+ + + +
326
+
+
+ + + +
327
+
+
+ + + +
328
+
+
+ + + +
330
+
+
+ + + +
331
+
+
+ + + +
332
+
+
+ + + +
333
+
+
+ + + +
334
+
+
+ + + +
335
+
+
+ + + +
336
+
+
+ + + +
337
+
+
+ + + +
338
+
+
+ + + +
339
+
+
+ + + +
340
+
+
+ + + +
341
+
+
+ + + +
342
+
+
+ + + +
342.1
+
+
+ + + +
343
+
+
+ + + +
344
+
+
+ + + +
345
+
+
+ + + +
346
+
+
+ + + +
347
+
+
+ + + +
348
+
+
+ + + +
349
+
+
+ + + +
350
+
+
+ + + +
351
+
+
+ + + +
352
+
+
+ + + +
353
+
+
+ + + +
354
+
+
+ + + +
355
+
+
+ + + +
356
+
+
+ + + +
357
+
+
+ + + +
358
+
+
+ + + +
360
+
+
+ + + +
361
+
+
+ + + +
362
+
+
+ + + +
363
+
+
+ + + +
364
+
+
+ + + +
365
+
+
+ + + +
366
+
+
+ + + +
367
+
+
+ + + +
368
+
+
+ + + +
369
+
+
+ + + +
370
+
+
+ + + +
371
+
+
+ + + +
372
+
+
+ + + +
373
+
+
+ + + +
374
+
+
+ + + +
375
+
+
+ + + +
376
+
+
+ + + +
377
+
+
+ + + +
378
+
+
+ + + +
379
+
+
+ + + +
380
+
+
+ + + +
381
+
+
+ + + +
382
+
+
+ + + +
383
+
+
+ + + +
384
+
+
+ + + +
385
+
+
+ + + +
386
+
+
+ + + +
387
+
+
+ + + +
388
+
+
+ + + +
389
+
+
+ + + +
390
+
+
+ + + +
391
+
+
+ + + +
392
+
+
+ + + +
393
+
+
+ + + +
394
+
+
+ + + +
395
+
+
+ + + +
396
+
+
+ + + +
397
+
+
+ + + +
398
+
+
+ + + +
399
+
+
+ + + +
400
+
+
+ + + +
401
+
+
+ + + +
402
+
+
+ + + +
403
+
+
+ + + +
404
+
+
+ + + +
405
+
+
+ + + +
406
+
+
+ + + +
407
+
+
+ + + +
408
+
+
+ + + +
410
+
+
+ + + +
411
+
+
+ + + +
412
+
+
+ + + +
413
+
+
+ + + +
414
+
+
+ + + +
415
+
+
+ + + +
416
+
+
+ + + +
417
+
+
+ + + +
EC
+
+
+ + + +
420
+
+
+ + + +
421
+
+
+ + + +
422
+
+
+ + + +
423
+
+
+ + + +
424
+
+
+ + + +
425
+
+
+ + + +
426
+
+
+ + + +
427
+
+
+ + + +
428
+
+
+ + + +
429
+
+
+ + + +
430
+
+
+ + + +
431
+
+
+ + + +
432
+
+
+ + + +
433
+
+
+ + + +
434
+
+
+ + + +
435
+
+
+ + + +
436
+
+
+ + + +
437
+
+
+ + + +
438
+
+
+ + + +
439
+
+
+ + + +
440
+
+
+ + + +
441
+
+
+ + + +
442
+
+
+ + + +
443
+
+
+ + + +
444
+
+
+ + + +
445
+
+
+ + + +
446
+
+
+ + + +
447
+
+
+ + + +
450
+
+
+ + + +
451
+
+
+ + + +
452
+
+
+ + + +
453
+
+
+ + + +
454
+
+
+ + + +
455
+
+
+ + + +
456
+
+
+ + + +
457
+
+
+ + + +
458
+
+
+ + + +
460
+
+
+ + + +
461
+
+
+ + + +
462
+
+
+ + + +
463
+
+
+ + + +
463.1
+
+
+ + + +
464
+
+
+ + + +
465
+
+
+ + + +
466
+
+
+ + + +
467
+
+
+ + + +
468
+
+
+ + + +
470
+
+
+ + + +
471
+
+
+ + + +
472
+
+
+ + + +
473
+
+
+ + + +
474
+
+
+ + + +
475
+
+
+ + + +
476
+
+
+ + + +
477
+
+
+ + + +
480
+
+
+ + + +
481
+
+
+ + + +
482
+
+
+ + + +
483
+
+
+ + + +
484
+
+
+ + + +
485
+
+
+ + + +
486
+
+
+ + + +
487
+
+
+ + + +
488
+
+
+ + + +
489
+
+
+ + + +
490
+
+
+ + + +
491
+
+
+ + + +
492
+
+
+ + + +
493
+
+
+ + + +
494
+
+
+ + + +
495
+
+
+ + + +
496
+
+
+ + + +
497
+
+
+ + + +
498
+
+
+ + + +
499
+
+
+ + + +
500
+
+
+ + + +
501
+
+
+ + + +
502
+
+
+ + + +
503
+
+
+ + + +
504
+
+
+ + + +
505
+
+
+ + + +
506
+
+
+ + + +
507
+
+
+ + + +
508
+
+
+ + + +
509
+
+
+ + + +
SL
+
+
+ + + +
510
+
+
+ + + +
511
+
+
+ + + +
512
+
+
+ + + +
513
+
+
+ + + +
514
+
+
+ + + +
515
+
+
+ + + +
516
+
+
+ + + +
517
+
+
+ + + +
520
+
+
+ + + +
521
+
+
+ + + +
522
+
+
+ + + +
523
+
+
+ + + +
524
+
+
+ + + +
525
+
+
+ + + +
526
+
+
+ + + +
527
+
+
+ + + +
528
+
+
+ + + +
529
+
+
+ + + +
530
+
+
+ + + +
531
+
+
+ + + +
532
+
+
+ + + +
533
+
+
+ + + +
5331
+
+
+ + + +
5331a
+
+
+ + + +
5331c
+
+
+ + + +
5331e
+
+
+ + + +
5331i
+
+
+ + + +
5331p
+
+
+ + + +
5331u
+
+
+ + + +
5331o
+
+
+ + + +
5331t
+
+
+ + + +
5331v
+
+
+ + + +
5331y
+
+
+ + + +
5331m
+
+
+ + + +
5331f
+
+
+ + + +
5331h
+
+
+ + + +
5331r
+
+
+ + + +
5331s
+
+
+ + + +
5331g
+
+
+ + + +
5331b
+
+
+ + + +
5331x
+
+
+ + + +
534
+
+
+ + + +
5341
+
+
+ + + +
5341i
+
+
+ + + +
5341i1
+
+
+ + + +
5341i2
+
+
+ + + +
5341i3
+
+
+ + + +
5341i4
+
+
+ + + +
5341i5
+
+
+ + + +
5341i6
+
+
+ + + +
5341i7
+
+
+ + + +
5341m
+
+
+ + + +
5341m1
+
+
+ + + +
5341m2
+
+
+ + + +
5341m3
+
+
+ + + +
5341m4
+
+
+ + + +
5341m5
+
+
+ + + +
5341m6
+
+
+ + + +
5341m7
+
+
+ + + +
5341m8
+
+
+ + + +
5341m9
+
+
+ + + +
5341m10
+
+
+ + + +
5341m11
+
+
+ + + +
5341c
+
+
+ + + +
5341c1
+
+
+ + + +
5341c2
+
+
+ + + +
5341c3
+
+
+ + + +
5341c4
+
+
+ + + +
5341c5
+
+
+ + + +
5341c6
+
+
+ + + +
5341a
+
+
+ + + +
5341a1
+
+
+ + + +
5341a2
+
+
+ + + +
5341a3
+
+
+ + + +
5341a4
+
+
+ + + +
5341a5
+
+
+ + + +
5341a6
+
+
+ + + +
5341a7
+
+
+ + + +
5341a8
+
+
+ + + +
5341a9
+
+
+ + + +
5341a10
+
+
+ + + +
5341a11
+
+
+ + + +
5341a12
+
+
+ + + +
5341e
+
+
+ + + +
5341s
+
+
+ + + +
5341x
+
+
+ + + +
5341r
+
+
+ + + +
535
+
+
+ + + +
536
+
+
+ + + +
537
+
+
+ + + +
537.1
+
+
+ + + +
538
+
+
+ + + +
539
+
+
+ + + +
5310
+
+
+ + + +
5311
+
+
+ + + +
540
+
+
+ + + +
541
+
+
+ + + +
542
+
+
+ + + +
543
+
+
+ + + +
544
+
+
+ + + +
545
+
+
+ + + +
546
+
+
+ + + +
547
+
+
+ + + +
548
+
+
+ + + +
549
+
+
+ + + +
550
+
+
+ + + +
551
+
+
+ + + +
552
+
+
+ + + +
553
+
+
+ + + +
554
+
+
+ + + +
555
+
+
+ + + +
556
+
+
+ + + +
557
+
+
+ + + +
558
+
+
+ + + +
560
+
+
+ + + +
561
+
+
+ + + +
562
+
+
+ + + +
563
+
+
+ + + +
564
+
+
+ + + +
565
+
+
+ + + +
566
+
+
+ + + +
567
+
+
+ + + +
SG
+
+
+ + + +
570
+
+
+ + + +
571
+
+
+ + + +
572
+
+
+ + + +
573
+
+
+ + + +
574
+
+
+ + + +
575
+
+
+ + + +
576
+
+
+ + + +
577
+
+
+ + + +
578
+
+
+ + + +
579
+
+
+ + + +
580
+
+
+ + + +
581
+
+
+ + + +
582
+
+
+ + + +
583
+
+
+ + + +
584
+
+
+ + + +
585
+
+
+ + + +
586
+
+
+ + + +
587
+
+
+ + + +
588
+
+
+ + + +
589
+
+
+ + + +
590
+
+
+ + + +
591
+
+
+ + + +
592
+
+
+ + + +
593
+
+
+ + + +
594
+
+
+ + + +
595
+
+
+ + + +
596
+
+
+ + + +
597
+
+
+ + + +
600
+
+
+ + + +
601
+
+
+ + + +
602
+
+
+ + + +
603
+
+
+ + + +
604
+
+
+ + + +
605
+
+
+ + + +
606
+
+
+ + + +
607
+
+
+ + + +
608
+
+
+ + + +
609
+
+
+ + + +
610
+
+
+ + + +
611
+
+
+ + + +
612
+
+
+ + + +
613
+
+
+ + + +
614
+
+
+ + + +
615
+
+
+ + + +
616
+
+
+ + + +
617
+
+
+ + + +
618
+
+
+ + + +
619
+
+
+ + + +
PP
+
+
+ + + +
620
+
+
+ + + +
621
+
+
+ + + +
621.1
+
+
+ + + +
621.2
+
+
+ + + +
621.3
+
+
+ + + +
621.4
+
+
+ + + +
622
+
+
+ + + +
623
+
+
+ + + +
624
+
+
+ + + +
625
+
+
+ + + +
626
+
+
+ + + +
626.1
+
+
+ + + +
626.2
+
+
+ + + +
626.3
+
+
+ + + +
626.4
+
+
+ + + +
626.5
+
+
+ + + +
627
+
+
+ + + +
628
+
+
+ + + +
628.1
+
+
+ + + +
629
+
+
+ + + +
630
+
+
+ + + +
631
+
+
+ + + +
632
+
+
+ + + +
633
+
+
+ + + +
634
+
+
+ + + +
635
+
+
+ + + +
636
+
+
+ + + +
640
+
+
+ + + +
641
+
+
+ + + +
642
+
+
+ + + +
643
+
+
+ + + +
644
+
+
+ + + +
645
+
+
+ + + +
646
+
+
+ + + +
647
+
+
+ + + +
648
+
+
+ + + +
650
+
+
+ + + +
651
+
+
+ + + +
652
+
+
+ + + +
653
+
+
+ + + +
654
+
+
+ + + +
655
+
+
+ + + +
656
+
+
+ + + +
657
+
+
+ + + +
658
+
+
+ + + +
659
+
+
+ + + +
660
+
+
+ + + +
661
+
+
+ + + +
662
+
+
+ + + +
663
+
+
+ + + +
664
+
+
+ + + +
665
+
+
+ + + +
666
+
+
+ + + +
667
+
+
+ + + +
668
+
+
+ + + +
669
+
+
+ + + +
AR
+
+
+ + + +
670
+
+
+ + + +
671
+
+
+ + + +
672
+
+
+ + + +
673
+
+
+ + + +
674
+
+
+ + + +
675
+
+
+ + + +
676
+
+
+ + + +
677
+
+
+ + + +
680
+
+
+ + + +
681
+
+
+ + + +
682
+
+
+ + + +
683
+
+
+ + + +
684
+
+
+ + + +
685
+
+
+ + + +
686
+
+
+ + + +
687
+
+
+ + + +
688
+
+
+ + + +
689
+
+
+ + + +
690
+
+
+ + + +
691
+
+
+ + + +
692
+
+
+ + + +
693
+
+
+ + + +
693.1
+
+
+ + + +
694
+
+
+ + + +
695
+
+
+ + + +
695.1
+
+
+ + + +
696
+
+
+ + + +
696.1
+
+
+ + + +
696.2
+
+
+ + + +
697
+
+
+ + + +
698
+
+
+ + + +
700
+
+
+ + + +
701
+
+
+ + + +
702
+
+
+ + + +
703
+
+
+ + + +
704
+
+
+ + + +
705
+
+
+ + + +
706
+
+
+ + + +
707
+
+
+ + + +
708
+
+
+ + + +
710
+
+
+ + + +
711
+
+
+ + + +
712
+
+
+ + + +
713
+
+
+ + + +
714
+
+
+ + + +
715
+
+
+ + + +
716
+
+
+ + + +
717
+
+
+ + + +
718
+
+
+ + + +
719
+
+
+ + + +
720
+
+
+ + + +
721
+
+
+ + + +
722
+
+
+ + + +
723
+
+
+ + + +
724
+
+
+ + + +
725
+
+
+ + + +
726
+
+
+ + + +
727
+
+
+ + + +
728
+
+
+ + + +
729
+
+
+ + + +
730
+
+
+ + + +
731
+
+
+ + + +
732
+
+
+ + + +
733
+
+
+ + + +
734
+
+
+ + + +
735
+
+
+ + + +
736
+
+
+ + + +
737
+
+
+ + + +
738
+
+
+ + + +
740
+
+
+ + + +
741
+
+
+ + + +
742
+
+
+ + + +
743
+
+
+ + + +
744
+
+
+ + + +
745
+
+
+ + + +
746
+
+
+ + + +
747
+
+
+ + + +
748
+
+
+ + + +
750
+
+
+ + + +
751
+
+
+ + + +
752
+
+
+ + + +
753
+
+
+ + + +
754
+
+
+ + + +
754.1
+
+
+ + + +
754.2
+
+
+ + + +
755
+
+
+ + + +
755.1
+
+
+ + + +
756
+
+
+ + + +
757
+
+
+ + + +
758
+
+
+ + + +
759
+
+
+ + + +
WR
+
+
+ + + +
760
+
+
+ + + +
761
+
+
+ + + +
762
+
+
+ + + +
763
+
+
+ + + +
764
+
+
+ + + +
765
+
+
+ + + +
766
+
+
+ + + +
767
+
+
+ + + +
768
+
+
+ + + +
769
+
+
+ + + +
770
+
+
+ + + +
771
+
+
+ + + +
772
+
+
+ + + +
773
+
+
+ + + +
774
+
+
+ + + +
775
+
+
+ + + +
776
+
+
+ + + +
776.1
+
+
+ + + +
776.2
+
+
+ + + +
776.3
+
+
+ + + +
776.4
+
+
+ + + +
776.5
+
+
+ + + +
776.6
+
+
+ + + +
777
+
+
+ + + +
778
+
+
+ + + +
778.1
+
+
+ + + +
778.2
+
+
+ + + +
779
+
+
+ + + +
780
+
+
+ + + +
781
+
+
+ + + +
782
+
+
+ + + +
782.1
+
+
+ + + +
782.2
+
+
+ + + +
783
+
+
+ + + +
783.1
+
+
+ + + +
784
+
+
+ + + +
785
+
+
+ + + +
786
+
+
+ + + +
787
+
+
+ + + +
788
+
+
+ + + +
788.1
+
+
+ + + +
788.2
+
+
+ + + +
789
+
+
+ + + +
790
+
+
+ + + +
791
+
+
+ + + +
792
+
+
+ + + +
793
+
+
+ + + +
794
+
+
+ + + +
795
+
+
+ + + +
796
+
+
+ + + +
797
+
+
+ + + +
798
+
+
+ + + +
800
+
+
+ + + +
801
+
+
+ + + +
802
+
+
+ + + +
803
+
+
+ + + +
804
+
+
+ + + +
805
+
+
+ + + +
810
+
+
+ + + +
811
+
+
+ + + +
812
+
+
+ + + +
813
+
+
+ + + +
814
+
+
+ + + +
815
+
+
+ + + +
816
+
+
+ + + +
820
+
+
+ + + +
821
+
+
+ + + +
822
+
+
+ + + +
823
+
+
+ + + +
824
+
+
+ + + +
824.1
+
+
+ + + +
825
+
+
+ + + +
826
+
+
+ + + +
827
+
+
+ + + +
828
+
+
+ + + +
829
+
+
+ + + +
LC
+
+
+ + + +
830
+
+
+ + + +
831
+
+
+ + + +
832
+
+
+ + + +
833
+
+
+ + + +
834
+
+
+ + + +
835
+
+
+ + + +
836
+
+
+ + + +
837
+
+
+ + + +
838
+
+
+ + + +
839
+
+
+ + + +
840
+
+
+ + + +
841
+
+
+ + + +
842
+
+
+ + + +
843
+
+
+ + + +
844
+
+
+ + + +
845
+
+
+ + + +
846
+
+
+ + + +
847
+
+
+ + + +
848
+
+
+ + + +
850
+
+
+ + + +
851
+
+
+ + + +
852
+
+
+ + + +
853
+
+
+ + + +
854
+
+
+ + + +
855
+
+
+ + + +
856
+
+
+ + + +
857
+
+
+ + + +
858
+
+
+ + + +
860
+
+
+ + + +
861
+
+
+ + + +
862
+
+
+ + + +
863
+
+
+ + + +
864
+
+
+ + + +
865
+
+
+ + + +
866
+
+
+ + + +
867
+
+
+ + + +
867.1
+
+
+ + + +
868
+
+
+ + + +
869
+
+
+ + + +
870
+
+
+ + + +
871
+
+
+ + + +
872
+
+
+ + + +
873
+
+
+ + + +
874
+
+
+ + + +
875
+
+
+ + + +
876
+
+
+ + + +
876.1
+
+
+ + + +
876.2
+
+
+ + + +
876.3
+
+
+ + + +
877
+
+
+ + + +
880
+
+
+ + + +
881
+
+
+ + + +
882
+
+
+ + + +
883
+
+
+ + + +
884
+
+
+ + + +
885
+
+
+ + + +
886
+
+
+ + + +
887
+
+
+ + + +
888
+
+
+ + + +
890
+
+
+ + + +
TX
+
+
+ + + +
900
+
+
+ + + +
901
+
+
+ + + +
902
+
+
+ + + +
903
+
+
+ + + +
910
+
+
+ + + +
911
+
+
+ + + +
912
+
+
+ + + +
913
+
+
+ + + +
914
+
+
+ + + +
915
+
+
+
+ + + + +
BT
+
RT
+
+
+ + + +
FT
+
TLb
+
+
+ + + +
LT
+
TLt
+
+
+
+ + + + + +
adv
+
adv
+
+ +
An adverb, narrowly defined, is a part of speech whose members modify verbs for such categories as time, manner, place, or direction. An adverb, broadly defined, is a part of speech whose members modify any constituent class of words other than nouns, such as verbs, adjectives, adverbs, phrases, clauses, or sentences. Under this definition, the possible type of modification depends on the class of the constituent being modified.
+
Dans un sens restreint, un adverbe modifie un verbe à propos d’informations concernant le moment, le lieu, la manière ou la direction. Dans un sens plus large, un adverbe modifie n’importe quel autre constituant autre que le nom, tel qu’un verbe, un adjectif, un adverbe, un syntagme, une proposition ou une phrase. Dans cette acception, le type de modification apportée par l’adverbe dépend de la classe du constituant qui est modifié.
+
+
+ + + +
n
+
n
+
+ +
A noun is a broad classification of parts of speech which include substantives and nominals.
+
+
+
+ + + +
pro-form
+
proforme
+
+ +
A pro-form is a part of speech whose members usually substitute for other constituents, including phrases, clauses, or sentences, and whose meaning is recoverable from the linguistic or extralinguistic context.
+
+
+
+ + + +
pro
+
pron
+
+ +
A pronoun is a pro-form which functions like a noun and substitutes for a noun or noun phrase.
+
Un pronom se substitue à un nominal (nom ou syntagme nominal).
+
+
+ + + +
v
+
v
+
+ +
A verb is a part of speech whose members typically signal events and actions; constitute, singly or in a phrase, a minimal predicate in a clause; govern the number and types of other constituents which may occur in the clause; and, in inflectional languages, may be inflected for tense, aspect, voice, modality, or agreement with other constituents in person, number, or grammatical gender.
+
Un verbe est une partie du discours caractérisée syntaxiquement par sa fonction de prédicat. En tant que tel, il gouverne la structure argumentale de la proposition, c’est-à-dire le nombre d’arguments possibles. Dans les langues flexionnelles, il peut être fléchi en ce qui concerne le temps, l’aspect, la voix ou le mode ; il peut aussi être en accord avec d’autres constituants en ce qui concerne la personne, le nombre ou le genre. Du point de vue sémantique, il désigne généralement des événements et des actions ou encore des états.
+
+
+
+ + + + +
part
+
part
+
+ +
A particle is a word that does not belong to one of the main classes of words, is invariable in form, and typically has grammatical or pragmatic meaning.
+
Une particule est un mot n’appartenant pas à l’une des classes grammaticales majeures, dont la forme est invariable et qui a en général une valeur grammaticale ou pragmatique.
+
+
+ + + +
ifx
+
infx
+
+ +
An infix is an affix that is inserted within a root or stem.
+
Un infixe est un affixe qui s’insère à l’intérieur d’une base ou d’un radical.
+
+ + +
+ + + +
pfx
+
pfx
+
+ +
A prefix is an affix that is joined before a root or stem.
+
Un préfixe est un affixe qui précède une base ou un radical (qui est donc placé à gauche de la base ou du radical).
+
+ +
+ + + +
smfx
+
smfx
+
+ +
A simulfix is a change or replacement of vowels or consonants (usually vowels) which changes the meaning of a word. (Note: the parser does not currently handle simulfixes.)
+
Un simulfixe est un affixe consistant en un changement ou en un remplacement de voyelles ou de consonnes (généralement des voyelles), un changement de sens résultant de ce changement ou ce remplacement. (Remarque : l’analyseur ne permet pas actuellement de prendre en charge les simulfixes.)
+
+ + +
+ + + +
sfx
+
sfx
+
+ +
A suffix is an affix that is attached to the end of a root or stem.
+
Un suffixe est un affixe qui suit une base ou un radical (qui est donc placé à droite de la base ou du radical).
+
+ +
+ + + +
spfx
+
spfx
+
+ +
A suprafix is a kind of affix in which a suprasegmental is superimposed on one or more syllables of the root or stem, signalling a particular morphosyntactic operation. (Note: the parser does not currently handle suprafixes.)
+
Un suprafixe est une sorte d’affixe dans lequel un trait suprasegmental est imposé à une ou plusieurs syllabes de la base ou du radical signalant un processus morphosyntaxique. (Remarque : l’analyseur ne permet pas actuellement de prendre en charge les suprafixes.)
+
+ + +
+ + + +
cfx
+
cfx
+
+ +
A circumfix is an affix made up of two separate parts which surround and attach to a root or stem.
+
Un circonfixe est un affixe constitué de deux parties distinctes qui s’attachant de part de d’autre de la base ou du radical.
+
+
+ + + +
clit
+
clit
+
+ +
A clitic is a morpheme that has syntactic characteristics of a word, but shows evidence of being phonologically bound to another word. Orthographically, it stands alone.
+
Un clitique est un morphème qui possède les caractérstiques syntaxiques d’un mot mais qui est cependant, du point de vue phonologique, une forme liée, prenant appuis sur un autre mot. Dans l’orthographe, il est écrit séparément.
+
+
+ + + +
enclit
+
enclit
+
+ +
An enclitic is a clitic that is phonologically joined at the end of a preceding word to form a single unit. Orthographically, it may attach to the preceding word.
+
Un enclitique est un clitique qui prend appui sur un mot qui le précède pour former avec lui une unité phonologique. Dans l’orthographe, il peut être rattaché au mot précédent.
+
+ +
+ + + +
proclit
+
proclit
+
+ +
A proclitic is a clitic that precedes the word to which it is phonologically joined. Orthographically, it may attach to the following word.
+
Un proclitique est un clitique qui prend appui sur un mot qui le suit pour former avec lui une unité phonologique. Dans l’orthographe, il peut être rattaché au mot suivant.
+
+ +
+ + + +
bd root
+
rd. lié
+
+ +
A bound root is a root which cannot occur as a separate word apart from any other morpheme.
+
Un radical lié est un radical qui ne peut pas apparaître seul, mais doit toujours être accompagné d’au moins un autre morphème.
+
+ +
+ + + +
ubd root
+
rd
+
+ +
A root is the portion of a word that (i) is common to a set of derived or inflected forms, if any, when all affixes are removed, (ii) is not further analyzable into meaningful elements, being morphologically simple, and, (iii) carries the principle portion of meaning of the words in which it functions.
+
Un radical est un morphème (1°) commun à un ensemble de formes dérivées ou infléchies, obtenu après suppression de tous les affixes (dans ce sens, on parle aussi de « racine »), (2°) morphologiquement simple, donc inanalysable en constituants signifiants , et (3°) ayant la principale part du sens du mot à l’intérieur duquel il fonctionne.
+
+
+ + + +
bd stem
+
base liée
+
+ +
A bound stem is a stem which cannot occur as a separate word apart from any other morpheme.
+
Une base liée est une base qui ne peut pas apparaître seule, mais doit toujours être accompagnée d’au moins un autre morphème.
+
+ +
+ + + +
ubd stem
+
base
+
+ +
"A stem is the root or roots of a word, together with any derivational affixes, to which inflectional affixes are added." (LinguaLinks Library). A stem "may consist solely of a single root morpheme (i.e. a 'simple' stem as in man), or of two root morphemes (e.g. a 'compound' stem, as in blackbird), or of a root morpheme plus a derivational affix (i.e. a 'complex' stem, as in manly, unmanly, manliness). All have in common the notion that it is to the stem that inflectional affixes are attached." (Crystal, 1997:362)
+
Une base est l’élément d’un mot auquel se joignent les affixes flexionnels. Elle peut être simple (un radical, p.ex. « homme ») ou complexe. Dans ce dernier cas, elle peut être composée, c’est-à-dire constituée de plusieurs radicaux (p.ex. « bonhomme ») ou dérivée, c’est-à-dire constituée d’un ou plusieurs radicaux munis d’un ou plusieurs affixes dérivationnels (p.ex. « montage », « démontage »).
+
+
+ + + +
ifxnfx
+
infx.intfx
+
+ +
An infixing interfix is an infix that can occur between two roots or stems.
+
Un infixe interfixé est un infixe placé entre deux bases ou deux radicaux.
+
+ + +
+ + + +
pfxnfx
+
pfx.intfx
+
+ +
A prefixing interfix is a prefix that can occur between two roots or stems.
+
Un préfixe interfixé est un préfixe placé entre deux bases ou deux radicaux.
+
+ +
+ + + +
sfxnfx
+
sfx.intfx
+
+ +
A suffixing interfix is an suffix that can occur between two roots or stems.
+
Un suffixe interfixé est un suffixe placé entre deux bases ou deux radicaux.
+
+ +
+ + + +
phr
+
loc
+
+ +
A phrase is a syntactic structure that consists of more than one word but lacks the subject-predicate organization of a clause.
+
Une locution est une structure comportant plus d’un mot mais qui n’est pas construite sur l’organisation typique d’une phrase.
+
+
+ + + +
dis phr
+
loc. disc
+
+ +
A discontiguous phrase has discontiguous constituents which (a) are separated from each other by one or more intervening constituents, and (b) are considered either (i) syntactically contiguous and unitary, or (ii) realizing the same, single meaning. An example is French ne...pas.
+
Une locution discontinue est formée de constituants discontinus qui (a) sont séparés les uns des autres par un ou plusieurs constituants, et (b) sont considérés soit comme (1°) syntaxiquement contigus et unitaires, ou (2°) manifestent un même et unique sens. Par exemple la négation ne…pas.
+
+
+
+ + + + + +
Main
+
+
+
+ + + + + +
Anat
+
anat
+
+
+ + + +
Anthro
+
anthrop
+
+
+ + + +
Cult anthro
+
anthrop. cult
+
+
+ + + +
crclt adapt
+
adapt. cult
+
+
+ + + +
Artintel
+
intell. artif
+
+
+ + + +
Comp sci
+
inform
+
+
+ + + +
Ed
+
didact
+
+
+ + + +
Graph
+
graphol
+
+
+ + + +
lang lrn
+
appr. lang
+
+
+ + + +
Leg
+
jur
+
+
+ + + +
Ling
+
ling
+
+
+ + + +
App ling
+
ling. appl
+
+
+ + + +
Comp ling
+
ling. comp
+
+
+ + + +
Gramm
+
gramm
+
+
+ + + +
Disc
+
disc
+
+
+ + + +
Morph
+
morph
+
+
+ + + +
Synt
+
synt
+
+
+ + + +
Hist ling
+
ling. hist
+
+
+ + + +
Lexicog
+
lexicogr
+
+
+ + + +
Lexicol
+
lexicol
+
+
+ + + +
Phon
+
phon
+
+
+ + + +
Acous phon
+
phon. acoust
+
+
+ + + +
Art phon
+
phon. artic
+
+
+ + + +
Phono
+
phonol
+
+
+ + + +
Autoseg phono
+
phonol. autosegm
+
+
+ + + +
Gen phono
+
phonol. gén
+
+
+ + + +
Lex phono
+
phonol. lex
+
+
+ + + +
Met phono
+
phonol. métr
+
+
+ + + +
Non-lin phono
+
phonol. nonlin
+
+
+ + + +
Phonm
+
phoném
+
+
+ + + +
Prag
+
pragm
+
+
+ + + +
Sem
+
sém
+
+
+ + + +
Semiot
+
sémiot
+
+
+ + + +
Lit
+
alphab
+
+
+ + + +
newitem
+
+
+ + + +
Lit
+
litt
+
+
+ + + +
Poet
+
poés
+
+
+ + + +
Rhet
+
rhét
+
+
+ + + +
styl
+
styl
+
+
+ + + +
Log
+
log
+
+
+ + + +
Math
+
math
+
+
+ + + +
Med
+
média
+
+
+ + + +
Medi
+
méd
+
+
+ + + +
Phil
+
phil
+
+
+ + + +
Psycholing
+
psycholing
+
+
+ + + +
Psycho
+
psychol
+
+
+ + + +
Rel
+
relig
+
+
+ + + +
Rit
+
rit
+
+
+ + + +
Socio ling
+
socioling
+
+
+ + + +
App ling
+
+
+ + + +
Comp ling
+
+
+ + + +
Hist ling
+
+
+ + + +
Surv
+
enqu
+
+
+ + + +
Socio
+
sociol
+
+
+ + + +
Trans
+
trad
+
+
+
+ + + + + +
fig
+
fig
+
+
+ + + +
prim
+
prim
+
+
+
+ + + + + +
arch
+
vx
+
+
+ + + +
col
+
fam
+
+
+ + + +
form
+
sout
+
+
+ + + +
hist
+
hist
+
+
+ + + +
hon
+
hon
+
+
+ + + +
inform
+
pop
+
+
+ + + +
non std
+
non std
+
+
+ + + +
obso
+
vieilli
+
+
+ + + +
oldfash
+
anct
+
+
+ + + +
rare
+
rare
+
+
+ + + +
reg
+
niv
+
+
+ + + +
bas reg
+
cour
+
+
+ + + +
hi reg
+
niv.ht
+
+
+ + + +
low reg
+
niv.bs
+
+
+ + + +
mid reg
+
niv.moy
+
+
+ + + +
rest
+
restr
+
+
+ + + +
anml
+
anim
+
+
+ + + +
hum
+
hum
+
+
+ + + +
f
+
f
+
+
+ + + +
m
+
m
+
+
+ + + +
sib
+
germ.msx
+
+
+ + + +
obsc
+
vulg
+
+
+ + + +
off
+
triv
+
+
+ + + +
tab
+
tab
+
+
+ + + +
slg
+
arg
+
+
+ + + +
trad
+
trad
+
+
+
+
diff --git a/tests/corpus/flex/AllFLExFields/WritingSystems/en.ldml b/tests/corpus/flex/AllFLExFields/WritingSystems/en.ldml new file mode 100644 index 0000000..39a5729 --- /dev/null +++ b/tests/corpus/flex/AllFLExFields/WritingSystems/en.ldml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/corpus/flex/AllFLExFields/WritingSystems/fr.ldml b/tests/corpus/flex/AllFLExFields/WritingSystems/fr.ldml new file mode 100644 index 0000000..87dcdca --- /dev/null +++ b/tests/corpus/flex/AllFLExFields/WritingSystems/fr.ldml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/corpus/flex/AllFLExFields/WritingSystems/th.ldml b/tests/corpus/flex/AllFLExFields/WritingSystems/th.ldml new file mode 100644 index 0000000..236fd6b --- /dev/null +++ b/tests/corpus/flex/AllFLExFields/WritingSystems/th.ldml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/corpus/folder/Moma/Moma.lift b/tests/corpus/folder/Moma/Moma.lift new file mode 100644 index 0000000..470490e --- /dev/null +++ b/tests/corpus/folder/Moma/Moma.lift @@ -0,0 +1,79 @@ + + + + +
+ loka +
+
+ adat-63531587437330.wav +
+
+ + + +
+ banana +
+
+ platano +
+
+ loka-63531587541460.wav +
+
+ +
+
+ + +
+ mata +
+
+ mata-63531587590792.wav +
+
+ + + +
+ eye +
+
+ ojo +
+
+ mata-63531587597879.wav +
+
+ +
+
+
\ No newline at end of file diff --git a/tests/corpus/folder/Moma/audio/adat-63531587437330.wav b/tests/corpus/folder/Moma/audio/adat-63531587437330.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c47b3b7a52ae2f4d19e705f3f5b881f742381f3 GIT binary patch literal 48874 zcmaI8byQSQ`#pYc%`h-@2^J={A{Js`VRv_TcZ=OEcDDkGEr@~Lg^DO43P?A@#J%^N z-^O>n>+}BcT|Z_`FmoAZ&Uw!B>}T(NZojU9fqxznGPvEKPLpOX@Nyu8aJUo~sI;hq3>A{NE%0``Ul+%bx##{}=Y}=f8jV|2n4ZJ^uH7%6=<5?mxHx{mZiZ|NeE^ z{eK_-@ALmT_J3db?=%1V-2eWs|9$>H$NuND{O6dmPw?NP|8r#7NUUI6h(dppiS%K7 z(C7Sb3%+)Wm0~Z)&WJU|#(&TGJ~vMPW9N?wKezmJjqefvEPhGCy#$ZMq=cM=c8Svy zk0(}38j-}Ex+x1W5KNtSI|C8`%V#@lIxRh0? z;i=0~*QXv!otT=JIxy{f+P$>RY1V)LruqJ@_ct@GAg%A;F@Jyl&H39p{bTyebf=7i z86PrkWi-nS%XG-b<3d4c(S!Onsk1uqJ!6<#Z3g{O;l6kRKtTfD3|tk}I|X-Ngc9K%;bqtY&=S4y3Y zPR1d|kH#&={l>S(m&W(TIi{1QHzpf%rm2N_s`->T(OlPJwz$cj@*p`){vzkgX1TUf zUI|cwm2pa#Vp42WTXneFO?6kRsHMt0<%^P_R8T|J9jXgmK{M$DHjJe)caqN(_JiGI z_t+vfgf(R?SsgZx1+ji?IeShyR*&7GrSvY{g-a7!hyGGus~^-&YKZzvO;an-9Mz5% zt2fmis*5^QjaQZ{2b9@Ld&OUwr35Oql=@0drAYQv8YyYAN%m9vD|7Jq8YsP$P~3l2 za+Fl%qVfip9Hl_HrCe3EE4`FFc?^zlP&z4VmFY@1WtnnHiBkl%xjIvQqgJC6=tBCK zR$-LJ(T;2sYr2C|8aCsT9*8J(?Qc7*L2AwwbcY_W@}0%UNce?FXc*IHGMP=8jBPr z?U0s9^P~wjEVdCP@q##7OcRJ0A=D5m2o6F%zh1a4oDnLDSA=w7faon=5H!L? zz7`+Ed2%}L2$@U5$W^kPB#|ndfkcxU$a)P)Jj-GiSs2q3E7E{8CDq6s_L1#jB5T9S zu}o^DMf52RqxI=ldVr3ki)aYFPebW5%x)+>O2g?88c%I-Fuf zFY|GHHQ|)-Q795jLcS0w+!f{s-SK@Z;+stpjtI|%j^cdLPFf=^kWNXTr4%VsijxW? zKg}M^bOwH)+e5g<7xDT07d{oAejz`P@5pCy8vZEPf$Pq-;(ieWi6l435z>o{A~NGK4qeDl zGJ!P5cwHu^F*_H@HnNY*A$5p}#j(?@53^yLX%W^8^T>0VOiMbk zN~{@+plj(x+KG;*tLaJll@4Xs*=OdDF^?mqBo(t*NHm-~cZ7S*wdNln53~{<2_E7f z;j<8f?{`U9i|aXIF7EFMyjWcf6c>rB#4#B4+u~{Qh`3vvCO#I=itohNVzj7}T1%a! zdXl45B5EYF_*cvoW5gw5XVC|LTVJ#l6}(Gbv8mVs?=%x5I!}Br`b&XQSLuZmD=m^1 zO9Lcp={k=5AuPn&S%fjIBTN;x2*-p0h~+VYi%`N35PAsXgrP!Xp_|Y}Xoh3j3gLVs zz74PE!|`pVBhzi=c5pMf5!`65CYOSI(hBIQ8rg&BtI1MnAx7{DJ%YTjhpwVuXaTZ> z$Z8|so}mxv20D&*raF30U5iRkO)alhS2L9q<+ehVJf%>Xp>9xjswwI$WEz={M>Ok* zJ?TsCk|L5oDsr8?)b*5qHln0Lb3Js`Y6WVILdqCFyfyf{%Dj&VCHp2Ya?L&R-G#@Q+a3SEU< zz9Pn9nvf@C362=;{^B`t6t4MVinv^yifa$CIkIqw@JmpIE#g&Vh)~SkMDdw8Q1ry* zA)dDvX9>H7d5GE3!agBD*e*m1!HD)MVvNv8F!43<${GGXAIcx&hwvl$)%-BtmjA#_ z<6O80SS?nc@hpa3rc3A;I*c}@?dd1=p_-%y zsp0Am^@5tA7ORoS9yip_sK5`^1XV|$s$DQQNpv~ejhelZJ!f73S?R15R*lMPkQSsj zvc`Jkrir96DP`}Oh5bZkaYb!-!>S^0Yw_9@vX|T@I<5j&mkZ;PxSGfxc^Km;J_na7 zf<0oYkC4Y-LoRHC5j~B3U0!S`Mu<+*4^b6|NWGO;bjDORyOx(`St z99Y3iJ*cd}#ZMWaEK;o0QR*6uphR2HJM=o;O)t^Y81vJpjPL1lhW=?C6U zc*2IcaUXM8`5&M8#SMabm0#ir6w;0QM*5`RROT z{u~$0jpXvMTF;RjCXqvk(3$Ky{Y0ZNCY@*?b)_R{7y3i(O>0wMJhlU(*oxTQNdu65 zm(%X}eI}iUF^Qo!X#-}3_%6k$-cjeNom3w+MA@fIRW>Pp>M1o72$E2vx*wHsu-aRF zrkquF14m9$_AB{Hb#;o`KuuD5Vn&y#x76e6X7!6Y7AU3xtq9x_3bgl@TCp?8?=x8k zvX-nQQ5fk|TXYoLi3Iti zJMK4$FU1fsNjxPci}j_u;&)WdA;`^j#3Zcy5R6tOp{{V6e~&d1hI-2h9)blpXC0!r z4AaaO`s4LLAd0X2FMb^F4g`0JYs9tSQpq85hRg<9V9b%!Cn1QJ2(|(1R|EX8i@YO0 zNi9^u10)%>PKS!O3EyfCa>N=I#d;#blUOjj&+@R6&$BIT3GnZ2jDbDNLOgG!S%_6V z>w>84&vfi74Wj!|=Nix~bs=IuRPCx}qZ4R>wb4XPQ;bSowW+!ny}|_bF7inj*1`*{ zgcmfHzN1mp75}*o{=;R&^9%gPIbxuQq^Aq{q{3~7*e1(BR zfv{Zsge;MO=nO-ajS-)s{^f}!sDuXb5^CdJWa|B5ZP7zC330+kVU4f@xn;A^PPi%D z7nUN+L<)=XOhvH);y6ZpfPB4G9DscP4E1ci5X7f)KKw0i4>E(w9pKhsB~8WJIfu_u zfR)sU-_M`oXCs&N;!pDrf#G(bdJN#N@bB=rKHrc3!#zMe^uo&fh1~dzl_T$wkH51` z>?ym-Ml(m2kG`iH;=C)ZOKZ~dsCUiiG`bjhqds!PAi5b?ZlyX1y-&XK3*F3mbXjdw zhTAX76VyT%Ri{R)s@j^iq#F_AS{jC~X_@M)u25&FOVxeqbu~-%qeJOZ%-eNT+t+k5 zX1FISPdbyM#Eo+U;@rT6qe5QhI&v$yWw`a?^vKjE@|SpVzk#{8?o6MHruO-itrSx92JP zpEmqhVBUUw64pmB?#{3bCkorN~G;GIU4Yjep5q;Er>Dxp>Z+|AH~M<6ZHW z-?<=e7MG6L{Y@sLD;N$`;Rtk5%F^gSa)|aN#{~DpOHY%3@AvIU%4hVO*n4v079|6E z2fbZ6H;4u47qK8(Z=b`f)B>(aiR7{_3AQp4GXwFE+TiZ_!AH@($RWmO5{$+03`U?~m&59eQYAYr}0_TwYn7HdieA zp6Qk}@YS(9e?v^?CtSRLX$f^>3Bd#h+f@yY}(S z!h;|7uRhY_Ttw8TxS0IWY=kIqTjYABv+_&R5BzDG8j-m-*FJY^=JS;LNn+ycpUJWI zu~Wal`C0ILZ*GyPhS1+O%)L$3b>63|ggezDU-E7yZ~u1n!Wyi9yZOad2iuSC?AA@+?OCT)ZK9k0sk^G`E>FEnPkkaE zXC7ZPH@h@tV$!VmqWC|_yVG6rt&G*lB%7t~`f3yEy8Fy)qG{^iq*CK+_4|2OuQH>2 ze~$yslG9Ns=hKG}HDt{<>ln9(%f27Xc%|uJ>Fp2tAxJmrM6XjTSWw4REa=^;_Cb?Y z#Ra9Ua16S+;8Md@wz~tGPP?(__u$$kbzdFH?(SK~wn9d&;ujw~>>6|~3?q0KU^Yfz(c9pD?Huc|p>GHz|LmrpDbdP$PGp*9D3LCxV)HvRf4!$tQDJX5# zrBxn5(^j5Xwtph&y3OaX?tFG|ws%7B2RmDf@11Aq&IsG;K#lz3Zq#~)!4ISLw>)EDhb!#2R@FyHz*?D zme-BKs|Q0gm!4kQbLCKYT-f-KWg&$j&98pEG5F@Mn|C7Pp9=4d~3Hj)W*_jU(XKx z%LP>OtyUw-ZHVr?Tp_=6YR8|aV%omTczOEy?`PXze0-(6b^p}%Ysq zD$LoOKetFUyfTiHuhSy#fmBQPRPX8F<^07h$uq2yuG)Ix?E8xGM9UZGXGR;yGatmds+FY6qwcd0>KqhpN?zLlEZYZ}`0Nz+$N zM>Of;%Qv=am{rfEj&04)RlO@4JSVyLb8cwA)25zPuy~uaRo9tG>D{79`QbS$Gavsg zNO_xlJ2CyIU0li6n=#r?i{AHn+u*hT%X812pM8Gv_Hj=1*yweS93S<6xb?x}2MPD> z?#D)Hqw*skM;1mtjMUz{ac@f0_xn{Ju6z_3{p)e7r#{cfbB7nlU#xlg_SLo5-`_lc zclN`@PflOze(V0d`p>F~<&$+OO4^=`DcSycy$h$81eN|Zb&}oHk2IgnLmdj{Lb)2e zAD@YCxiMeNJ>pt(wYV=}LBhdWoB(gs8*GwHo`OHh1yAA#7DmSp)RdBmil3HLG~|>FGITDTVhlG`wpht~WTX6383$xqO5@ol z)Yzq*mY>Hl)Z0n;ChyQU6RsUUUMLV}X}elq(08^gwCiafVmICHkzEhF%eE`^8*F}A zFSEX6-P-z{Zo2NG?uf3V?upes?M6*U%}r^(I7f)&=94^{tKL`lE7Y>s>}{f@mke7= zjunqDx?dPuU|(R!Kb_w*e{Fu1d@;XnzB$*J^DWzuwK3~b=8X(fx-R2Xdhhg8=@-+_ zrf*HZlm0e6DLp6sa{9*fsu|rfoHE~JI%jRjo|7ZyZp?j@H#`4H{;>jW;n_l)qTfY6 z#gmG6mDD%L2HrTym|;9(I%0ld$(B2-Yv>AAi)`jD@V$h2;!LTc=AdST_N(@l)neUI zT^H-;)=#X1ZHDLrY(LvRvWv6t>sHqtuGL**UH-cCa(V3B%DJxdU8i8Du}-m$ z#~klFtakWqf5EPo9kXq18>Vlrx3ke%@6p}1s%$k@yIC_|vqZ9yBE(eS@v7kLYV%jP zV00}#fj^d!(Zrp6Vs@nPADej#owf!X-2pI5=ZKLkCqAStw1#KsXYNsnenjul1$_xs zvJ@Zn7ue~oN+Qs)s4h`gsfW>hAEQms`K7S8EQa+5qA37ww*yzw51ro_@ZcTQy6QOf zEBNnpxxBnYULo@`CvUU-GH02K%>&FoOw@GD^w+r5)WY=Cm|%1@{V?t@&M*!&b}{-J z?-=J9r<4vaZD0D*;8r@>P{(k{(9>|!aJh7B>Gjf|r9q`fOFfMZjJC%9#$CoR<6`4R z<3-~V<6c~r8}Ayon}(Y&oAb^4Ei2?|;L@L}x2S>EV>`(h?j2W`f5smdhKP-&uTo`= z0AAWndtJNJs?f@4_0q~l_d!?5x>PsJx-)K9Tko|_wccnm$EMVp*m&Etw0Udu(59Y^ zXj9*&p-n5BUN$k-@z%9%O03^lueNrxPSOSIhU#AHhUlhRb+MAQyS0Vd;o9!tzb8wt zz_wU}J>i92{9HbOe+Kqx9r(Q`=!gfRUs-_uagaJunJuST9$5k`Ys`(!`%QyPwk99b zU1MFNWL#Lfxl~j7)xejEr5g>S4D$`HhC3yPO2(Afl#~>kir*Ax6}yz=;r2lB>0+h0 zRtaBHt7J_{e2KZ_o8e<=VQEj}1*3;4)|6U zrN5#N(~s19>l^FW>VN6y>UZk@=wI5D+IZ>1Y*yJ+w>fF;Ze6HbuN$B%uM4+YX*IyA zvsF#2huTNl+S+8zG0h=OFO4ECksKsh^aU4EQ&_`~=dBRUT5bx^b9LfO6!ru>=uj3; zXVGu;FnZs9bdDOQG*$Ibdfq7eWCc2q7J5(xd7edQ2{CVnPE_4I*?idC$h^?(W&URB zZ60MFWS(HIWKK4@o5Rd4ErFIlmR!p|i#1}^V&UY`7HWQG9%z1K?qp`BUFPeiyQa0~ zuI43X-V%jpdCM@%CChqCf~B@B%irbkN=G#s%%7_oszfMz6mO+e>7`y$kAN54qqag9 zd6*6WH*kq|1dH+j1ECx51#t#yV!ZheFL!=C8uclCwrfI2NqphWl)3|8YLBaV5jix=A z?nB~dbgz5SfgS?ewG}+eE^#_K&?zDZ?&XgdD^?X}iR(o_F$0RmJANBKAG*;<^ppd* z2GC}ng0U@$^UnJ>FSf1}U44F<|u{S7UPD$|r4=yuhW9ZGk_QyHaHQ{Kwsd z%Q?$4%LU6G%P7k@%WaFTTwV5-9prF}t4u93F$3FWCMROPZ_D-M8S*qJXWx|yN;x^* zk}RK8-YGkkMEL}i!KKOoRZ%)9x$W;sOG56 z!4XsgtNR7&*?D@4)}U>`Dttp0`AWx9cW}NV!SguK)#@R&BKqJ0S`qznU6RF)lI`3R zu($rG`gZ(H{yW&iL+H=b&>w#0zJb|#1`cl>I@v&O4frm9E}7&*Co&-$4v~z(Cx@T8#u>auSa`NmUZTj@)mfxQt+dl2*nJ(!sy(`NOc6;ouCYXrg{)+jOJHBy9?r@q22Yydg}yK*B2^H0G|TBCjjxyap%DrJAz%ij^5t|8k)?{5MDzE zi33ycNZ>@RSWP?w-D83jBSlFSpxHTT25WMlf(jag^hz2lMWY%Wha%!9m6NuJk>WQo zUNngwQh*c=6*Wt;hJM!*)oLKH(oad$giHIRwNhWHm2?4o=L~Sr?qUBJ1a@I4sM3gA4yL*Yy&@!%3GfuB8xTy+?6`h?9zB#dT7)C66l4-3G$UIzx4(Pr#D zSjY>sKXsw+utGG{lWMVwLg_(TiOoYyHUYyw6_I)knR^XwMH|vuG+#{wLzD>YaUP6N znYuk#ovdoq6Uqi(X#D$>u}Z$|0IZQM=gA-B z4EZcn_U4K+*zO3hr`Ht@tm!y)fjSGk-&I6uCv}mkDvzMC&xcQ-ozh0RCu@{=d9}P# z?juLzT|(tuct=0Pc0VN^nPa4C{VxaDu}pdjwXqdetsPjX5>AiRQXd@9V62=-@YvlE z2N6ISL&2)fN36K=&G~A$y{Z4}NC4CoAgEq@Q}TV3G^)R6(;oh(4p#n7VGa+{GI zW+5}Q;=H*MMB_5BjCsr(9HvSi&=jnc^Qa^bpy+Lb3n3EYwO0vOoK!!hBeGkTyj$KY zAC$LXoHoe=WqWyt+*R%^Z$z$}CohwSU<5h1cd96IhOy#R* zkp-7w4R?k9xQzCsRWP4!$fC=rAF6c&=(e@EPWXPkprsr{H5LSARUm#qk7###rgh(tk1!dvGMaCu36(AjhlMB{-CpxmVnQMB zfa>{E7?0Yj6<0%{$rQRmC)+QSa+|pCT~0`9nfY* zLjlPrr=U+~Lbv__RC<9+f+Bbs*?u_b1HCGMEMf!TW?Ij(=~+6OdILACq8aoU-3(vC zS5}?uKu*;#5y<-;t4%(#VWb@w%ViT2INVUO2(fmK+s(Q0N4Qq}DR9E|xH&{1=fSk^ z0HfM~eWdN7LRjE_c?um<&stMQa3;84l_2DL4N)AG;&~anYKM&;gkw7-eRH^i*JX5Mb^DS+h zdsIDKX|ab?{d67w>PspomH%5V!@41r#icARb8yz1!UhGIhW_SmvQu$v%Dc>@!ba&2 z6T_1##y9-BDzQdxsIeXTUA+u%hVG-apVmqQrexjC7mMc`mlWs=XVU-{$nVjoIIOVq zkoqdaglD?ZLSMzJ^m*|`V;A#7)kUsmOg3bid+9dX*lLT^BFkX4q0!G&*JvnSnp=>b zRg$F)HZ39DG%|gr@pl;PP{Vegbe(S`oF?{sptyk4RWj5Cyq7jh9LN74U*vjZH9KXo zQQMkpmToZaGc{H%>SARh8H-#nOL#=?tM}yY<}aoS#@aye%?!4N-lfZpzVaUR20g=h zif1)hRyA$g+lQm;UuUyQw@G_gjOErT^Gr&qzoD@qr8LfzW{FS&F_WRHtFqcM!1SSZS}09B{GxEO5HW+25{Q0bGULDFv^!enS|kN78iJ>dfo zYf+F&?sa2bI;t~5)E{1Eh`p(`4aH7JKSlX zfasFc?(j#svE$I$$^(xMC7a>7F+g#t1gy9MIVT6YM-YDmUNBdveoNpq@PzUjiIM7s zu6LBwLDIwF^%n})8Xy#%_#Fz&cj1%p3J!x?(7ODED#B`^fnbK3G6g!7z3`qV@E^?t za*}bZNeF;fXM?yvoCK%GC1_)fge-m&v@9c>G7(&J?iLwK>XQ5DrVg_n;2{p8>I6Z( zvp~DMi@aup9_okDtBgmVP(iEHFHrx6s{^3_>D6!OKMIv&;40q0Z#Pl73C!>swe7U> z65U*DAcuW$9&7<_Xb*JTTOFas0{PxoPpY3(j;e4U)Px2+7jQ_e1>yaG|>86Wc^`m zA6`4o9wO^EW?sw%+Uy13mWj~ByU{7|8a2k_=I|#pq_(saUXEUB2lx`o{F+Yc55-aS zhI{5Wyp<-Xjg#pquv3@e-s6}%9GNY^n)HE^_6CUPHk=y zCh%_qj*_oHd?V2n)I$~b;hJz0fc=kimw@^$K&w%l#Z z`wrp_RG5QG_YTkW=Bfc>fBolWiznmY8hi}TMipq=4BmoVbU7_hFUzwpU<%^Ux47f? zFVqXT>ISWk{<%4852Wn^9C{kxIT(FSIJD`r$nNdY)ff<&3xID2suj^yH^GPwRkxwz zc>xsehY^1XUG*=j`8f2pc5FG6Z3P`y84h?$o!J{Y9Ik{Ga4z(sdg=^ycNH?|6a1$v z+8D}vC`*R(EEwZ91WN07xG#s3Dd<t8(;}$%HKEeR zqO%%^4)+|`#&NjqK`Oy5ITY)5E4qvk&~!(_gEb5I=_qHzIl+gOPCU3oxC6F>AwLDY za31sbffOVATt?T|3F_|<^j`0|WT2}g?l(6D|NAO5@R{(hmWQ(-0}iXhn8h)~16|}g z(g^&+K=P9rSSMme7x|4{fsbx9x{)2I5K)NkxvUpfZzQe7{zC7MM5K17A}vQvP^;tN zlraJ47N~F4Z1t&n7VCc|x`=o9y#%Uu6*w1{0I5v`H?RcV?>o3>T7v1BLgxalTd{R? zCADQw{^7SMaD5HY{nQ2?s)O}0ky(>_;I$@T^^Js6ay=gXL4Us)=&vcJ%>UqQdWAKuoABmwTd0f;VJeD_Vf3GToznH8{s8ekJwBHchnXA>V1xZdzggU z_6I7zBWkceznr&$JENWOKq!Zd{2KUnqVNH^TM=GDKaaW_Dur2s3~avE+A_zo+e*ppbdUlD^N!M&`6zqcox zWPh=y8*^O|vC|Q|4#3%|TzB+!Klupw2?p@Xz}F4K*lWNPd_~odz|6GgTf@aSAKs9o zU|0H}hnNV4=qVq<{{Uuw4Q?SB*}M_B&dy+BUL($9i7T+Z4Vaxc_6gN(Hdbm!#7hRP z45ob|R%R69G?PBUwJzM=@6mx-vqA8GZpSMZ;XgWv(bCZua95PVtNs?;)*f7k(t30~ zMza|rv6;BYbUK#lw~_%%8MGu#G$^8vl*26$d}g272dk6w%( z!yEpQvV8mw9-jAz?>5No-MPJB!8!n`+M?=~=MQp^(UH#tyY!KrgIn<~>Rth&r5PeZ z4~EK(+ykHW5Y>J@I-LOUSyNEy{vZpy0ZKL@dwZc?HRm|-Qn*4OB$m#HQ-hwUvz+5+6+f;DQf=^ zt`g@A58in=W<)T59pQ%Q#jgX#8i%MH1J`Uj!A_VCugpv!)cZhdn}y{UH`l?L*%}PL4=E3<wJ$AJ%YlKYNGrgH$I${{*kZLC;(H#la|=|sen20S;d34cH z6H2h#;wpC!&&T8S-RM%>!5A^%lMi?{3-56U98yL855EwOy5>S_Ar)Sw=HQm{(X~|N z2{Otv@eDWzkb_0P#%iL<8NC$k%`shk#A=fm5;_wPi{lUPB zPq1%+0TsD(WqjW>)c0?2(sn?#DMm#)$}RzUjbH}w_tTJpwgB};pu**2?9Hk#y?|&9 zRVx6$J;nNuRnCA>f2mwn%*sT>=yF7?2IJo!zS3e;!|T9@FHy->A@`2~a{i2Zz@Us= z#dueviE4Ekft+PedDP&V^dn|G5B^CJ4&R2X0;1Z4y15W@&>ie}9==l=5rBFVP<>*6 zMr^rAu(BsnPuG!-h^o%$?_Ob*UjQn&hHv`{doxA@FMkAr$m7O=rGJ3f?1xOV1yQ;e z(dh@3ZZtm_{LUL*z({*zpN20ScSKl^)lrH6`H!Or#_V>+EQe#x65-2D=H6h2Ct{r? zgS*#|OF+@t$k0cjuI9o+I0eqxnRqVuAD1^9wQwr>;0M^t^AY(r1LOAx5xEim=4r^g zE7h&&IC|oKy*eN0qXaS995`bOGJ6l;h(M?)=hg4PBBRwa7=0~bd@05-2bsr{t!3}P z8cjn++6*7=8~FZjpvp}He&>MWqoD~b2fIEIc&rSY9e@g8K?QV!BIN;Rj^Y)k$7U9?~sPTUcFKKQ_vaObB{5`>yU4{BL01_78W88 zROaUZC5K}je8Fg&IA4t59jI2t$jR5>M_i53?t%K*4IGkyT>Ttw(k<8z(U=e6Dq|-^ z7I5GZyz6Rw#^snnA4H@l=JhXog?)3C&_!*B8qghkP=*2RO(rezDKpqF=m{<9Qe?%> zY7MyaYpS&|rjDwlj#uMUCwdL5zZy*eI!;y(qRvI3HkyDPz9REJRYi0rJR)xlQ1B^K z)9vu?g8jwrudRqi6XNs=`0Qj<;n#TO5%T>XU}_Dr|1IF`Sm;F*xYV>nzBl}B#Ir3Q1@Gj2 zbnI??I`T;?WM&iRip*1lsLcb0z65kQ2=Bib2yO)&!>7@gY{n;YQujH(LorsNaz9rO9$Jy9ML<1 z=E48jk6O_;h~BY?emAHy!N4W8ke3V8HsF(+1B*OW9l#_nK<8bAI`{_l@~e6qcw!TM z3HN_{`W%?V1_);kcCDPC1bUMl@Ztb;O9n7MA?QQPkkc2o7?^q{`2ytjfXo11HIX^! zOBy0Ow!^n~vO1FV?A0di|!N0s6D#vj3BJjgRwJ)mLN??Yi=nd0>1kVDiJyB&K4_j2p zJkC)AfQK*`-v`v##4*^k{e4-sz}Tw{#g5U7jI z!KY_oCYEux@%l%sfWPRUYhY#~QI8sNqtH)&fVOrQJo!pg(@h);g1s&ou3%pSu z;NZ&Wy5E93s`XFT9tspOMD__Z?8h##e zvJf~b3GBr%M9f97>n|||WeT1JkN1%Rc(gJwGBVi+JYnK?Am6U#)A>C>8XfsaDAz$i zh%GQS!Q41wugVIbxu3|p zZxM&L)pdy4cIZQ@p)awhjj_9-J^JU9K(!kXfnn&+-(lzLPR!7FtOP&wGR>jOkHLD- zLK({f9@&D|_QFkm2L1MDWPv=W8yBEQSz)h1A0mM>JPU<*D?V2!l*{SRrB!BRvDo+4 z1zFe^9=!?RJO^XUlhMm2kU;JhDp(qL$UOq;0FRmkj*5>2g0x_!5$P0JD9?nO9?MwWSIVkot@fhjnY#Dl#O>7oiJZ|7N zc7r$Y#NG&h^oL>KKW$k8qIoB9Mo8VFddLRtU z(0VsR+j)&ovlVf@9iv_eGtd+``Z`d@N94J)V1mYCJIC}H-f;;~Tt z9pM4kjdi_@bmuJO3AYG+%4NR3;0Zte3UJ5ug&c6l(O~LFp|15thy5I`m=f$o5rrwj zFa8n6e-w5(%tidWa=9c9y-*cI?M!I>R-A+#0}n|iaRQ5R8o56bGuH^Hej8A4JUGn? ztRf;b6-+~QuoGLrDs};HR115ZI)E$kLF66-TXzHd0mneAn~!T6y5v;gH8WzdBeLsE z?9(o!AAl3m!RbB4zRb(O%{P%z%NU|M)P^!3U0=k%7x3{S#B2g^#a?hnC(*&b19HBi z`l-d}sqIt_9)^)>ysF1sOav0|2KM7SI)8VprCG>Yqrslc2OAy&lsOWY5O_AL!Yx(C z2!!BM-azm3maYMFy9O*6k1@}I-roX<;yiZ>y5Su#6>YHYE1^G&;J=}x2uDqG6WV~O zZve!W2JLzVzl2`^oID+j#v(YCobXI0IP0Ux2Ne;$;dr-h(0k88$(sV4-4Z*dqtMCC z#GHPDd*v%uVGQzF15}EOz=~6lhZ(Z{X6y*N3g*?H+(hJV0%Oz-Nckodh-_fmcUbu| zz#M4M<4uJ7u6gML$se@m{A@E6hMO>}VN)IkBS#>?^dV2e7}&l`d5Opp%&mM`UyC z?`)wSP^SUWXJC&?9J~Ov5xouJ+1ZP3B!P(Ff%}7hYls!x8azdN;4KI2Cwa)NMo(?v z76L15(mH!$+Kz#W(IsElO_ z!X*?lG9R_^FnXW2@a4<|e*6t4`W$-0Dd;uVAx58p`3gaH`-W)g1#i?ztW*h{a#;@a z1e@L*Eb}B_gtu^2J%VRvD0cfK!Y6kF*di2NLU;8MmI z{lR#YVULYK7!3VjBmM_;k^nFnlYmX?pyt`Z-(e5E$(|Q^PyQ|#i@D%B=OMCNqSqS$ zHrf{Z1HXbB9gke>jLzvdV!RU&+!)l5W9XU=0eg%^X1j|D%*c4`;=BR=&;Sl$59)J$ zvKC#TH)4DnJQHnc681uw5utVdInP$17e0$xcnEnq2D=20D;gz1?xXlBKEMwPmBF}v zkkjRHaKvQGjd4Z^i`+n23RlcL_+uU`*2oqW;pp87rYTeH3AJh)`si*@8ZIDfKSr0h z9J$$pBx8&n!IOuB$BIQ=d<}m=B6>avEQ}VrN~a(zw?u`Bz|PsK(60jV?JA%;P6XPh z3fI9?C?vmt*P7zgCC-?O>ZpFlfc8; z3Zn%X_0Jic(je?C4iH8FbMF&!geN$v1=h+Vbc};|#u?B-rgKKjc|G*lgzFDq0|5ez zfl5^oNFtV&XL0B;YSW8|v+dAI$AXJ^j;dA%h`2-<41~K5(HDc)8eqTQKwN!PgYq8E z!PSbBQcp>NgQ$a22d?L}O0nFT6_zg1jY!&m?@Ynlw@*`Fw7kVtdVWk(Yz*^bK`|>2 zEu7cw>0B06dGVBGXBY8{-pyOLP(Se=RT^LtfBFf z@ASEQ>t6P)kYnw4Iv&3rGWvS8@UX*K+t(cKdG%D}$+xcABUm^;(W-5gmwxNo)oWMU ztNx&OJuh|X(z;f&*^Rr`iuL@WU#6*Q-QW7OA{T_EyTlc|diUh^!~Qp~UFv=!?cn)f zkKKk{6ZTBrdv9MtFn_@FV9P_}51%@6{b=Sfj}uNOTU_jOeMt1X#9pQ*y06Z*9yKfc zs2u9GsFLDZPqV7TKhrMtZ9+y&)T^6M-aM-L;N^X%d(k($U#%9Rx!feg5^^l8X}JDo zX2j~~F|Wek@A_04(;h! zyS5#&I&JRyqepb_+I>3o?%rcv;F&gyoAvTBGn^kx#9{CVoQ8Q!y(&%HZu z>O9Z65wng@|1)Lqq-GO-jm;Yx-E(3AcD5hl97> zS({KRM`y=~1^y!@Z5yH9gck zsl^Mw7cKYsukyF{H?*|%pW!dIiuBj}+qMjEQQW*;vxZIH`8;oMrtZC3g*CcXtMApR zVuEMAa*N!`xejxw;nK_{(siS|m*??{7ro9`n^*H$tzpC<_JQ@1P@4@V-R`)7J+D5#* z`{AznZnub45$z*tMfAI?+_t;@?B?F<-@+|d>V&NhIet0ja>=Fpm$qK66%rU)9M=45 zO8DXH#W%j(io6pLVRP?#)Q$(=9(g@^{;bnWw>M$$4u0Gov+>*SxN-?&e&zk{l2$*% zC%aKztAYl_7Yz4}0hXT1Wfht>S&Xh`BzA^g246iJs3iv|Wj*-;g*6gAULTr`DprX7 z4`;zmxMGidd1S+O+#&v#&_}AKU2NrPebJ`7?K(Rf`w0#~F_W9wtjdNyaxo4Wvo2PI6+a70P`kA)ouS>e+@7wgf85=WOX3xxd zmfJIbX+cim-Qxa+ZbrR%f@O}pPFbji(G)g`c%Z9};*$CHU?Va`lf-NLSRL2xxBhM8 zX6t09wLfQn#G$(5dPiHQDo$Qbf>S*w>e$iI`uox!@)-PqskWocAL8yN=^L!1GV$Kk~hy#!iHr_dNVEU8L3U zGTLKb)NHtS=ZW!f2GxMWrV#$(QP5Ye1IYzLm!hbw8&PfVKo=`h0Y*S6>j5R^DtaN2 ze+YH*2fX3g;2&+-9_Vl@&_~o!?<>FLU|Ez8z+E3;>221S&zPEGuSrMKNMpIu@rIQK zv2;Rdu3=5dq++4?Q_;Ahp+%JoWAcT9bNMIp-{kknFU&LNb;`e=AD!Pd|8L%fyl#1> zJfHleyuv(^@0&j=e_8&oeCvW?1rrL+7xXEtUD&hGzG!68ucC9se~a6f)G!=0v@EqY zZZkTY7MY%#cA6_%URl=5BhcTRQI7(hF!ql0gPVFZ&PS9exWNG=;(R+-;l9#nmul^- z9$Qt>oz!)*4zj*!y~t*pjf;MgevsbYHbj%0MI<3yv%F(K)_L8QbW*f%a3!~i+E@@Zs5>&3Eyb5+ji_@|- zhH@VZ4Eq5)6Xq!o59b(*$-B2#3hNeC^+u0-24^vO`U9;YjW9cGak?obk%1m@61*!)+@?F?N5)3?i z9{J2yI4{~uVs!{v))j1mZ2s5`*2^}5`tLT|ZFG7o zeNTNueN%m+{)he{_Uh#5>)CoEYJciC==bQq>Erc(^{@3>y@S4<-c8>_Z>|4i9b>Ip zAG4liovv%9J8D(i>V$TRwuW}DhDj>+fGiRdaW0rz=v68MZ~ubw9fKUS2S~6VdJR3e z&pa?ygP=5cfMweOl>Y~KbSIRI+F&!cqO02hPGT4|I6q*wR=5aY?B6Lnl#xKXo0K1L zZ68uL;_PbMm21jO zFV2QA2pUc&Fy&>Q+w$PNu7RU@&%Ciq!5@5G8QWPNoY_7wOCoxVXJDh}!3&@w?w!%g z>9Mb;Kf1sE*l)86zRE$;TggSUTT`t0g7blm*FM!&v3g?l)oO@tpYDpTm-STZz1Uy% zQa4by1^X-Gt=?FLS>3n#Xq9hu!%DBKqVv?rm}DtyvSTX`uOt%sB|> zs(FZRGXkE)#^{YkLeFeZ9)JM}L;v-K{b9D~&yQo5#0K!Dw$Nh(*&L`%&U6~s<>5H% zofqcGM{!p!%AI8|;<;t=KySA!Wh~+1CSuMkUtI_zo_2w4lj^-WM$rWX8YMF0&XsL{Oy&(?< zt~V&o&~~mtyU74!-4BXHXY>LpbApE44H`z-4qGkU9B<%3cS6@21ZGnQt<=mlK$Z;W zv-n&8_>2|k3wuG&o(X@<0yqWAy2cQk|HbB?yY3k}`s2`ND?k-LgZ{fdTnC*oFK=R*yh;8i0OCb}amU&k zgYzQ#LnY{fK4=AI^11R1z54^4y-EfL*bRL3XPnC_6MH~kDh@buz`q?7t}2hmU2qPM zwz%zq^{Obpan6sgia%JxQFyL1{0KvE&Zfa&OOn8`d{Di?cTE5Xb(l8CJ|vl517r1$ z^+7E8p{u_KCmh2br!s%SUZ|)c+*z(Ua&Q@|T7+kkIDd@(45(Q@_zLI{i*VaSZ~}*N z1Lw1P3-+Wo&b!uHe2g=(Wr^8hWvQ9eT@s{C$mzZCN-i9w)xe0nft#rrIGBEX8u)@7 z_&^By%87`DZ*c9*#J(60{teix#@st}=NCyJIEVV=CA$p<+ZC5QXj84g+jRlk)B@b| zVeoqSvu3z}sI&_fMfrmYwVC6WHcBoPY2kSo{yr{*Gfm)F>R63%#lfIP7I$ zm$+fXH^!LjHA z_NXU#|2%Mh1EDuYAm`q|E;w)Sh_ApxZvacZ38Od_O3DJ}gIVZ-op3!dtAF7KdgC zUIoMsjAu<~056~dOvWCJ^*cNYc@3cfKTm8A<})NEIb%D9&n9ce_A# z^_hQ*hga+^kxG7vC&9dYAPYVvtt|V2ZmuVefZt>>vRGV?YRj!Mqf9Dym$#EQlB?wB z(GG1PTONaZ`ER{TKbJR zvX2_}8Tc}>W@mT?>Cu02gx}eamvz>&kymNkSZ+Oh3vI?b}N_EGOZ}=Mp7VmJetxdc*GbLa+8i zcrMtP>zliwf1OW$(~swHh9^-##9a@A{t$NNJ#QNLx})ZrRI20XJ-)Zhp*L`zvHpQ? z=_M+ro)C;xZ6{cDHEfmO89Sr++)BKvO?57eZpsc=SZ~(!QL3X`B&DRMFHTbZWuH;? zzDB_-Wi+=lisgCx1?3fqyWdLsDtgojnbMXxQ~gGdu!|k9B3j1LGCN!^o1$KPD?cGm zmCuvcl;6j%@h@yxL+X0nrC)i9ItY#cdILM*!w$fFO-4s9mo_B^_d(4ujh>AK4s4J_ zNi5EWIZ#nUbrdfq;&w%URD-y=fhaf{{@iMvQL6SP2CC4t4u&fi*^(LEA$0n#Ft&~s zC(8@w@e4+47Na?e@qI5m6g~(6G6}p&4`jmDQD+KxO*!M~Iwl>FTxRtplt3C9YE@Mpn$v9Rh_s zjvnYH>d>#~RS%?(bV7WIx%Gig;Q{vgQIcTxtR9Tw5NUO2x*Rf%WQe#8k~KIU&%`O<-K->i0(doL#_liKH z+MLl8NiIE>CrN zIs}J3)#5R9{lf7gO{XJujr#ov`Y^$e&k{+B*p0c^ffMoxh(rzb=It;WUE#ajAss8> z*m@MlwNJP(b|j;d@R9aBoA;2A%jhfa&IsXi^0shw;C|{LUAAI3LYKy>f%u--Sx|WV4I8ky(SL zb*VX;J>dqiq?F$6%U&U|+@XI}hy3jWG|eMcLJN9}SC|jpFy*mCuAjWAsTR~?w$EnY zn~2-40;R`mvXGs&UW|4Uaa~0(;0_(5KnPD~=JgjU7kTsto6x;lz_@+E6*GFtcPB$}g^2r!4nhl;w43gr*5b*|8%uWb6~^BNM5D~LsJ8-bg*)EsC=Z-<`Pg&41aqn-rEIGb$a7IXKBttlC#pQt*- znwGrqDY1DM^ZFqFHjO-F4ot##{H6DhX=aHAK)Q@3YGx2E@+7So4?mn7y0O;p!RU{m z54a2J^Cllj;@q-}u3rMQ^GaguSjkUFj#lW~X2F<;GkP;w4=>>uo53~xrZUt{qTxjT zgm|)vv&BFfdaCy3YegWYc}#Q9}b=U5nuajeTJ0B+L`*fEq@Fh84DS!8z zm|WM~*L+(@z`xieh~o4r*aFxI=kXdO&^<@kwY#FI z>&@BwA)3E0jEx5#e=X>%u9D`6*P{U*OH92hSxhf*6)SxM=Yu!mx%30au(K(N5jx32 z_QJZ%+F0oVI^Hkn1}1PW)7u(Cqm~yJ(@!7F`R@dLo&zlOGj@W{bjGT~f5p)W9}DGP zPAnrvSEG+LoM+-Kc0uPig&tZEo;?OAT^VP=0I?JLtYfga>-mZ8nAxA0-&tfD-nNZ& zsBc1jA0kGSH_OZ^!g*m4%I^Z9JA2?-qQ@cT=Ww#alejZHBd(8OXM8S{MFoD? znxyq*Dr#+RvV-)$Hxehx;e+0dm@%KuwNYwCi&8>Nc_X!x;(T$HQ|nqdqNY|6RI<%{jU93$ zJ=RK$dsDIvPja|IMk;|hIag>Y%;QNcLW`%LWs!LpS^Q%29iGrQPA_Hf)BF#=q6XyBkLl4KL7TLnGhbUev}Iwt#?u8q!g=E! z^DGytt%%P3IYwVXo-vEvE{Tld0sG)4NR6$KpV!c2#}lJhQ}KwWDqPCzHzW7WWQHGs z6#^Mewm)YT<`Il#7 zlzznzb|+Q89k{==mz{wTxh|>CUVDsle1Gu;$g}cfA%zfqKmO5|w>e3jB#La|eKrK- zO3@KkX$8?rsP58J@pjZ_NmMP$S>nuPxiP`s{Em4&$=s5eyu=*NI#1%H(w^>2S&N&c z3p|||o+FAqHIjIqa7amW?r4b7WX5LtM23Q6h1FZD)8m)ctP`mZF&FYe#x1aH8*Qf z)}73!nRhZ%Gw)?(WS7mYmiHI62@-gHH91 zHUH2kCunf_dLIJ6Y&ul))$>~CO@Xp^X!tDPe;JYE7pdl7pO-LiYUI?}Gv@tjIk)qt z1%Jmancphdd7mie!bzvLw&m3C&$wGE4F)@W3t&7K~6n^cin9tZEV-zeVF zXUpfUi?{XK5xo8U>4@YGMZ=tHJNK%*tINZw&!ZPCsy;7yO4OJI!+ZvA==yX2Yhy_o!93@*wy@V zn@_(!dGgfaGY8L~z0~T;>dV_N-nh{E;_Zu(*H?Jc6P2V;9P}H{Q`q5pZUo5J#Xx+k3QI(=17kr=JcK(ie@8k(ORPM?|cC&Z4pI;8uc1_R&s{n{s~PqV(O`cD|tdT7mIiz7Y^>OLU7*RjsM+O2CP zYo6?%Tuol~n&N)ppl`RHEWdX4@a`>MYt3xuu=Bk|a^I+j`XaS$inAa)$2DloYp= zr+=EHZ_G@|$u7L6t7s0DR@FGTZ1DPBc~$LUfx70^+VASRs&_{JZ-ciD{SxseV(H*t z1N42Id(`dX(jl=Hc1XXG`$w-Ds~&rI^xIL_N1hz9a`@a~6C$!Y9=u!%>SEl?C2wNeF1ZuiD%L&rFXMDJW@F6W zm~$~FVqU~#^S8Z>-ldrRF}GqyFRmZ^D)!rwx^dN)C$AbApSsp}!?aDmw+-K&zIXhA zQwKc{4LTZny5fc9SJc;k-w3<&^}+h5;um+57rk5l#W!VQnq!V0^WxR2RZdqYv#d5xpeq*a2uW7CARUKu+N8pz2M(G@al4P0K-T!$R+Mp4W9wH%*T@J$!p*_uAH@u$#6^PUyyV ztJ}9k!e6Qh0{l3htG7cW)-Hthb zu**@kQ2Zwm*&dnB>fUPa7qrfOmnlwPpKAQ`JtgN?gu5@>r_-~l${hym6KIk zlGH0yb#WM)sq)n{(zt5$nx=LNhq}0X9&lda z)Whk7({ATh&i;;(b|clp_(^|R*O_8U?iS|eoylzV*YB6|yT|u>-^+ae{Pn}>iLAHvd1A$)z8j6z4)~M6W6D8l2k9My{!Jq^kPj? zMpE}z-QP}p|N8y%HzQx`-g$l*`)kr4*Wc%UMg7vHcFDe$Gdbs8#>BMGnXmFh+AwYJ zg1ho(U%uRNho+zVC%91FF8RGN4K)-&U1w`jqqTS2oep*JFcgJ?HJ3 zYwGjzOEQc6r&KRnD+!g|R|Klkl>3##)wMJ&?atYCv}>#xtntAiQc&MlHB!G*XWLJ; zuc4U@E3s4cLS0s^QiaGL;RUckI#*KBc3%+d>~zJ3u0nH5q^YW*9qum)=1HO;$qJj< zyu*?#z9O^Xs#YS7u--JM!UeXmwAYW!H{|ZjZ(96GtICbdnw8y5yHcO2ucH&O*Y+~5 zw$>CG%xRp98q;s!94WLl9ycB_{-y8!#iSN4>X&O576cTSify{Al8OZmIa3P8=r-X* z_)r(1P18;)S#O$UEoV$D{!^G)@Jc(Yc#`f(kxM~(cB8Bgncp*3W#*(EPHpjL!|$j+ zSt;><>Zkdp@5vca6k_;|7hx6a7Kxwqviz{7y?w4@HKzi{;f})`Iy&8O+Ul^>p{ujP zb&2bG=jo1}?dRHGbq;l}=~mnEmimw~R#nz+t-7WnMY2RXULEYz!_Cg+p~ED*D2JA= zr##Ae)N!-Ahq@1Qd*<@nzMTDXhj^z!F6|u>)XmgxcI_RD?9B25Vs}wrsk`E*%vE$n zxT3#mm;>?H(=uKdWcZ~&teqH8STv$=b3t$IprRdx z?{W`i7iXEW19FRV59RFPuD9xW5rtK>m5P@YhZMOLZ7->4h%gBH{`x!G$&gCP`Qm~G zIfZGz|5$$KrL`qTyO>oz!<6~0V6c7{=b%Z(P5NTvd7HQ7m(5ZGpWsj4Slhvua>mRo_ z?o&LnT_3upxITCL?*7d!&E=!xM~4VFl2;Dr?VhVDD32(_5D(iG&1C~%TBk`5a{Bo$ zvyu1ba~7yaC84`Gg-)hD3YqPaiK1b6b|lyiLeU=3KxVwrW?kq z#=4yHt)^Y3RmMo8+LUUl!T+0L8idp4UHbAvpd^kMHyG!dstfK^TOz5*l%ei*!|Y4d z;VJ5xrI6YRx_z@a5$&dD`HY@jBWnZdX%$dr??kP>nwp~%y^Bkb8k@}(I2~US#tZd@ zY|}|oCMSU!LNM&c9UM3ZP_Z~{PQ`I23muh)9+iX&e>`XIQ=Gs`dxDjr{>_$ooWz$~ zAE5`((0Rynmgf5_>SsrZ*u~Anuq2Zmb>_o zma3z}p$+Jq znYv1e$elBFsm}Hx-i)9Ashi)U3M)(h(U)^~3+kkHbg%2s2iT7$I!DwU#p5z`zqiqc zC~WgM-+s3&W7KC-Ssu?h`!)R%Uz}IVQYpGfm13J^H{_!cZAE7Yo6E3?+l)I6TK!4g z?~-{X{}qdMDaFR32gT)!yB60hIjC!uwuqEw;GO0gJ%dVl;XgUs)=^L@uWak6oo%L)+K;Aw zG(G4Q)*ZH4q9Sp$Y@s4fX{Y|HzM`I^iBor14O4k4>fxI?Qr1^KNwH7qtx_r{%N^yN zWIO19b(2=1?{!6bQFcW>l{?=?%Hydxt*3?+M^*YIYUue^J>xfmk?R3-|ITtA)rb@H zXl2WGYMVbz{e{z+2ju?G)ZV_?rxn*t+EC^-Xba( zrT3v|(6bK2y{ZLs+Xq*mJZkd;n4K1Qb~j#;m(5ueNiV;lxB{J~{#1EyNLoP8&&QFp z^tPM=9Aj%xZFx!!vIDmnU6LJ>+bi6ZnF?RUczInqcyD0}%kgSPbC1bdX)|iVCqzN? zE_&SA8p;HY$7>ommarBkq@ z8NPLkCR?4NlBw*-sGi8*aC1<&bPXM;c_=Yrr3+<4xLxl(F*8$fUOrp)NYYX4A{uKm zqALlf3O)w?c9^xJWtLE2d}%CW{H^b*-=tfkJEk9Id@QuG_}XfSFGzBvW&Xf}WND^DqA8xgp`R4ih~*hpq~?*y%;+m5n%+`X zb;nuLhkEL7lPjw!&y-+VfuC_5lgcDF{WPvORT1KZEyTZdu*Mac-S1F$H6{w~huK+& z`jLwTAsb%Mhj6hxV%9wp`~({_$d6k2H(@({HnDjYwc7hs6l)Tl&rp@Ah!U&_=HxD} zT~*OmUB>0WmyXL^{F=YY{NzLAmF1tfedsR!YTuw|7Sg@h&Ru$&@n=4Qi5IBFWX5AG!u+6B~Zouw=3L0+UgItr4+haSQz zsHSxBHeymCZVbVA4phhILH%#cX4C1LNpESED1hfs`c~>x_8FynBt9$8h|Yu1hbPf1 zTuh%)V!p>~Tuz7fsksbF+vk=}M2F50Q0KYFumqwz9!e*gSkV{la0C9&H2N14;dl~p z3wVV(E}ExgkDB*9mB1m;Cf+#F82AoWTQB-ZPINi)|5c0aBwBGxn6Eu>)8VX-lZ;6n zblj_{>cyjuO{7CMhgW081IUg4XDpTb**JPcG8>Q3RZ&xCeIXX$bHAgAyFs0GI6gHJ zZX-Miac;(|Y6)>J7J@68?9>B#AOMyi5)GcC_zAR{2x=z)CZ`iLPxpTmnIFAnN7U-g zpuyfycRYu(Zv&c4A39gX^i;I;5N+t-`%a?nTG$4E_%Ds1whkD*sI!OGhJF z5+uDtw`dE5lM_m&R@@WNL83#^dJRhDBF+NapsXT!73U!~UyGYiK{i2^e#TQgi?2lf5ggQy9|;j8nG$oG)1 zu{WHV&%c|bVi_Y7caxS#<7Dxy!e7+agSgACDqO`%Tx|2@+wp#$su-Zyuc)G|rCg)z zt8B0AsC=Y2jo)oY#W1|`r3!b2iCcB!6;&0FxtU@RzkZM}l-K5V*Lyfl_m-Um+; zjORzOxfiYmML5xPwuqn{f?%H-LKtg_mSrq&d1j^0?JJIXcThWz!Bfwk9+wy$ct7ri z&a_=;W+sVdi*K;b7tlXh%1w8D7?=By1)E{+ThixyDp^7QWrO58U6(D~H}(<-s$xDj z8k!@O-pn?XCQ=lKAy66xIJ5P@L!u*nf-X=63t1rzAwCkIMOv^T-=p)sKo&QU$ReOS zxx{MhKz|{E|0$gBUk!??fYn-txb+lI3ukh^U9fuZi9R=oJd26GhhWv7(yjA?%R5IW zBaYWp>d{@BIJuNus({>aAfJ;=hpE(8`U?#9B>EmR$>M`y#VV0|C!j>`Os+kEcybQX zd<uoWhBg)3%&?GmMc(8-5J^G^wu({O7F3R(bYN% zt8|4f{C*Uk1-xZ&6NxW=3sO3=72x4Iut)S{^*=^Q=mY<{TfCRfmNyZx89PG++0g&? z_!A%?y>QUTgr0r`*;`C>Xpd%m5U*zt9lm4qOSg05VRgn~A+9G+iR`DKyQZPm+)1x? zE<4k5c&IDzIs=Ka$KZAB$g7QL>i5!JTLtqs6u#gR?wtD=sfo<{nz#zShxMC{Td{~< z+;g1u2iigz;ZE#Tjp%((hlH#GUC^4d$XTe)5A;alp%~Yqz@BJJvKGT^{j^rHS@4A! z%x7*T_bVc5-@(nt-u4o4%n66s}{9!8$A6y*oO+BHGZQ& zt}eX|$vlw#Y6QE1Bl9#-qQ{4|1Ehv8pI3U1Lm&ECcVIl;NNSQJ6iXE{D?8$Gyjio! z7Cxg``3vXaLzG`8Nui5=4SJzH1hfaU*d1=;G(Tr2IOe9XQi~upsxivdcqZf6ZD#XC z<}rhn5T%15Y*#=(2vsoe%V1H*nT$z;0*5m*>3YGz9Y>GPP;+1RI-G z=1-hVw+L>+9r8Xc4&_HV*M^xEn&M0caKn|Fs=}cwOg<(t5hBr;N1xlr^oWj0E7Lqk z{_|vH@q*fH6 z$-E!PI`D(eEv3gtvWq`t*2gouy~UqIDscq7xE-gKbDVvb;1Hn19ioD*94osw5#lqw z&aKSKNM>FXJLWiiIO5>50_cqHr6XPyz5M|?bK6#jTH_Ji{(9yle1}*lf*aH9Ub?&%?F!3vUt87@)R!dH=KSGZe0H^>4t~<9AtQMkg) zz=2~Ev+tZa4QAjXk@PJpho;a+eTbt!IQxFY(@w*Qa4_HPAmnW?>kC|6PvREwm^l9i zOfbMHj2iNPAjX^Yk2(yb? zL8-HH92B=d4rUvu{LHXT!hfXHon#QJU=;J_Hk6hGC;Q*F9^6Or5~AfQxoKNyrVhmL zjbxZ>IgOXPB^~FMBrVV42hXM-k>?Baog>d|F*P1BnxqTFjpt-Bzs%9B6@MtxAojsX zqDCXMS|aNcd^dZtvYx;??&21QO+@;I=m*AIf0Hxq;rzIRZhEO-SPa#vNxUC`SnGsh zs69Kz41VrOa0heYJ~~s?NyKv_haBMqqcW4#-kVu>g;_ow>OYA6eJvG|SxzE-p+r?wllBvx<8iuK%b83lZV-;1lBv##4a)CB*b(!i^TQGHan=p&2*&4FIFXq4It`HplWQiS! zMF#TeQ;b#!l$Vis(~O$gP2$W%2#>1JX0_lv;yFFbaft1N=i^l>ttrHh4ya9h;Y(UT z{vE}Enylg{p9@_TDOzrDPCwO1oD!4jO}=;DODwcxc)x^r}PZ?mi;u6 z7*Y(=YmbA_QD{61^|}7yH2Aug%+}E`U@>rv(V}fc{T8ArIABx|)#5Ca1oO4i_83xB zZd<_W_Ojk1+LmRdXXAERjm-KNHIKFMNpGoQhMA|3kG-Xy+7UWt2Sn2wDvoj@#y0AV z1=RP-q7s_N_-VPJej5bvF{1cKVoFadk=|;=(d|1oLUh63t1CI6oL!vkK~`B=*t@oHKy^6(zQ+TiELDWx zsITz*Bl{f;o7(|?t1Tlt`kx~Eo1`Bx;3N)Vzr_>DN(AV}AiN@~N!v<$;pkHcJuYXD zUC7AYVb5#FsQ+b0yo58B7akntsdYNQ_{|j^V1Jzoz1SM{%W`7$B3R5=V#h064smV~ z%8C?D%&%|{zJ#aWByOZ>hl*?;K1ZHZozq~#R#LJ3f)ibR)Dxu|ogHhzHN*vFAnPAu40`Sz?p}4se0!tB?ZRBN@zj1j7J zfoc!5wfjelZs$3Bi4MZnC2=OFtO{08%qBV*@u zn5~($cv|h5zEg6hJeaoYs@JMk1wIu5=e+(bit*VXis^7W*k$@wQA`i`j`#bj9}vZ) zFG*aS7W-vM{kR>=65^Jv8M1iU-3jhZ|GThc(&kTb`Uktb?cNO9=9y6W+uWYE=*~^r z%jb8z>gV6j7G3>E;gZk|P1gmld46cu=|}7S+dOAW<*fzV61KnHq1{<__kN&`UHiiK zH$71K@tVBi0^_5l2hLxZ{Hm?xv!|1LuBXcVNY%CzY|*BuAJJPDj*3oR5EKb?H;>*RrfbIQ1@WXL-h_fJ<{}Oz_AL)oldAuicjU8dUg8T znQdp|&W%0a?t=TpoQpx1e_W2Z+W+eI8{fWu_vzXH=#=--&HQ<`{+MVl*ZnV4Ua_jA_ zb+=n57!t1CS$cQrz54gZC00%R^YnV2tXksGYm0U-I<&|>S`< z=mp_1{@+J?{lAZv5+9@ZNDt_bkAdv0z2*i+zMs8p zR?C@oGd@q-HMQ@Qij)6Nd@|v}_)+6FjlDPGR(SA$WrOz(6%7d(l-Z|d==XYKl-ECX z*?%@>>*5xR4Kd2aJ7c!S9E46d7jrXaMa*p&g-J0ED}JrIvU=`j`#q!gske7tH#{zN z$-ub6xS7j$tjJy2X7$Q7x8n=f4qkt6!>x_CHZR^Be*?V}e zsGb{oTo2Faiu7kTQ?tG!skB((Jb`EXR!PdTetLKgP)=uzFb=oPiFY-^%_@;lW zd^O|sx)0TV1*XLPe3_E+Ri9ih>DB$v(}VXU#h-~0FV2m*5%V}^Tg*;4r*ko9_XIpmMvUE4xdSF>+^ zyqENN?u-B4Nxs$oT_dAfPE7vWJR$eLEOEyERPUe7zc2i`FJ;J|?-{-G7wdLPF1pHn zhcpnk9NYcn&Cy3Xxb zzMar|b?Z^hBLXMY+*avEh5laS9Jk2>Y!!t}%Us)VOFu}2*@lh6uM#h9Z0?|p#eY_O zYyA4?qu5*JF6W+We(1@r@*7XaKi#l%>zv)g4)or8YX9BimCrr7TJ?tit#vmBB(%M| z`|hQit1jvn9Ue`8 z5Rf$Q)x$SqUO7DQO!Rx|`oWm;?oY^{@u`71BlS;Z2h?*_1y0MnFH~>TP}JD1u_X9Q ztK`n-yH4t)Xq(i2UFVN|mkrrE_`^`Y;rpk}pZ9X+t*I}@yN#VQ>ClY8S^m@4j}9Ar zYe?C_Q~O5rXwWsZ=dHeH245c9x}RI$N#Sb-dqi9xF>_4#_`?%^OnNl!*u;d0#IQHr zJi6ueQulk?ThXpo(6>evng~rogI?CNRB2SjsoIztg;n%kUEKm*UVCozj`Hs0Aa_N|t+32J#ZKwbB6%}IU*K4slK z)%{GBOCA=iEZ!mX*5#LME;yUBt>l!bL^WOYMG+=nD%UCwYd&dei+&mc4fk}*ihkyH z%PG!!ks;0S$qdX8vZoi-&~?{GXglNv=l+-HlCRG8{B`={$TyD3OJ5W`x_s}&E!oW< z*QD3)UJt(3?VA71n>VlDcy|5B4aM!Lx5I8uy?*L?-CNOjpWoeb=furHH_qLxb*t$; zzq@|7-dxYQTJ4tdmi3y?m1pn`AuqnX4fs_1Th(vH-x_{z@crJ8 zMPK4RxxO#=wp#Mnq-xKvCk;%Nyj%Gp`g7GU$G!*t8I&=hU_!C0p}%FOkYn}2ch637 zN-;zERWr;!)VY_t$fKcW%ktMN+I%-xuUT_a?HhHb)R|ZJWUV>1_SfoLvwZEOs^Uu9 zDrzczsv6_#P%hY`pNE&XTeaBQm8&IG*i%kXd0zD|)i3$A@tNf{+owqtr%IE`&2;JO zILJMvY~>31Wve;4Ib3u}^ZM-*Q@(l`ANQ?Zdfz2AYF4T09qu{1?1GB3EA21))-hQz zOL4+}rDK+&t}Vl~z*1AzMU^FMZJbpy%vfapXgyN$BFp&4K7C`!2vMYXq*-TLDEi?L zU#?=+rd9mCTUD4_)vacjUpa4Y=Tv#5WT32yXrQi5wnJ+3-wXb8;a`X1vQR%;=q7J$+Kz!?f>d)wl)vU0Phmm#l+1OY;=@Rr9yy`xnF% zgyi4PJ(qhv=Tgq1oNrlvSyQv)b6Vwh*FG%%p+9eWWf{k*?~3iaSfMb;7eKRbm%fu< zRm3RxFfrun57Jr^&%&Y zk={_6)fd!%HQ(*@jt$*6cpUX;;&r}UjS3?wtSlQ*#^nCoE7*IkcU~E9#}=B$c2O?+ zGCRxFE*D&;rKhCa5$``0yH)yA`Ca9Ul|m}Ns93+^M4#VfCwN4;)^i=f7jmG?v7@cVu^T+b*1nI2BeK)O>zC=%6bRx)bcm? zF+DT1G#$2_A$R^_-e~G?oNTzv4aMf-T?Hw*0l2?J#_@{!U1rky$(EYxafg zgIT)F>e;PwT(W&KUZlPHTmEmr-^=O!vsOS|yJaoT`jc}v|B5!XNUNP*G@!VrZjSz^ z?y}CQWL!~9NlW7hQ)^Q_L#VE`zJjsDJb^0W2%AOJU-Cz~K|VuqMDqT3m7h~ySLVvP;L3wSP1aX&U9n1W2Y(H@YP|ZQ+E24o(?)$wyTXWafE>qn9mWk&M_b%>lT|_PmoHLx>+1o2UC1Y#`b1&0w{gvWM z#T!eKjkhgPw$(n-X zZlw16TQ03xx?R@gJcBkxx64r7^h)@MH_|GqjyLh#oG;oWc_1wiC)sv$-q~l1$5lcs zYDzUfjr&WZM6+$TEW^$ALb%abqSdx6c%6G9r*XD2%Re(Uqfh3=tl8OhbCPm`a|835 z=Y{5t&g+$zn0qC6P_BFK&7AT%6LRL}{LC)QPRxFgy*)>o`#0xtPDpOuynFesg{`#h zi*^>T&=u>OnEcE$EDqN9qC82OY$nKWg6fhwQDbkfah&Y<*U`=Cp3@}fPA-F83Y||l zyF34M{_33UtaiTQ_`=cMsV>xk)ai+%#!2Lq=h)2YremVxIY*6SGshH%5XS+I3dgSw z8y!YE3~?yL`R9b=558Y3r_+ur9pfDvIF{Ha*#$s#+No=*S}Ut7?jKL++b8*S}0v93zR>W&r*acmnau0kK^7nO*up4U3;AHB65()aXo z!Wg@1D6?wVuF*MBTOU*B=u53=2VBT8Xpc3f8Qc_Y&x$HGb){P<63)X9RTEx758cGE zrVoBJ9ZheHwN0H&j;2bcJKV|UjsHnED%7o@v33bZgt62C3(YqyQWQ(Kt!-`T)caOsDnTJNnAE2QNQq_o79u4d=izuomABls4v&166g&_P?L(<04l4$I7hY< zzvV0DQ(@Xj$G;J`nKwqId55o&pult#-LhpF>aMO-&W&v>`xu{I=-WI@P++L{n4H8bA&VRK$O1`&?%*U&3gRkZ{pQFhw5D} zZmoJMNy%u`eh8}|Asz|ID3UKin#~k0Kw0>i3h56{NOzL%y z>1nQ|THTiZ#1J~3gQ)E#;!xqjN&UNRr>N9bS4yQK2z9GQ_FVQ?mIB2Rfp)$e^RAiV zrXrTTejMIOTDgzHOJU)@->-6&qKZPv?sHatozJVR5SWKX`5|=n5^hBtMt4>LV^cxa zj9T?!6j>vvt!|+!(^eWyZTcIPzqx2TTcPgEqoehg`oIII2ru-fcNn!9)IFqmv}-{q@pRYtVEAF4OQ}3 z`Xxi@*yfv67Bw}GU^H%T%q!3+%gnbRS|WswXu_YHMk3&SP7 z7q!zJe72kU7Ytw-^F(gry@z_d1MkVga5&GYe3#R>EDb`>c!yr@N0f*)QS2Xqdhlk< z-|;N=bFW6JtFo3#V~Mo^O65~9FVAhowyD&5e&QN?1J!3woCVI}t-qJQ6+mu;P?;;n zho{u@VJY34v$#-Hrv?>H73wzq-B~E`E1{F?LlvqEJ=r2WA{10yJJWqlku;RvqKnp) zYLqXY1`+5$hrmKyphwUIh3;`GR6TeadWk2WH-Nh)`?1z$&;x$MeOgZR=4Rn>;UL>C z)zL*0OUvQ?y`InM2_ND@pQsg{2nBR+KJk-P!EGXg9zr1M&up~BBKV19`WubKRk;_V zF89nlqH6e+%J+UMhyAFBFTi2zB{f?&)XyQTsR}kNb*9gBTqjabAF~`90cjHiVk%)M9&k+Ea_HJHOWU@boxk-N)9Q;sOl2&dSo2ziZQf%l{RA4$M&Xpu{H~d}6 zMyX8l$x=!5M_gO9TG~avP^yy$Df)@;i*%-pf|-S(h04Na#x>%XiWE%+m+CHK9GBZm zWFyUWOy`Qy3U+C83cDGTY;`47RKM-_tD{w0RC?JQNviZEGkk_(pZc;U$gz>*6ua4) zHS*~eg<)(-|H9OQsl`Ke!-S=l9+K1Qx|&Z)ALRpCEzx*utkBhzWs)1aqMnKp#u|?r z7wGP@_pT}4Up!N{(Nx3MO#E7UL>??(DV|}=HO1=wXg3!;EnJ-+Rj|Lr!Pwd=m0p)k zP|wyxDkGJd@-XoR%T8khoquuFk{U)=YpS%4N~NBx3RldLG`6%dEY!;KPUpJk>$ML` zsu*fOHJmrEww^c7G`%({;lC1X-K6E@H5CsPtCcBa8zr)B;)}M2>?0eflP|KKhUU3~ zE?y*>NF8>mIdp78jXB#{Wr9o68pkLyq6rK z?{-@JOf<^&+igGF;L%+amE=UTu`DoP3A$ zjqIiTfqVq_x!;GSStiRB-^M$8J4~Vj4qIEyUoGCSX*FTd#OR^W*|7h_tHs`DIrHVuHW4M2}l@@Um=S9m=K>>9<+0;e2Dl~;FyebI7 zKAd67o704yLay@|-M~JTVRP9GXy=$a@#Q#zKZ_ivj4V}2dl4AWqMzTrtmQKoJ@f^GfCZLj^ z26xa>(oH-Pw}3uWwol-F_gNIm>%At5qrTn4G8-mx1J8YhaSkqrl?4k_Y^v3RY^FNI z-dj3GG5CyVP)$FzMA}wxcgshJwvmz~=~&qy>3lrsVv1|w;gCPI>2k>M8EMN+it}N5M$#E*b-c)?Ee=62I}`@;9SjwXJYYylWq9@tQ3{H=IQS`5Q`N)O!Rlw~dFpMj&0p2c zGzZi{{Ar20g?gNNr@FspqNa`}NOMMAMtwzfSvgC2TN$U^sq|9bk(*@IWoz-32$!6N zN7%w>yr&Z(hOB#UJx#CTx$Qh%!7>m!&*<%R$A1UzfXpYA&f6P$N$u&0oMBAEE$hs& z!guoAtHv<2sF{Wr#%iX~CY3OYeZK|{e@jry^bt~_>ZY4om_8Wuxl{hQ5yad$oct^U zpUcrkSEHTL&$!hvR-ddZ(hbt}ARgS+ozSh;r|26P?2HSIIYviQC*v6O3PwX~qP4H7 zH<|TIlP~PO2d*;{(HD5b@Wz=}SccPAX^so~0P%2EWGoqaBIkGKf9&8&T>Ax{NJVzM zAELu_nd8NcAoJEpydh@(!@Z<2o$Q`?8EGXVsh4yWS-}Jx$V2#?1fHE4!fQ5rc0LTt zOtLI)m=RBc8T~6BLnrGMG|>#Ys*UNGhcZWUxm_kvq$KC)P3LwU-P&S!uEz9aSF!7_ zq2K)y`n^25c`tU`H}nvt;+v3159lI>LY(^W(tb|w?l!qK(G^=C3Y*+$R_BXOy^fi|KqpSP3$^Efo6 zN_b_`o0=0@mg4B4#2w|k`4c(i8NSaCVsLGI0jJUfE4|}M1p}pkgK#8sUk^zVXt~AC zHxzDK0zbbBw}pnb%QzS+t$Dh<^xrPwgL4uc6kO{job^sq}{!Txf-I0e&@fydfFx{}8&_sn$#tuY)2+F`~@#sP-g z`WVA`<5Sa9VYxZX!mT%SU#D3QT4K#xP3?_6_1jBs7dI;Es2y84EPp`$?>xJ_N_pGz zrsvl!>{R5Wn{VuGu4oI9B+BY5SF3Y1C+&|rE_D)|r@JP)$vk>^tnx_mIOVa$W0FT7 zk1Ot%+@8B`cEKUqaj1Pe%}`Zqg;`ox5--{aeG+6Hk7xEOVzq;L3^Qi8IhWf&>(PCV z!e3!N#K{b3t+S>K;~`@Uqu6LQOf>9dU)rSGU(&gxS8-NRdeM?1QE{V^8znDwYYn@N z?#!(9_)Yb~z5jz{3iD$+`^yY+<72Rut}y3Gtf2PzA*aERXz;w~D3NfM?TV+^e|S6I zV!i1h_Nw5QSPa9mlA9UU+SIl%p6)cfJ^VN;AH)er1asyM`Cw1R{Yf0fnmNF%dgS zsZl*u`m4fK5vsBLx=PhbbyS(piO(pHmfw}F!vAC)w{@Ju!Sc8C9bPA%_-<^J<;n)h zkIEH_FhzUC3`Mjen3G|1`61a**#~M4mm&Rb;}zBwC+Oq&(fNo^!gJy_Bd)@^<&tEu zv;)kIR(4Q+M*d0esQ4|HDw-;WDjp~%Q1Or{bn*l8Z?cZEx13xO+2?YIV$R|tkY`;* zXJJe_b30Z;&g)C?R62^2-Cfq#HC!3?aZ|?@I2cz}ZWhlY6epjbxXg?-&w+ty!kzK$ z`1OX+jb~imWFe39G{)iKdJ=z`F~&^e9h_Xx8uJZ{4c!gZ47>Fk^koc*_#BTgyf&OO z3^vp@)`GrnW87>UXS@QT=WEiL`~(-yfh%zqtHPh|o8FNr$D0P4M&hzt3Cg#Uxg%#z zy}3JN+GuF1y=23)xb1c#clA|78!(FMM*>_{smIYdDiA5qfQ$? zuRH8aSGdY_94_B-9`b+(T?p4vBpxei%W3T%r@No<+R=F2z2|3G()h zs6O7ZTiH|cU>qJ$*=WbD89zC%wTI5z%nn+P6P!CPRb@oa(VUs7-e_UnI#SE1LuY>t zGjcVGjZZKa`?+;65gl5oOIipNXcMAeh9w9}G#)nL9g34H5bt5!!ZMx6d6-x{78fcj zw^kSgXUMUxR4cX;HFI#adI-T_v%G=4JBdT7h4oV!u`Jv?UwQ|jhM(jnT+U$PT34c| zFMnT(!Kgm~4EGd%Z;t|q^xIfN7K@uj-<0JLpM*~rv^n*b4k{rQP zY$Y|J-RzcsY!i7_!=Ylzi>Jdlmg6kzE-H&+sMH-MklSAEh?EUcQkKJE^e2@X3#8Bt z^L=vR&%zfxcowk3t%d8n$6nV8C!X&3jBGHqW7a%H;b=2fHoeD#_?uB{JY(!*ylxm` zm}^*MDA3o&i~O76ogvRK+&IzL(ddRgK!azrKReq4cFvJRaZl2%&a-o8rnc+jS&xG#!O&rN5h4COOx@_ zse`NHWN5jovdyx(vS3*i*&6f|FYvLgBHtnJh&%I6xt%;nKAg<ry-fnqYCLojp7OCls0Hr*R%HLvHDBUtvYdsX#kn*J(QmLHh-dF0Xgp`6lS^9 zkH_O}wukwf0y)!_r&0-p%^!Fd1FYyrxS}1bN*RWQaE#C4%z!((GE428Ly>f~(Bg(qQz7V`vFkhz!MLl^}oTMJE!lKig+ z`TPgS`6x~m_S_Q|0j?BpPR*g)E^?-8;{Xp%x)(tK^IX4$T?{q!Po5*Z^?l= ztcstgvw4x=hy$bEGzW!QBpTl7cx-nt*_lofQ-2v1s3Rug9r#{I#OL(^6sQXo&aJp& zRwJ`m0jFn#0$m8Jw*oS;5m8|>Y=0Y`tC^Ly(mI7$GJwo1kgRAWHKiI<6XT$)X2M*F zAm_>xNd+oP5$um9(Gd98UDVQ75M75tdp6+Q9>+e~nb`P>XSV=#)GEn(sS?umyllPf zlFUJ#AREq~y2-StFPl&3zOzCnfIPKMnV;%*>Mbre~6OKy-_E;_~eW*)@# zQ#j#u)XfeuqZe|@e+)C&29MjjaM5+qID~T2844Fxp8Llv=v*AR{bB~RZZmUh7|^5C zK;MyD#zEhG;KmRm_vT$AQ+-2xPNv#y!6p8;(2O|U5ZZSe@nZ{nrxpIfuoGvN7iRnG(_o=cxs@6AUEo1@G0Lcl_2HPC#B7WAjmVVX?+$TK`XS_^F zPuxvoI7OZny+P6CZtH=5@fVJN7I^vR_?ijkWC+=gICynL7oCEmc(U1_%DszaBXP5j zdAo2^kdrf3!(-gTI-hFgFk29>tg7uD47e0(?kPIPQU7?}x@hMjZ6z?E9jQB)YI~v} z&AY?u&Z7sCZq;xm=+22lj|YFS&E85Pk~O*nO!<@8!F8As6w1+?&Jc zdlzi8MHEFgvVj}OS`bs-^K*3-`%yLc%q^3jiBr2cJ7%E$S>6a)X;;7q?WKwyfZB_ zoiffd_BUQOI2u0aFY2B2`*n|Xw{?|tPP)e>=S%WSEG4yd%XPzah7uRu@e=!z!s3p_ zkBSPpV`jV7TMpv(5?#ZI8iOGLbvFj1Sg^8IEU`ob z%s4Q^D>DP^&zw1MMDZLB^Zx(u`|kbjy$$oh;9Exy1sVFMDFa7|p&(h4ES;^#t##IP zX`S>?nk{}7{m9)|EuWXW$szJjI@@IX75iL=&(SmbZuES3&c@EqP-Zt(GL)cF6zg*7 zu_o6DSAnaiyNSD*d$l`}l%m=0S4b-A?T&PpxbE=!j_jJouAQ;Bm7kOkl|1KEr|j(M zoZw7!e(Fqd_HZ6`{_5Q1-0F;T=EQs$QyM)zI+52M$M;}_|Ffsq->~ns>GDK*gGdn1 zU`uC8v69bfmWr&+t>0Rfz+9!`^*GQpjjHxnDsL7OnGTk;8`f_w{caNaKPfyo^aS2> zIun9hpQ8O&9jPu8SjjV# z%P*F()*IHIpm2&P6m8^-a=h)NZH4_Sdxpak{U~OybDT0)IivhbnV~FJ6vd^SQYw@; zV=H1yVk2BTT!&p*u5V(?lygeFa?4rb6iU5wi?bre1B3n=$wS%EUPrcLp*_L2Kz>yo zA}^O6ayveji8LlrO|nRpmUk>O%mpx2ccRAA$GFjnSxtlJ*84>+iAa+zDZlFR@VNh z_Fmwb|4si0|78D2f40Aye@o347@XtPUsW%wHdptn-c|jix{QRJ+5R$rQeacy`#^4B zJKW2vz@EVL!1_R3?ae?h(uf`g4hHrG#_;(h&N8BQR;|BwqFSjg*3z}x+A{sJ9&h+? zH`y9ILULL{=n%E`S$F^l&}guea@>%9Xc+&ye{DX#s_~I#d|9G!BLCbJVcy8i_{f}W zNnu*9une<4wvLp}l9aVd>=wnMnd}jL$Zt9!hRHq=6zMn;Jr&pGwsM(hBIinvKvM@v z0qaTY6I8lBYm$`8^#8S3C3KCfsi!E&_fu{G*O!+IUCP|S}r0dcJX^pg2N|0`Y74))}qt>6mPuLRY`>vJ9Mm9zF-}+${8fN$(5@*+u;Ts_rk0^&|p?g2TWJ@<1t5d9u%fCM-Y& zZVDX_4u_*|8CnpUiJ$Oc?&wpf3VVhvIHR-&;c$a=w7?gAAM;(Oa3V~3JwNX?{%s7L zbUdiTaInZ3Xlr}JvbSgAkA{6uqZ+9okaxz&qM0a=~Kse`~k2Qf-o!ti@=Jw5#f7HC8{3drbWkf(BEJ{nI26kslOH-hJKG|B5P zGHVXj^+i)U0L@1tdZ2cs>%@WfTm(m)8g&Fu_$;RLtE9l5jC><1OoGKh91rbHB8HLMC2N4v{*skgb^2<`eiI6fkEb(5r?m$+#0Vri(ZtP2r9lCvy4tQOx8H zy@g-xAK|v1%6W1oUC?UTDZehK%RkAb@@qKPdTcB0x%L!CmLmow{qi`MwlW+k~Axr48(KP5Yl8y7c$BnoVKQapS+a$%6>s|E;oR$_^f2~9- z#Pg;jdgnfDm}LZK@jugoA)^)yHmIM~4ZVmSW-w^%BK02_bZIhV)WkxW6-5zTesxxqpks<6 zmCVYZ{uBF0dkg+WQ7kL%$N%TrzqkDF&;Q=rfA8_%YyW@u`_C)+?|uLM zJ@s|}=ReE(@AZH0_wT>``!n_S|NF04Y5)EExc}=usn7Ah&y)IF>iz!n{ohBX{`~jR zsXza{{=c{X=f3~@FaO^1zqkGG-}>L%|8w8}yq5pmC-oKld+&emIYJ4w@+;Ydr?I}U zTitEdty(o}SFGb!*Q&eOdq%y^^?%pD(4eMIkk65Zp$!unzH8*uxJl!tP4+bjX>zn_ ziDqM)1vQ({d|&gk&HJ`E-NL`c#FkxJ&S)9ba&yZ|Ei<&-Fvwo}k+w1-I_VwOTH>ysPI!9`|)gD~yM$LjX7u1NY-o5(u zYF^b=RuxqzRSBuww(^}yH7i}HSh3=v3i&H+DWAXmo^l1tZ7*A(?13_s%3LYkp!EGx z?MelgoLEwpTv?)EiGPZ>D()yYshE4Qy+s=o4Jx^_w??uZXeuk zx*c*`?Kah|uUj*>if(z`G`DEi53aXekGXDgo##5rwX16**Yd9UT-{s~U4mSmxmbjJ6$?f9i^4s>q_Q7`FcHVZ-w%NASHpMo~*3H(^R@YY6R=}3o zCTs~>sP;*FqFvWcYx}j$+A?jHHdY&?b=Q2g23i%ZlvY5?qPb{JHCp|yeoTZKBpyE32i{!fI|clj^Ek^0$nUp)ydum(S$`c|%^5 zr{xj3M{bqt#KC-r~Cdf#Q>RD_)7G;(@p=u8E7{A8|q)6$iv_u|sSY>%=OtOe_-f#4IsQOcZ0pUt)+D zF6s&)ZYeXAUSPouYlUT*`^>hcx0&1gZj3h88jFpN#uCHVXl3*LJB-|J?gM?zjAXFKKPk!=$7n|D98k#gQNl)CGcsB7v;*7+(i6s(CCN@lTO{|<4m+&;+ z--zECKQMk!e1`boxQ}sb;}*ruj4Kuw8CyFpD%Og<5ZgPpe(cR(_Fr3n`TV*N(=*03 z=5h3rXj}BxsJ&6cq5>n&M$U??7da@he&n=>LJ=>*hlcMC?-}kNb|q{^SlKYwFfGjQ z=c=ErfBydA_oL#EdOx0rZVnw2>Jpkc)c<>}?LQm!RT7#ezx(-4C3@Gc*j$#oy}@_%omxe|36bOyIU4pP=_)z9itp`9e$1~!R3M%1-}oz5nME+Sx8{; zGk#_dDH}33WOPW6ki#K2L%xNK{N9&bxbXe<_tD>XevkQHH?&7+u~6U8)uD?*Z-i#~ zvFgXoAK^dh{#^F+&Ck0(PyUShnK{fB);;V&*zPbTylwb^@X6sD!cT#=nc}8GkSSSiA&5rX`$8Sdwrx zK}qb9uq@$ZLa&6a37Zo}B}nD@m>i%5@scYCA>)p<<(_M?3fsr*d%c* zudH)oAzqJ6ypnJ>;c&t_-qGoVm;^H+B%xE{^Tf!+l*Ic<^7pRa75>cr^ZL)NKc$lE zCs#@ClRPZBMsl&_g~^kW{gMYH-%f6pQY0l)ihr__@+|pJ^0JiGDdYHBpAwQ1p5o#x zJwQ_vwG>&-CqjKYg|ypt~FX zdKDv^v06{i%NQk$r^Y4Yol({FFvpo2%rWK?^S(LJ^fRZKxlCX4jp1kfGX6GlP@AS0 zQ;ojH3;n5nLSLe{(pNbTJ4ZV&r_4y1mU1j*c*?4j_>}u8r&2mQTT!h7oeP{ho$=16 z&N6yMy^Fp;DKPV0>oUcmsI zq?}jQDqob=q74&e~nn0zB6cN7LcCuF;)M(=tE66#b>coWZ~9d;*wBg zF#pmcKX4D1(%ZM8;3qru0x2@%|er>6G7= zhcZo>pcGN2D?63e$}%NDd8Zs#I&T8Vj4a zsk~79xnCl2^A^=ae&NTvw~Oqug!Gdq3ti|xAhS<47#oMY2m zKG_0o&0HL|r?z#r<+gD)Ut31o6s@h+M^m(EYH2lxdRM-d*JN9nQ|6Z6#Rt}>gmjnH z1r^ok)rJ8*;*>Tyow2|R1dLF*yMHjNE*^t{abyl zK2*P|URoZ_L#w0xh5={M9;xfpl3IVQy7o=Gt-0Eo+Xma*UHok~Yy(`{x*T_Lakabn zyVzZxyC|*>mxC@PUBYbNY+G$_ZJk~AxvX^A;}Y&-x_G&Ebj{M+^H`LDRF!hn_DvQh8 zqOX`K=7=XEQdE{>Zjk5XT6WGuzB@&*W%;gZ+9yo|3oZ zN7;-ls-$*T=c_YN8f~;DT6t}-)>GT1Rk3~1ve+uxir6OG`q*~a!fks|HGgbDw)eIG z+gjT;+jiRkBDKwy4Sn-do2wPD9nw~6&-pr`b+py8Ww(v86}OEhs#RI9qqbtUms%g& z7+YuCSXQ97EnJ(8`njt1RR2*spl#ZzPT5{t%+mq4FnG|DxyYXwm|LWYHiUg($@V!N5Ft01xy`DMy&<&iQMq}-<@ zD>+#Qo%k0Jg}D~bdTawVUMQE9&tO9frJJ&vd@m>*N|Mq=Bq*!E$gAR)_{b_f6^F>^ z>#S5`Q9%4s!j$o%t(buB(Utt-D|pwA6&Nixa_{PLvy7K*&~3WfSj($T(T-?B8$n(_ zQ?qI>R8`BWRnWrJj9PZGJV}jE31YhnAO zdD(tzf3dILtC!SCY5|mENwt+aUA>_WSF3XE4;isY`pU^D#!qsa{D zVzw}+np?~+<|*@_d4RgR!2HMTX$~@*nVHSH<{WPQV2-vnP#H!j&6LH;bt=|E#Z!D! zUMY1zVJ|U~*oKH*d=D3!#2$9eQ<0H+l$(0>0+m`oeiHR%QE3WK`9;KWyC$>9+fq?Y z*;-u&8eddPXydh}+GuolF|EGVOgpNMQU{``eNfUb(99d9jT%-{wns0g$hvA5F3r^= zY6Y!@mP_lx`Yq%8axRm#?ZmPME8CQaw$LVO(J1zPYHz;pAWw^^#no7z@rG<9C-S{H zudJc0C9CrLPx7cg728vUDHqAOippav%-UwXFkhIZExVcCx?p}WTUzOc6gBh9_$d~<@i%-l~bmlM-5W_`1U`M25H{ANn)k2%;HY~`^^TNSK(=1Viy{AE_O z`dEvsi9CO-m121*b@^-OslF@0>`BTIew)VbD1>TnEINvwWcMZFTS`U?fAJ+v_s=22 z$593EDQ!hXQILD?7iUFPIT{yXIX;3avrC6~EK15N;vrH0DZD_w!g8S8E+>GA!Lor` zgB`w8eX4qBNyKt0c)DBLt5wnr^%N^IP%CDut>x5aYN4#qdurSoEtm+`1yN>^+v&Jn z)lQJLLJLyMXc>7Hhx$alsV-F)t8J-;TX9GVtKMn_^)D!KYUDxdxfN{{QF<$t6c?C71LYs3BREk}G~v4ev-qxjQm#=82T(!tQb*e>Ih1Tl zcPgHj^3b{l2U^K)*>1hJLajt=x{{AfI1m0$6P-j4u?9q0D5i^=Tw4LN+e&?WD^f&H z>dG0gJBZj$mNU{&e1?pYweW)Wfg5j#hDqK00*c&Mx2b=rP1SMi>>a9Ib=O9MsVCKW z>J)W^I+<%1)TunG7D&Hbd!~KY-f6n_LAwX)+|z!67|Y4+Mj+H#wXv$H?&?Z8f-G*s z*EHEruAv5oh7R_OQS>b=BK?5gQcLeUb!>Vi*wO*MU z&3EQ5bF=x#ylrN;ew%O1uVy8yr$NHT%lep5^mJ%)o|Zq@~n)2g_Kc`6Q9-Ue%MdYY<<-BU{DR!O??OAu9a2fCj7KP?8fuN^a$0ZgHS~Yk;vXnhPQRL zMp<#_7rS}MtZB`${9w*gtTE(OXAs%W&l^@rcv%g_PQL%LCV(Qjt)n1DsPV{nX0$LW z8@-J8XpO2y68h+U-dJbME8P|;=Sn7C3Sj-h5aL zh23-)dBkkI#0)UjuHeK`=>rd$Mpl*rjfYd`v#TxAa#~O!7l9c4v}&5G_LRz1M~#LV z+-4`lQxEo&gAHK4Gte*JWGVHq8U{LCQ}3!yvb_a-;e|Xe|H9*JA!|_G+Q?3F6sT2D zE|a}v7uZ`zITH2q7yf8JSy~>3eN7kXL{6%DW2GNes3zF4Lm8@+fqgx-PFP>8TPU*E zWZgcqhgrugYAWUmpS)IMnhu)s_&A~+Ke}ISx2q;)@v&2eCsNe)sM?R*58(oQdYT6e&4rV zTFsT}N`4fUzw$%b1OK@!G`W=cy2`zx3Y^a_N>I5s!=ygQ!fH14i7cf4qP`Ep6FyJ8 zClIlvRHYQrn|D4JRB4Omt1stppIb6JSX!8DAFW=+dEUXw6jvXkcaF&%@Puh{6|ov8 z9Vow{G96Ja2t%u=euk+9%3b_>3;zBT5dk;b31>RS>v{)91i(%Ei!Shp((u~`B2vji zUe6@D1L(1BvlMG1HEl3aTte(tnm5V9DVfAC>B^e;IsmW5P zzlo&}?|Lm&psT1(HT)%7g4ijt7wjRO)?TX&Q-}k1zp3Z(^}|$uH31Zvh2lA;dZ^7% zj(g-5`BMIn?_^dg*((11HD9ry^=~!5mRozvZg>MeJyTz(n?Q`BY6S6L#7gXh3A@04 z4vG#PMZvgPEDi`B&P0f`4&U(Fdr+S4pzJ~ajz?Tt7b zk8u4h(R-pV;QI^xonGDu*NfoLw=g`6!^TCUoAJ`fYz{P=kj<;i0F?PkBAmr=H!>NG zjcUd@Bd@8kO0$Vzi_QAZttG6daG4mK4Hqjv$nwgpXYE6C zmO>XUM-w_>>0ha(p-Q}xSv-K9bfqdTK-2t9wW&d`qBV+Z2Jd_@?!#f(Ku(eK*w>qI zGU{{d8rc*Dd>eN1S)M@aq{yf2??SB5FOdfg)KIRJu4-m=sJcL1&RV1p(Rb=xbp;i& zJK4PnEXX9IL^^o@g{R7MaQdTSuebmzSLBw9ll#f;}>$y3d zUEb5&M7^qJZZ#VdgSTMsDsI_q9tQ==fdiZPm*MzNnXQ6wwPMz1^EJN>Ca&JFx=LKa zjP1r={H~$KCZiyD-G&%4#&bXpbQCQEUGf|L|$Vin;deuEy*VSl~B*0S`9 zj>#+X3##Cq3V_i*gTFtL@WbXTo8jBOTf#uzP7{fzqg zp=LmfM5%k#4WRo8;(b6JOnw(s^APbNaOK=;7^}D(U0sot>?0FlLa~Yi^bNCeDYx*w zo?3@Ny;5kTPU;LvXsQu@R(c z&%eCa4P6-T^uP66`ft6K(b_0%3^0aMIcMNUwlpRh=?oX1b)50a7;KJ3(L6T$S!Yp7 zMQ}?zlrDHFLwE;MU?DT{kbaA=q8>GWA6i$Zb61p_mzSKJrH)4vhu|I^hOy04JF3;x zPUw(aFc3>#l}(A=A=uyp+@}EY{F`*j8tAyy#QO-3lXx2+$n3_bfL09)@#KQIIN>?P0R$K;R^-1|1j?GU5jbLW&8rMXyw|I=J~ zXQfZ`eX5}ybX+7)0Gd8EFT={JfHDd`-e%J>+QSnL8>{d-8xY?<#tEY* z3}m%2lIZp(#tFE!p?V`Cy%2mUO5QF8`S-%}QhnNm;M5C#8^Yy0tnmYksPbw!ka!O_* z-hX6f^6@YFsUy`_AnrCaTnDwQIvaf0quy5M;65#d`Q=c*f%)BK5nMGF;wR;MR_|~2 zzzdwK&S3a4m|-dxUkIyP0Y(o{B~>(odIw}5%_?-pH@XBP>L|*K&M^GE!dC<DVI@x7q~RGs#udzAO-oE7mjQZmsRvqhncIv?oMfpcri@)I5pA_ z+$n6PH{XLCTfvXf#sRS1->3vCcQxJ2Oy&q4S=4+&2lhCux--bqm+U?QrW7P!H=q{_ zfe#YtYoV-zUfBg6iVkA9?3ssZ(}8w5(j3_XJ4)4>zEa66<`IHrn%BF zicQpl-5o_g)}+HcO7550$g3Y>1CC1({HiyKowX_|N>MM5p?5yum$Ze0JeN0d9xAJz zaN_3lx0}MgE2-zn@vPLl?5w~iFx?NoT2V*xyocy+Pe!Zfmu_6v!Ga2~&K+?XiwS>n zB239HHc~?_Q(Gny({t7j^uY-7bp?nrgSt2x#n9do+}elkz(^3aBa!T6?l!mc+ZymQ z#29Qi=s*miOI?Rv#BlvPoT7#?AH*0=C)!XYf)Wj|zK{EFV(35n@BklSF z{Sn_=89QJhPLSIlJ@d-A&0{{pziozMr04~BY^3qo_-*i?xxyL_PVYn?mPIqh@w$(K z+Ntc`1LxHnFSZ*#jD@DTh~qyBm;G-Xl4If)Y&%I5#bbyjLXTj>1}HHD9z21|W*Eg) zvUxHnv6Z|&1s{0;1Brx{)Y9hTBzb7pz@9NUah1^{BZ%x0m~v?xH9zXyL%RPP*+Z+? zKZjxUw?!HJNf+^nI?@a;p%(187OJ=zDtD8WVs^2%;$eI<&%lSb!a8D5ZR5zl0P^!M zkh2;co#T2W@BIU6Bpy^fqaV>X>mPK7Zh;7+41>N;uzpI9gV6=h=V?OJ$I=0ajNW1q@1H;C0Rp8g`A$e89gPk=MG!rP5ks*6oZ8zwaTIukVY*v6-)T*D>Td9plR1trui1h~EuocEI7F@_{uB7T! zK#eTX2k8}9fvx&@{gQrAze>;LjeeG@=f^7K2QPex^AqC&Yw(?1eQ7K+7V)*)xNGbO z&sW1&YVxnM!JSKRmV-tc^9OoyG1zq5%wv6ncjUqeSxWBaCVQr#2WpF(WbO;JVzkIE zE8!dUWmn%L&e_=gQ`rAm@Px~wnvbHG?^5kT(an{?> zeI;3b7VM5ti)-(=?oTzWsV3mUwIRyGaKJCh9&nE#}v6WwzFurOaK% zSx_REQNXyRFGHjB)6?svh;CatlwI{NFl!%rjVECvH_?L8dJE$bDD#XCXhyvyz0f># zA5CW#{f%?5ep>IZ&(PPhB8}i9=M8Uge3ltRXRw{s+Nx=71jkn3#wO6a$q2)kPVK8N zUXr(-;*64uX`FBnF|#;|M}11U#VsYssy5;rUSAY0YFQAY9FZT6I@}~*!RiL#g^q=d ztwYVd1aF_w-zq^iXU8`#j7#4KK6eKUxlaUR)oj`?)m5vDQx~Tmq>heYJtnh4h1L7? zMJ6&~RFjJ7BD;!5qL7>nj^vZE%ov>kO;+Fx)S))d!|CV-mmUJXY(UBE)R3&S=a|Xae5lf_~x@cHBKBf$CKQnwNc8IJr+JUD}1bPwuWapRQU8hxGM+(Hj~ zztg5q(x>PH^eB)z4=V7kUft+#>`2)3ptIUK+1HD3>KtRLYqHBm0m>vdP=@fz=d z+{^j7#mWuxjl|6kQrw8|EVAbi+N~4Huc8{mS7Y_M%%bMw(wu!Bim#thRq^3Qz|gwG z^meK(w65B8=JL+rO7F&PnvCZp>16$8HB@aS7~cdgmx7x;gk0Xp{M!(58Ygik9%EA_ z68HF~m4oYT`D%<3{EJnefNxY<$*$y7K3E;CAz*QT@+=moEfXwl9PBGbpReD<0eVPA zj--xlhn0OJCwY!X6qHRtZIf!sWc+DXA%}ler`2`L>!?1%VUyPRK zHh5(N+=4&WSlH5BxLySix{TO{`+Sq!K0^&!gfg3h&l`g(HcT}+i@Inp!RGw*&A+10H4x#b z$RP&9En4$ee~473?ZXb3#FW8oB40)ZGHuu!*XRKb`&v4pUP=n{1g~KmC(wK|tqxpz zSWCd-!SL95U}9UkQ*W)Qu#sJKnfj#RLL;*?nO)7SY`U8@nK3X7#k|1$#aJUR8l?vj zP0i+N#&>+tdPKG-e7U$0q>%1`9r>Q>8qNf{&e5~!M6G^~Ut60VZv?3FTv;h9;7G2d z+WE;6Xug-=@fVpSlkuDO;PoW%d!p%|% znU(HuGxS_7^h)Z~rl(krSNL4iL600pnG~mAQbxWJ+r==EO@uNTVOMIP`9|P)EEKx% z;Bmj;K7X_Jm8p(ipjUOgg6-(PW=g8JbQ`UgU=|?1FN30~x@{Bsf^|AUp*bOpgzq0+;QG@K5%;IW#HVp z?m^byG~$hXrV9>A4Ko=1Qi9AL1n2v0%z?{9;)#zm-=p<|a0}h74LDW1>ERrr({kO) zi6h<$J~xrcncA?rJzQ=p8DMoq$gb2L=Rl&?8vZc^wcHOEz8}8FYNlyh!94u%PGjh` zG{@cSjsLusF5etASaqS|Wu=StTusE;IHd-{ojaic58~3@;rdK^2mR23BT(+$sf#{v zl!9s^(;`{WGGSozMArHSXyQRFd5rtjRjC5E@5@w0Kb(%GWJOcrd@HTbx)UcM*wQUu zcwQCd1QjJWo=6)d5Vn`ciiTm01yRf5^Iw9Gbs#$N`f+_B%4MEDSZ@!5_z3GL!-^CK zb1PCkUCoWgIx>AAtKmScWZ_bREUyc0lrX9rLyTb{(i>cVUt)O!zA+!YT^pPmgSy&H zZ|xfz>zOi;*D;9rPNQ} zvg<$LNVJD-oRte;8~fpYm0{QynQk%ox{k|v9tPqs=YrQWa8r}j()g(fYIkN~)@XOM zV{{M)fZ6Yk$gV{a%4875vd2l?6!mY3KM6?sH*GeVd+MSao=bQ{(h(XQh>TxlHHLNM$;ID z(%o!tX60F4bIUVhGcHx4F^cD2Y${a6xp0%p#9C8a=`Z@=-<8I@E6+SbT~UeNN?X)# zIrj1noQ4-5bqM@UGTWV>{%i=pC!)!(NH^GA58Szobf*?;^XO#R`PrV1)g7?=3ogbc zSoA!&w7VLKcJaWYYlAi%4PW+Cud5qjej#*Zr!zy4Sv`gaTS|TgGe*<>$qLi#C|tqm z_he^gWu;Yu{G1CaT%y9iK?kJ6Z=VA)Pp5Cy8)ec6{Z-zo4hP9;1>^U;L^D1lP784C zY)lBeA_M24Fm@7+o7A#<#xNYy9z?r}nbXW@UIC%I!aRoJXA~uSU11aM<{o+m7W{fE zQ)4G_LpB&q$aPacM!od`=?73l=NRrV#{}wSY2v=iJY;^NFPXt=0n2Xca7_bcKUmoW^&Wox zBzh>liQ7!PzMAmodZ_H2aFa%$$thI$5ESD8?rq_9-#$|Kuq<>J)n`Cmq&O>_1m!0eq;4)zZ3%r(W7>il?D4Iq=!sNo8LKUw&o$FnXDd z@ZyJ%)5EAuy3q|!Iu}f!kNJ%_RWQSuIGm0H9l`ZP*hnxP!8xe(N@Q~#BKQ&Kbga<{ zT~iuP7oZ>3$AB-x!06*>#D=Kz&hW)5bi6$Hiz!9|xf_kU^a({c2lu0~(bQ$@Go`g1pG3OS;f(XN5QnE?89y7lq*U}xN?j*%=Cmn2{u%th{19E;brXUA!uiB zQ2POq5k$(94vHT>T><#Va=7yr`cdI>2>Ci5Ha!6Exg#E41GNkj9Ufq>KT5D9h`$E^ zbt83iDIN8DGL8y+hDpc?%r<)CnO>Xr_)(luK|Os z$gFH9eJD)Q)H~wl?Jy*Htihm{!;Sag$W>g`A$DsMv^80H3Wi&hJJ~I$o z#Z;zEM}lLWL^<5iULti?E1PgC;k-(3WjHRAP#n0vQ*a$^xEWul_%Y^F^7t~CF%`Gr z6cuYRxOy7@Z3vUL)rjQ+@-zT`{0c848aBPfdCXbaxg=$6%Dxo0l!_@QQqHAhah7$i zcRq7EoMnmX7-oqt&?k%U6*tJfk^pQ5!*=WKlo zQOrQCTxn#)bw0}+_E~oPMG!pJ_{VrbUHia#F-$=hJr#$hpy6Mb7wDUOgg3j>vw38m zCg!K9n?Fng1a<-2eA#&?m?U0@KRSrXnqSmI7y3Yx;2VFV&#SOQ-!df`g+?ENYxx+b`Mtf30{|kbGi$J zZcLAB6DaMbwW3mP(-v}aYY4M4zRV}B=9E@P9+y)c4~tB7Hf|EvWO~QX;1=(S_6MOm+H7XfA z^`f@rpjWt%+E*Vo9BVWJv-_iGmf)=h87siv*Q`wkoVs;X%DXsplc{!+x%slpn73x7 zqV&peyTf?Z7ZpTp=ww>^jnoy&A@k1@e;jpuD|mf>}rHXqP=v5_04a0oWg z8}K4$8li+QF!MDQro02D_5iOqA71}QkqJEL0-ICQCOZ2ve|HX_ZXB~(4XK2miR=LF z6%#W)s6tnpW((G?z~YuMGt&d@y+%EX?^lAXFT)yDP#-Yql%FnpdN4hKe0E9?oWJAj zg@UZyBpi?&==zR0Okcs5hGL(x1s(p{8c+YEG$`Q&A$HIsIYkyF(3{Rr1@FdO%uO80 zMRYmJ!LgetCRyc2%}*xldcx-XsaU(Hi;KzbYs6`@@zbb7C&geFe21MKhFKg#g%_ru zwUh3^dX!8A+#+7DM05|q`Yz!0PvY_xjXlU%fOC4*c+Og;*2q?@T{Gf54KJ@hY`is5 zpNw|;#jCA=4;{o;INIeb{)d9=--sQ$2@L$g3}!Z_xyOndOw>GPhS)ATfWwceUX@TD z&6zx!rxmq5*H&u>n3`#;namK3Wd7qQ{lZQl@-z@xqmR{$Zq@)MH5$`P-vDagmlpFP z2jLteaR8UWV_MQB{0dHt#;308{c5Rl^xac0!O_b)qOBCu2u1W58|z- z=N!OYF$ZUUl6-<+e-h?#kCPAuWC`YqJ8}+S1b*KGCcrHwZHC|}N65=yOfLM47_Pk} zhO6ml*N{7?W9wP3X`uWxrr>?(dKCxvJ2BlAf-Wz~{How9Of}D4=OylhCrqRY^B=WvRNupz^V7xsivPbI{C3sefZD~h zSTz@?YtQ1Y+W6Act1y*gu*ll@(+I5c!JN~ z7A@0)Zg(ux7O^-pzQ3K8^QZ4c(oK>XLfaB{wzZ8GV+9O!YQnV&ycKew-4j0OQMz-_RCU zr#KT|du2xTF4#RCY#2noRwM@%zSl)Hr=Awbrv4xcYZBWQe0S$wUEvWPIH(dXy%rCu zBVEQsCcj?6GahmI0u}|xk+AR}c?U;o01kI<)ZuNizZ#rAbz0^%CzEVsa1@_1kely2 z@ko8RZbHue2(9MRJa)6_xNH4c2s~pHTx<-+}epK-cvnI35EZxr$;5 zf|;B##=mz$S* zmrgwoyS{-UIR`ekVy3wXlU~EY?ulIM#k59arf-Hbrx6BYf6KJ{clg|7RA_tpI^Ee{ z9<1{{Izfk(bznsUB?*sl1HRH0=IT?u#%f^4b>2^PUi&ee(a&(%nqcB}SYH7Yaeeb0 zd3-Vrqi@5~E|J4u44ZkLiWrZ3kq=f-foe69`+tNn{Nej{eC^EiU_!v0>GT0T=m1s# zeR~u6?l?*LiGBw<1@8331{(R{8`W9O(jf9$CKyiP{r`di<}$OHPL$y-!v!yED9poP zisq|T2gl1&YSIB623AzS=kJ432ol|x0yxTi@>o=N2s?i-YUDj^cs-LeJ8>z3>3Yw@ zxvN2s#1-}t1T!wkX@~T1k-G4`X7m_~(Q8bv-o`aO3%j@qa$jY-u{Ma}%7oX$wEpB3 zdf+eVn2pC3y~bazgAbYs-IQKjWdbvid8Hg8PD#~Km2u4_oVq+`aSm~gq&$Ap9D4SZ zQR^XK;s;b&HM&Zx=r`|zah&2Sl&;e)YUw`oqc6%mg56z`NMtZy;OWmHpZ|c_XZ419 zGnhtxG-3w5Aj)rt-i}`SUU3U9Gs{g!t2GGShkEy&YL%Ze zfG$jI2=y#%x&za5lW{k$;|QJM6ALM1_RX3p(cOh{~_5{|dB<9?*G1~Y9}#Jq!RG@Tj7oJQ&d!5z+MW+zs4$;hhA)OCfu z>GT6f>wfw<7~J3Jy?go`{jGjmUrD`Nt&h^Zba(v&y+eOzj59N5Qp@03Ki0!wd0W{B z-c-K%?ED2>dZCuO!OshVRbIHOgW)_b)Qeg;v;oZQ9%h>NA@0CKvLJ>}BRPxLo()tk zh0g5_r)a^uS;juSK!?MHNuWlk?nF8vpXrQ`#WDR%&*i%)hnqJ8WJs1Rn9aS9niq$`)x|mL$10}s#;Wl6EAX4#Rx^6KVgU?7LR*`aiIdnsn_;q6O?`bsp)BJF|`H_^*}?&YF+xPgK&ua?dj1;x96g-D{Xm zf5O!1GS;OE)p8{D^9|W=aMGnRmGG!^rvkb$U)~FksXsYC5hwHp*z=m1q?$OQ$HC*- zJaQUJus*!90IV;G+FMurB$H<{tGERn;zhi=^IC?321!;u7}0TDj;fsT&8XZVs?|Y* zXgKQ?{G&0{t7@q75~eW!!4dt7uE+;=_uuqjTN2?@hK8=lg#LR9D`|x;&uy$^2Id6} zdW$|4o{0TY=>3IefnaVd{GmpY4A5x;aJ+O8McF1s2)OdsNCTtK5# zRlV@}$Kihjf%&DSKNGn+rvOe;U$@asi01FzhfPn%UD-$cr=Z5K2}RyzJ$_LklbKH| z!TF!*RusO%CltsII)C}7P>qdqIB;3%0j@#24W?7qn+nwdHZl!AWH{Z^`glNd!DY*s z#kED$s|X_l>^Bq+GMmpd*~|peC?4Ad*JGKnhcgv-jiTmnqY00l3rAST6r(@gsY=!t zoQ_a-&nf(lGq_4YX_HC*W)Adctl5c)w5L{0c-(qLqs}y9wygr$)Lpz)vWhc!9QE+> zG|t{G!|`}b?Wst9jpyC<#oJj*Uu!WDuLc$@MLTC!Yf)CnF zn6vx@9<<{X{!xaJJ6otg{g|sC0%u;02Dl49M+TZt@p%zTfdqw{YH}Co2;nHqyjQA(iqZ;=s4Klh zOR8huw7H=9M0g2jYp)Q+n_#mhlSM0>QV+QCJu28{X6m}6MbZ!KKE`y7lzw#lQqLK! zW)&l;q~+PPr3JV!Ay#*kYcCk}Bs|9@@aeDkNlno&N5Sdl_?fd|1{cs2cGz$$lt?mN!eH1% z4=`aHb4RiCuyneDH;CMAqa3b9QxxGACTg}ae^Ao6!pam!!}x$F#n3cIiTw`n_8`T53`LEt=h~vu0WRz#i!26 zXQ3rqv*CE9$g-8_u}Z{g3GTj&e9d&HHxuFM;dqD0-OQX~UyrM{oT$&kA*sh&c(d1! zQ7L`cBf&(>1Ly58E(c`=RCfd?J#V9E+HgW;C6gVEIU)F#313Te#ZyX;KblKkMF*9I zBgfG{4uAty6ehXdgj(619-0nbuLbe?iaVSQy2Q!1Jh0TqRLJchXHzSS<%v4153V*d z1DSLw3fuBUEpCHvrTR?s&=P~d=Df@wJVjB@C3*|!5uRWkX$qOY78Tf@ti8$XKo>ey zP2g|O%(A#tN2z$NP&NC}MBO-<;>Ky9XrA#Xotx@ujK(r1qw=bwl$L|tr_Eca^UU;k zKJX0DoEm+POPvK5eLA(fJ9(e_nHOKItoSxnIX~7C{*;I-5@YqJ*F_(X*yYCKNdajZ z;hE-O0zZj9NM8_qHq&HV={>dLw$^w-2jO*-(2ZN^z1&8lbYPaTs!WFu;tp#&Lv>w) zk1~o=Do&*gO4}73*p=FmlYeoCB~Ji%OOv_LbgNu(6oeI*c6u@$bLF2+iMMc&9`jrr z-zP-o5x(&a9OSJizE5dNtu>w2%(zO^@KXOG&V{Tb&bFvL%WW9&MNlRm%%mPsmoVSj zWOsQ`rvk$B?0ZVEz&2_p9@fi~U3~zQ3l{on!KEGSj2WP*kHi zGaN-Vd+qQ-q^K5QB+qYr9g5*^i*%rL)1zr~Z;irkE2dId**0(z|kxtW#EtEdj2et?Ed zVl_O;-~Ht0Zq}?jw?9E|Ca{9dsHaDTJE$HA9vozcoP_Izvzi7tzLDzMn#ukp;9CjB zAD^Wc6|g^j;E8LmZ{N_y-m1F*~5?;TJ zne-y&C_H0d@U|shQIsCbaile=+<4z{=IWI+scIqkORj7?|U_fDfpl2|$M|kz4 zc)kQ`UjbI5IN3gnPPc|)j3JLbS--rv%ZG56&aqzk$>}>_L~EYk1@=)I7ik+E*bTU_ z;jGYmxN}zK&23cR`e>p4)WZyXHpX3M4;C|Z;0>1D;d6VYTU|Iu83HCQq^D7jJwCuR zjhr|b7Fl_i`B7h{iRyzTJLrVuG=n*1kvaua9OV7Oe9?L;WOgn!(%g%={Jw!MV*$`4 zKODOgy80j|L9d%8jQK4cC|{~sdT=L{6VNSL(T2Q&nW&UdbczeF>wH?jcpR?q687;| zda9}KWdpB%0qSZlJGHp79W>d9ew<5>s1nn~GeDSlm})lsvHslS0&_sO(1gY50(@c$ z;033q+Tgj3B%-Mk&F}DsUF0*-4qw!jX@N{s%WU9qjA+elWQ8=e-ilY(PW}=3aj5q( zfxDf|T?eWULXngtv)`cMw=m^*n|+h&LcidAP&(qfS{VUatbk1%03iwy-9TKj$K+8x zBAQ4auqH}yHXi6AaCa)Tuz?u|?^=js|4bjjT)=PUblvrGdS@K}@A%A1aX2^9b*jld zCzF@EIor~KxsT;cg8XG3CbsKvSEukb5{zE}7LUTqcxTjxaev~kRb@r1;S4U~{)^C} zyVClB2YHq|+`jt z;UH;2e1?0h&l&vD1>i*LY4M>jj?4Uh5*{#?j9kIgqKT4pWd)akIoYU(m8q3=@Ts%% z`4hWg!-J`G*}83Vh_5+gnZ|wUBsbq?7vtEQz64mSQGM2xQ&!!z@=2-D^0mf|-sDaJe6_zYxyk;Obudq}4lMmCIx$Up1iyYhJz6)W3ik2o1h4swf@nS^C6bh%7L?k4F!cd?A=QCDh3`HSp5;eg)ntO#7lz`? zDV+y!u=Vr}d(+eE$@&D+zr6>$n?zO(X98>xO6MpnZ4J6{D%kVVtOM3>!KWy~Wa<+7 zQ3}zHKwCGW4yLz$n+*KnbN447^H2vTlCNXw4iD!s19+tooTA8$leiR>k`pg<07`p3 zdTfwrM;;c$3z|>g?>6tb8_eJYy}w9KQ0!#p;tqY&*PKpU&AeB6P7ju38elPgMllpd zK{bRajt8K%4^tXRBoB%3<`?i;^-wM!W5mS)@?9MCSfcc|1z3~F4 za0;ITH5*-IDZjwpk<4J;w92DKc7j`5;h1?iTN+Bu$bnne2xoK_kG#)x+ECQt5xU2t z&@DA_{o`Pt+fV_i-t%*2gVv+d@53$j6M^Y)>#jJ{F~l*My)b}1+l^gt9gQ*>cViHq zX?c9S%FKYxV?VS8*@y6ZODgA5ko`5jy~WAoX{^aJSm9pIT77`irS?biQjvSY(vI-` z0vz-ueRm&rXR6CwmCo`>9Q2}M1NHkUp1F-|+6c$+=aK_n+#Pk7h2BV6T!|I<#dC3s zhT;spFd9wW8)WE1Cg11$y zlPcedyjh4>abHxGv7qoNvZycjN}c`R%?|h}@`2gGtjaSU?MY{JA3oG#T#?nB3;n`u z(^wwc8L#gEy^{Q#ozF#m+znRj0*~I|X6vkHEmq+y?q5r0HVT7AhxymLJo`QL<|ka( z?BWu=!QbF?Iri@dFz*+-EXpiqePix35D#q!Sh0jNuq~NrECa5THb0Y}wV8N+r*Fhz zo`JhOi2lb`{gdv>WKta%h$p^KVWwa<;a@Cd-XIy&y~R}IJ#@}hGJGfbyN~Scg^p>> zbj?1r+&}2R8SI9I=$M5d%pmknW&UM4v#ePxKPJsn&&yP1&nyRX`k=ly;AADB_q;hT z)&@T#!0O7ZadXzd8@KBgUR_33U=Z(kDNg8kyrps|-M=_T*_u9h6(T(X+}=Xmy-*-C z$x;>NY=JV(*#kXr-$MEHlOJ**NKpm8q2tf*BWe$b-&<;9s%|{OwYo61U?$Bx#39zm zj!JpJeEC^2;x0In16RBX_|^?1aWG#}mQO+2jYs#4SN@JuY-^d^=tVETu(gj2n+Df7 zZ8n7|Y+!oyDHC^d=tBpi9t*;vU!WSt!PH{lz1xWGQt~qkbGTphMBNA0w~tSqxoD(k z^6@+SAe9-vG*0uqGM;k})-Uywp&M~65l&qK@A@Iya~)mAD3r`#{`N-xUKK*%4YJPw zKlYO4>B#H7%vE`z6qYePI0%;dlT*qAsW~d2)KZuJ@&s}+T&V}sID<+V!n8mq*w&yl zEZ8Ak)GK(IsS|Zh;<*4ey&F9K2FeVl*CN&RcuE$C+>86$>5_DZ}>>O?wKy;Nr| z^1G--ch-;iFXvNwuCrTGKNGtzQKtV_X8Z+moCf4=+-!tIQ&; z03HAEJ<{xjQ?MUCx*g|qGTKhFUXp`TsZC?q-HWJKkuZUdI7$Oy2je(L6|3jqbWmZq z@?%gY9w#Xl^^udmmBT!nrc+XV{3YPcZKgCf5&LkXKmGK9)YEC8MKpio5Wf9Zcyl0b zP$-i+tIcp(RY(#O*Jda2Wj|1fj+5Ck3y7PQ92|G|{)7e1NhK9d4lsf80*nMR=Z zBJ{>1_CY~%w>~=P34Qa4Ak<@}GH#K9r_~f3t4GBs!t8q&xO_i2&sLcF7FOL$`2(9j z!hBNd=Mki85?`1{8`N@jybS{uP@LLRk=i$h3bX{r>>yd57d?1`d=3CpuH!w|BHs@3 z`zhE#3)6?$#Afi|&UkQ-If>Gnb6CaG&SmD&OMo<9tj25DU+UTVEmXOqpz$TJX&U@| z2@2;5EN&xvps5k2?}v-u)8FX%=!B1jJ+{aFFHZdH;u16^dmezQSMhsF$X#itxPPLn z*N~Hs zfD5zmqNnhPr%G#-YJ0dzO&EqByke(vEbY?)cC+7HL_0d&(>awKPT%b%nyMwpmlrf2 zM6`!m*U8YbbOa}Y#JO=rE8=km^SuE-e{s$y2JbV!VRV6J6Y%&mbGIKjkG>xF#S6bOM(He`^Nu>h zkJ_(Q31E(#LoU5zGw@M{i8Td4G!ry94j;Pd)nuYbeeXKqZ{$!u-6!w0M8w*o66+ z#`L=i;gVh_lS_bBJHcCD_Q&2dwKfUoB6Z%VICvk!{?g0zR z1!A25JG@}+onV)v;CQ*1c!=ZEPu9Xfr@&orrLlx#c+PQ5=jO$Ac&4~g0l(4dUQFc2 zz(l^|Z}>5R<$#41mrnenc>Ij)=)8x*M#Q^<-Pe78#gBom%M3Yi5AR(kXJaN;%(7h955QuA?t*sIq$}dg ze|};**0e{D!C6_dH5`(_Vz#OT+)9aC`(NRWKb?Sj5Z`2R;{ggtN%@d<;&V&+cnUqG0MFtk?%LJZMShC3Y-&SGexMyz z^j@{t%sPoDL%QcYK2P<9UW-4SIEPylN^ExGUxr6cTc->@>MZu&pE#o8G*E4O4lcPR zUR>P1eTHW?=S^l^Q;&?Cxq7dd%+boWGCVCZ5KJI-m5BC1#4eG1|d0{H42sRQ+GMdek z&AOh%IPZnJtHXBH#j*)pF(L2k`uAJv>R&n;Pl~{sxXiml&Rb|&52noYYDUsFk8+4N z#^x5*2iOr~&Mv=Za3K@IM&mGp!!=pMVA-*e)|36Z3&C^5!0n9rSmMpP*eRh+=? z{!l$B22;GFI?yWBIky$|h`LS}aQU%19S7I z9CB|rUZ;#Ea2A0)&&n>v#gj@9b46P25Ygdtov5#25wF5_ldyw@R$z8&Tzrdy`IadA zjg_1(4t!3V&j)qf7O!uH?=f@WC~b43Np`(>8LQJiFVmv$#S!!RzM>dn8rifOEi~aI zbj9x;R41_wJR%?_Gi31m`D2@%+V#3K^ zOAvCF)EZOi#9yNPATH4ZTwGC|LQ^?JkBcck#gbILds+W&G@_xYT6I^I*>QIMW~ZaA zQ?i4uUsBEG6{qTBJpL1>Y=G(Bi&CDTm^YFGuTl!`RTC=jRc@l^6cG*jW69-I{_FGC z7K4ccw*4Rn*Ig&Sj6B!KIj<}u<#Xy^5EX(6fEDQ#`|R=Gt$TXjf-;;%r=XAQ`eX-- z(JzY=3$1@CTzUcIu>~^DsycGN?3)MgsirE>Ch0zS=F_D9;aC0EXI!1M;k%UEDq?tM z&#{}1J_>0WA2sItIuR>QiJEFxPqC`waP&NwWEzh?`m?@^6^do$ z3wv3Fe^6y$6V3lZ{6kn{o_LUxVlt6h)Rq1`$_`kPavA2?%vluTBM9a-?xK6-kp(ZO zbfK1Sr!aR&twGfAbKk0d?@@1gF0?sRi8tmm8EUaA>^X0Jo$Qs?C_hE>2i}0!A>!Il zUoc^RwMurfEV#;Cj`aFf;(B8@n+UOsrz1VQeNN}>G00<#>lJvStI|cHw7->N#eXX6 z@8Ok`{odMqiU&d&DgWo3wgvX|5PN+woPCFXXFsIBiqc+~`m6;}99SUkF60{a7lxvD>T2$iE}(oFcShBKeX&V4kzh6f`J>$uED zjHakbKgY~`+zL1Tt%q*1sIt(tx}TH$MGWQ=pUyhdnx@Gc_l3q{dJXO4%oP4~ymbGl z=RHR42&M%N@S0!2s5jAmcEJp#60=3s@mBe<_(rbJe6ftNd+gpx)czl1z2v@azB9k9 zb=+0@gQ_}eLso$);Eup0TCeiyipThrlMo{pKj-caN1G=&$dG zHJa+o{ZIvRl{Mbr{Zbm?5MJl6)Xv7LuKf-j?#05h;MwKr2$MpGIOr0g+!)*s&|494 zbrL^qJp8mMQk+jNm&kHnW$+)}I}wPZw%TiB8s0YDvHQ8d&PJ*v7w6H>ki3A4^f%Kk zXP6S$(9c|jiofO~J#Llnk1V5D2M(kK;{F)d>@{&c0WJ1WS3Ce?j#s^DiNUC}JZjQm)=z8}z zX`mZ%MJ%)Lt0p#e;f@|iK`kSO-($MO;}~Ws`F5T>+7K3`Z@B`0s|Yus9c{C|2kf2} z)S=2=>3x*_7sZJ2Jc;*;-M!RW1BduiGUH&K6M48=&Y4Shh$em3I(4+S-?C;wzr$A1 zx`-~7_E!CEJH1Kd6A0yu82u$qU)%4k%dPmCdf{I6*0jz@cE3NbeA!#3oFhAaO{a=O zmi?fOES_D4q@mn?Z;BeHRji(a|HCQsAc%>P`a~Ce~ zDt2IgQF&J^$Z5?*-1S)Uizc0lKp4j< zm7j^KZ{r$I@C@7^{>T61hiMCo2jf-dV&SSX+FttG5bpAk{{0ir`^F0Y9L_24_106e znDaTGDdrh;tXws9duk-k15=GBw1}>?9AZgZh;I|0|3TH23T9-cNnU17*uNC&-eS}k zy|4Myuv$_-v#GkiMF+{oX%kH5OvaGbVA&&iMkac{h{Gqi{-;&wb0%%0>UDrWC(x$L z^WJ@o12nek52=d0mKZE@hs2PGyV^WtMSj9c4#xJ%Yr*Wbaya*Cv0xw``JqXG?M30W zxcRH}yYEb@>c<1!RCjV0?(9IkE=xuNp&N= z%}e(tWjvS(nZw6x?Tlh-^zWF)SJ-oYl}FywTM2~XGN38N!uE`zOXC_te zHK^r96A)^_(|IwNr*uwCha+G0^^~NRvSaYoN5fyG`i|D(hq-v{Hi;u|@pMfR|GHD1 zcf-b0)kznL%I#=k-{U2VFqFUb0v^P`FViJfbJeEDrxW~h^<#aaqoP;!r_G7piT)GK zYr@ILI*Q-W&pktT@%yot^ri%Je;UBq)2)4V74o&BM#orPbHbYGdYfXc%Zt#zi_o(u z9#3QNCDZ}dK-}$N_n1Dx5@Pdos#YDV{Y1(xk$XB{$yb>7qx8qiTq##*XP4oNq@+12 z0grJ~jg{-qhh9i3gl#{o8hAg>oQJ>mAF<+QxG~n(7z_!Y`%9 z8@3fZeA5Hw5f#$S^ zx8uuH5P<+Q8;XIsOX#2 ztT>W}npfp@wl2bJw54&Biig6tl1jnGw@snS7XFcEW0|jij$I6eX}9up<#OUXs1@dg z*G8DqU&h4v{Cd<*VuUUA9^bXEbLoREW{z%K_lBHgrhF|syo8y$ukzrUO2d^`i{6nA zUj9~9_gwErCbj0)-JOdj+B@ZEJZ!Yr*&ip%tClea z|ILze3chN|gImXU{q9`w7EUXdCy{Rt`cJMyz{Sj;+ z;DpbMhp$o6GjZ2t(W%hXY^q?^=qK>gFtItR`{t4zc0gsT9WOwx#38FOkfQg5m1!Mc zCc7nKW8|{T=7Sc47Bcv1S8=?9-l`n>(|(PmrQ7XIovb!g-+k9upI8>r<27fauG4Tj z_5iNl3mQzOkv!#!Kb)#k&%+A?=Xz`Ph-Ya{Csk$s7SoG*7ClrFFC`{9kGa(lW3cMY zP*1UXIGi!a?%m60u|TzHK99jAolWiZHdJ*loOtLx-_@70yu?17Pnr7xKRIavM^}#W zO*{oLcTAX&yexUKIf2VXm76;6D{>TMiF^jZO~Us^i$^8s8l~;t3i99Y&dn}6Jm@J; zho$GFb?0%m?h|)@Reii5x(%T%=f}+Jy5q)9d2f<+&4;fHrsB2dX{kjU$}Imap=}mb zcly#^T&)%|igqzme0h~tw;3B*ujA)UYd9|!i{|He&Lg(0rq#C+<-f$JSJGC$7gvg_ zd`}RMH`w(jsUA;I2(u+Na+z+^d)Ur*O~i=0@{$yC{g0)*!YNf;jjgL*k9Kn7Bxp3r z^UVk~1@r21B^`n6F6)846$-2PJwV+Vq*}UngyWl(q=;J zmQ&Nh9u@Upd>J_ale{cvR?;1G&R_daJ?8))&MGW@E_JJ(_%=V3Sw~8al#MXm*Hohs zJVE_br#kZjb*3H7lo>y?zsh0X-jzKW{gmqeFeFR(Qj%E$1)q zp>e#5N!78w8)-0=#o{XznQt(ZYkZWqR9LQYd)4NO4ra`E&`G#XMqKHU!`{8-`qCVOW9~50#7jCYp=fINb)z`m^HV&q^`7JGH8ZojhCo7-xN7Puio;{C-h-x=i?=tUbu< zXp@=)kIO$T=sERhk=5wZ|3DilcHVq_?BA%g?!)GSUWj)@jBWZ&^29%leZ}*2GrA)B zVC=NM?sd_l(fuaU{T;1rvRaA`w*R6BqX(kT#EwN@h!w#RSHN-2@SyEf?o}$h5BZCq ziV5fZm3PGM_aMQ-dSX7|NFM?X_LnpB;^#NxnJCjo-KS!RtQ|`!r-l?vCaz(pd_`|B z0$(?=cP{e-tmo+bkrTFp*E^GXaUyA&y42QiZ)d-_e78Ar-Te*nn48;Dhj+*17$4Gu zCI>Pt`sza>#X@(bS(*Hi`>jk*y*EuW5#)rQc}+%an4Bs3WTY6**i$d^O?W)2j=N2N z+jcyDA}n%Wcoo$<1pQ=l=c5nk&pA~viu2JHOgVy`G?mZqKusI%kS!SP4g2LV482ij zeQ!05mAq}`M35^gER#jaVer>-ENz`@u+#dqx3fo>Q@8X|Km+~#_aSg6+O}h^6cvA|)?B{=P z^FN+SR7%;;?HrR8zwy>Y9diZ!qY?k{w$L2xr2xGnOz{avPFaat)?pKru_OE_R51W{ zJ8q|j+;^-H#9YJ-#>a4w@}~3Oh}3pRv28fZFwA9UY7bBeKQR*nUm4ks-30euD&;O? zXDHNFBMV^ijNxG-bpbV;OgxLlVY`bkW*7Xi5{8;Ze69fPeX9fS87gUQ@6X}kXPnEM z?mut<64^_;`&^cfq5;>B0X&Vo~w|TV)P(Z6UWd?;30YF&&5?yvdU%U zFzR+bTFVJsi7%<2Nb#C^6W3j}=fw7>JbJ(_-^qcKp`Axkqs0JSCqK|c2XR4U!q!Kr z9Ur9}7IW97X`b)B>a|z+2^y>0Jq1($;jHFJS);ZWR5YGUOtdo#!44bvkS4|o#&X3D zL>ESfM+Z?V;?a8WaWj3!ubRP_;k(ZVeJ^@nG-Gt`-O+bL z(MO_JcOpe3cmOTZfaR2Y_+rnW)FA-hUTU#_!yqVYbxKaJ?2=hT&Z>Tmil zR97{2GW}*aC1W0zu$Vuo8wX5B>-#<&aEvRcElf6z;mzl5LDu)a@I{XPG}f&E z{eA=|*gDmfpx#nS4}C7HmPOus9mbxes?}L_tF6jb4ZVavK_&;q@}j!FYd|RFc@<{q zmL2V!REG6BnyWO3=i`71PIJzW(y9o#!@(V|DpO&{r*^(|qGVstow5$Ax~luMDzD-U zUYREo|B3-W$!Y`RmGOyWXe+qmT@#4w1zxVwe6l~sGjkX0lEqf&U~2IdcBwo~)Tl;7g#v*4EB>46W!b2a?78$2?l`4cjydQWetjpg@u z9)K^?y7pb6&FNI6vSQp!F8Mxc_}lH6x$1$>W4dK^?2T|X$6~ujRqmVcUA&61)l~O* z$u)TzD(MIFePy36v$pR;&cmSQS=RAQ^ONpSn5wzQL>_N_Xi3F%+SiO^mjkm}<2 zC6uPBzEW4mRaLxwfsc|RXW^MoIM64%Y8&kLS{Qj99DJi^bd92T9)rCDKaHW)H4q7& zqN`U9tx0t!-c>ajixJc{BQaxQC*{7Dj`!bbM5|5L?xfo1*hn#@X_!vKAO2Q+O@1d4Xi#+3AD>cpS|2TP7@=5p7d{C}Tll--A@Plf*y~OD85J!1<<2#>^v+HMa z8+3GvI#B}~SofmgFXZFrl8(zDkA+_5U|b3TwB{1}1mX(1i#y;RTVi);a{bk!uEd@d zHQK6`G^E}Q&_CapGp0zYYBb-Jw43pP&iq=xWf$G~cDz>NcgUoyZi?3->`f-fe5?Ml zUHsiA7ltsM^Bgq)i5d;eg;*?Je{ALNsByiHSNQU5Tj(?_$UJ#Ws zs&0*;k3Oz88=<32lmF7utkqDnPW?gmARMlVFy>4F{OcciCe z7Z#mHq^cfY*zx!4hKbn8jiLF|+=)>8|=+L7g@q&+#@aum!yL zor=^^n#7Z0*$v8v)vQ&&rh+8gE3tyH5MH0B;$Pr*H%Zqkyv z(x-P=>vN*bUL3xiua~vD8FW|#+3zJQ__ThNmSS%PYkfj5Zt8O13pqbW@bV>Q5Z;XC*86!7ntaGfyPoLFr8ZqPWi|Y{7domWPCP>2 zsBQ{v7ZLk)73UBi%@e9Db2#eV*I?Nt5lPqU|bx|4dZ=wcO<)6sOXi_u3Rw0BiYE>Nq7 ziyUcbrN3~AHN&(YOMFEmD&guh7jc{5ow?LxddYj)Md~)Ve;JJFb9lKIME_+urHGG4hEYUjxeiB?9#1PIJhd%NIFjf=cgMb7y|$npsBOOGhb8!&UH#zxN9M{~49#-jtR0 z?^SH2r|;h=atx1;f$5(&YiO<$SYHgF?+HOSjYl>e{nk!U!J+&H;OQF@AjuOR1ZjUWOa&jt8G(Bo|FBSffX! zgu9KkH&wn3#q=-w=|-5YT4XWy(<1znx_2AB^RK})={O4h2z8>x-gb>!s)N7kS#F|q zeM1qSuWHy>EY7H3s2w%oDDPsjDOF$4cpIo=6vR_rgQR=f%K;ldZspcdBR-=d^|FHh zqi!rTmteE0FrmaPTE(w4rcpRy4>4wWJU^YJIF01tlrOyRY1dx1%EztwLXmh6gmR5C znl|1(R>lnUGNu*OO|6jMiH+u}xu7E61H!Co&sP_-TYB7feLwM=e}^Q4$xBc0?^F`& zs`F!J=I)r!j~q>Un5*I|*y4sF{-4f!6R0h^ z@H~0Bq|?=ilXSZ4eS-UZzmqmd&OQN=hRrznLG>sL<@pwu%zY_4sQ-&Fl^MMEZ%}p` zs~;5*Qy!<|<=N@~xghj+;Fw$-kB1WPL85P) zl~h;0dk_OyVFy)~nVzJ>uaU)e(L@`{T66fmnqeOeaE-_48(U108bre@!82E0GOck-FM+J?jE!?(#E|fnqb(?T$#gSbn(br*kLE^qZUW$y*wN*;y`m% ztCou$-66&){C5{9r@yEUUNf;`itf1)`euVW2hGHt`qC30;TBmaZg2E|FN$qjX<8LS zUA?N!oET#G_z&g9J7PV8>G4(7X#ci1pfPp4 zoBVKH*Gd&Dd_ZnatJd(4lQxtB_9gyZi^9<$$rbfGtCGehZPb4;0e-{ZO{yjDzzIk8)Tkqt!oBi&EJI~&odH1io+oHu?gBz5%r=0t~6se~1 z`KADUDE8!ZGK$ECWfLEY2(=S~<4HcxEEmpI?>PobZld32p?b~Z(d}#+$5`xS7VpfE zl>BsqXK9^>vD!UcL20etAl4q$v@(Zfw=TsRB zB{vn}Yq;0?4J@;_GjuGRE%K*YS|t3t>-=ca7bfmC)1|W1^WBPL{ecbs0i_1>fsawe zHq+8hB?3osZk+s8ySl8N`Mct6%fu1NWhs8$EL&CDvZWw!c2M4!GVH z>@KtQ8^VDx(3*|4*jc+iLNxayl`9o?Y&by{pQ|Cx@6rUduC+66- z&H2Il;;S1eUAxV|EUyCa7CbkXOS3Yp^boJa1rtzOs2x7daTUgUOF?o=^qtkWT3^7v zHbm%PJYLXBX5hO$Di01+ z6hH;JNivb)+Q? zg#;$+^Q)mgx(PCfB|Q)>f+=sepPy8V?PVqNQ|~ue@1Q&AA&$sf^yOa3U*pyvQ#oo; zmg4aBJ~fmy6sCGsc(H0sMHRxk5JwGe=_27l`j>x$lbfifVA=3Yby4R_%F$O4#x<__ ze^gh;$z|R3?PTNs-Xl|OgwX)1Mei(Fje2YmNB zc`m(`*^f5|_gY$sIR~sdfBb|>cmZCIk}9#gRa)K`xt|kTX7M1+<^T9PHW=Gp!hg4& z(($i&{v6+R7T4z=&!!U&AL7&Ao2ZlWKQ+v}ys9_!1SFYynmc8cvsRL$W&zJZX;^*S%_cJg+r^to_n7_O4lo}jDvRd?$+ z&Uvsye*D&c|3DtCU=?4qmi0}E=%~MFuIT=aNZyT);8ma1x3;Hsy#3EdZRu4xxJ19E zh_1k|--6|*>Sdb-?Vsa}?rzUl!5bU+`Pz2$Ty>y2p}1>sj$5#rdhJL2xMO%#D*M{Q zu*Ozy@MrDFQWUnGJa}Vh$YXWD1`~Kbg>%1x{8m%_yZU-BYF`I6tq#6AkFLMa?hfwf zHaYfethzhfyiFC|FI(P?J@30erPl@bPya&=EASj-NeqcE;pWKY6x@@NLAAKHn3dN= zgDR%S6y$8ZuDAP7Na=>U;R5;QpuUNStbT%z=^0%-V{~bD6DeNhY$+c;K|Nir-tmJ| zUKe972MLV!c`T_SCYT9397j?5O5JcYEcc3dyhA*$fcI5_S9ZBt4YBl}DB5HEh87TV zU+7_x$p5wYTO5XXg-%i{BwWzbK|{;mm#9o>=NmD)XrQx%v8+asK(ruQ<1!v%l_y@_2g^25XKX_wet>T)c5v^FiuSZRoA0e(!taV^+2g^?zzgC+1KQ~h403QhY|VpczaNUepu-|8YM1vIXk~Zf z9akW@tLixA#Njuw|9~}}Hp^y#*tH#+8)_2LNIJ)63c;RK=YJU<%^_m*N~>ED+NhkG z;hR!$9;A&GH}PS&xEi!`AReb-%meSM2Qf z>3c6h(6@9_6~WxM&@b+DAFXX-(nTuCSAN4{*J75>cT%dJR*$)Bmp5{zhEg)_$Nz4) zt8iYrz>{$1b9muPd{aMp6-!LyX{@8LvG{!_5zL}W1F^o2!G6o*IK(R~kP_UVcoYBT zOAx|?iB0je^x{jHM`e0N6@6-N<1rW1V@fy|yG8TuYOj~LTcQ|FG_^zH5VSF$I`jhG z+zftuUMAfq%f2gT-gLcYLFW4*=__XU#1oaxOnQVWS|YVSwi%`FL%qnoWssq;@)~Sv z2KQPp`(U#w;;}?2o$I&l`K6)9AliLNkBYBVFo~yNj*iZMM`!v&2)ee<`%#OQQ|J3& zc_~R{xoI}hI3}tnW|1%Z;fW8cmOLeA7BTgpmPnq7ij*0%=|M#*2MfL-2fQg-N|{VP28P4v%m@=leM5B2lR zz~GuuH>z9RN_;}U)6u3;Fe*b1Q^e>Eyr8wH$5m;gOI2()duzw>5hx#nxkN9lob0w4yJN_dnjjrt@Y9ev9r*x`LJ1FwM zz;Ag?BY!isrt%pV|HtC;EuBK2LVHJGjN>M`HuJv|tnITZEi={6i-*4xqdW79zD-5W zrthi*Uu7wsZQ13-KV8|#CxXR~@`y%4)AM9sYMH zq0VamF6a55s_*Y6pVe+>c$ayIFZ!Rrp`KIU(0|Zx8Lot)(As4Vn0M5<=7`^C_z@0S z%UyiZn^gk-63^%0(#5co-cWZRy!^5FA}+lh+%*dz?~C;QGwL%X{m;vgh`vCc42^fL$f&Eb|lph6*{OZ9ifFy6zjk3)#3q`JrXP`jcgyyOy&cMw< zx9GdP?!i6yn%e(0ppPp4?h91z(mLOQS@UnXwgut25vmdG;pi#)*K5$6CsG%_5-m=d z%CR3mjD?Pw_b^OtKj`1QR~7UJn$91X@k-T>(n(RhEQLItSJz#xNBJE)J_$#3M`^n} zJFfVHn9$4P1M2>_l;#4F!nBgZDqrEq_paRx5oZyMU4q+bt~z4_dp~z%lBoS4H%A?j zdW@XV-o*2|kXKhzK6U|3O`QDzbq+_>`$qLgbDp|}4xdzjJ%qcaI!j;i;nF`%67omqi zB%g4l1hag)%P$+9&P#Uv>#}EW(ePvY=O2vnLP`^=*=$VlG#;K25~yz1WlUOU9!z@f z@SJvFPIz!OmExbIN@Dm&<}r?;@V7QOZ7S@y3j<6EXNatYvmd1Vtx?@hku`thE9GBs}iU9_X?JeE>70*VV_M_1Zt6RNpc5qifq>+)S&O9cO1uPzQU{L;(VR$+zZyRJ`ZVWtN9siZ!o9JtD<^uwdn;I#4x$@upGHE zp4AkHJ7VfTYOfEfOpT-UeJN+gxl!GFO@z3WsAXzF5+$p%JTlz6?1$d^>qsc73US9Y z(M;6+k0~>gRNvOwzqOLK@Qj{Q4_XsCYbU=TE|-PnCO}(vV2+m1-9FzPGcDtLuB@^; zh^9eZnW2Yqm`O2?^fY#AJ5yWhBqy1Q^k#BidPOHbrF6+X#q$gN&b|0gk5k+J6@_0C zl^5dtQ&e=SS+&ttY?EhsBJ{55ZY5O>8hI-$J4ET=NIsH@I_~LDb{mh3Oo=BYfv!T179p=}8j} zCfl+3eOGHLc30msDb-&)8Gc*g`zP|4rSrXY=p=nG?g9Mf4dv5bxXnP=x;y>!y3AKy zbeh65JVos4pGd-&azmZVJkP?^^CoI6)9sy6e8-DvrQfQ8p0)OUbX|Xjw~fXiR&pwx z$G-RRQ&iV?F#}gFioeW)*Sf2Y^y5Ez6C24#O{!~GJ_0olR%H$Pw=zR1O~QxO2oCtU zX(I3}*=h0aTVnD>DC8X0T}t28UfR*?G^7otBvp}{R&yk+(X(<<&FBkg zU^*3PG#zP-mEI#WzGa14h{hRpN6n!0tkfy8TLjMwft|72&)R!Ss6qR9adyFF^_+zc zSYLT3pcw^ls2XEd8EqAAl$Ea8!5J?Ix!$BAb`iz0LGg1%g(Wnsld|$O&#i;p+|}s| z{9pZW?WtT~VI8p_*~_gUkFKskoWr~YrEM(zrnI z{UMH?>Rl&PSSH$;%^|k?Ihg9`x@tf*%_g_au-cdOZFLo4?$@D_LdU4DLiU3!_#0h+ zBg7U~7i{QvHi9Cz>bE;00zD7W?{x>Lp3Z(P(PX!bca1;he(|*iy9|jW09o4mF{EZUNC3iVyK3XMu-AExehKfjZpwP#;{DjV z)=vbA^g0}Qs~8dzO@0tV`apV{IWG3#kilIdUvuimq`Faqd9KZU&)Zfw3RTa*NjBq= z|B4PxFq@UQ%rkcE5;3f?-oa6_*O##5DAPE$i4(_k3GFwrZkrr8kDB<9-sFO6JoRZF z1LeCnJkMIV*Ynn7l&DO@clP`6KW~)DKBa;Vcg|npj4m4fkpFxRUi_9baF}xWi?vwd zTHQ2DceFaduey;RrAqfu!#xsy2Fkb-E{T`SfE6z$WlLq)PwP%@M9G*9am-P-U5MlS zY+~d&S9J(wrL;Ic$Q3!~#MPiHCWY3iY+u)Zx(18N7Wz7+9cDF_?`1fSFvuzmQ#E?X z>v>5&`!^Axmk!elw*q!(!|mA5#DUe2z^945a9CVTqynwtHXZs!uF;^9cg=OUOvx|c z$~3n3pL9yn>l9e;cjTvRcd=rV#HGdZ<}g^Hid8&HqnQ&c(noag&6JZ$$d^aOx`c|wX0PeC`38@`em~l4Z>uFet&=|J zcuSH0)~Zyu;J3?7*DUA}%)ab~-`!Lf*lhnU!r^PdWIxlYLO$+i9}iNA3MTTF5mDCJ zqsPnv`PCl&+KOHfHU2ddD`(Oo`*ytS-O1nn1~&TAUicq0G>2N#iK-p1#Xz*z0O6*3n#82JA^cdf5qR>^gsrOaDse_#4vsN>2S5 zcS@Tw3g3Uoxf%t@1$Xj$pF8F$ar#YpKdxf5fm(OOS$!Vs_(e2Gz+E%Ey~iVWN$#7A zr7RBD#G`*P#~_z_RBJA}{JdN_Bb{;aDR$|b;VZl?>txcgxOi|+gF^J9oRISeYE%zL z+N%t{rO&yz*!7jDyn?!4+2oBD{3C~*xF776jyy1lM5dH`xQMe^<2@?!hgIH}dEOK4 zrzb>);@%p`lLbSo_1iohI!#A-TovwiBAl{MrDYB0;Xxk6sbcMG_}Wx&$J9frLBDx1 z${<<<^R*kP4$h}IzvmhS%XIv-eBieFk+>QT+#u353fjJ z(f)sMV&JzcT%76jeKen!kZArzdT8`!c%0w zd6eTa{6uF$C6Z?FdalHF3euY!&_s)g-hCjwR^s>~ode6P`Yg5XA2Ge#*hW~L?VglE zDxK}|y=V2MoV8c(CO)vj-9*3^PVz=>j;>B=adoO1W|0Q7Ej!6|2TkhVCno|9a_wcm&s;DPk|6 zik263V@W;WzW?~f`i8%@uZP1hdokT~IfEiRrMfH3N~4v)eyXXu3^xUgS_ zZ+2pTH7TJViy&vkwDTfeCAj(%&+17I;p(1INf|jy=zx5)4{ly7LtVFH+u6w@@V9*w zi^W*+WM}?({9*Ak3yi!I4i4M{Lsdn7iZxV2Y0C#$QC;O3>(~t*zReR8FzB1{;-b(3 zSM45kzb3L?SvpCQvk=t-^cPKZs~z4pC85sU&W`v>{u>~Bln@^R%rV;gVd|~rXvXQh z(sp{g6QQh0zrrGag&wErjJCi2he>ac*?z(A+N<-ow=;M7_@+Lg|LoOKeEzp7N$2&M zEY$P!v5xN1PQpRnu%ocZkD_o4XI(|;d=yzlZ|B;#tt8g;TR`YHxUwlIm+Mvs6eJY9?VlBV2bH~d&W7M9nQkK7n z&!jZ;#v3Y9)*gh9)AHaC=54tg&1-hSe0O*p&kMGe0#r{m<+pe~b&<|k&U=vG8~8|f z2xS^1d{LCWm>57;y^t8ni}F`xPIoX3ou6e>XpTzFYM8!>p$2{&%sS^95!g zZS(yzbQCP1K98Z2UpHyyXa*g0{YB|*e2e#+bkLhu<}*<|uiDB1U(Fu* zQl9K&l}lsUuZ6e5l^c0v%8DVAMU_J8JKs_OYKye<<&>cRVSeop>|tlel+Db z8NH1>6x@AnCJftGow{J+B90y5Cisv)@pvphl_zdbHc_i?$02O0B9{YBI$1U1h1AQhD7* zNV6iwR2QqNq<3kDb#6t?=qa`>m2H~iU2oAQM&W5^?7~m%C z(VWn|DHm1j%sN)Qs_&0m>u1H^j;h>E;kQPr+XLKTcP>s?pHt%&HE$EOuK|rC0|(4O zXW*zSu@WzQ$f>U^7Tw}}Ixa)z;@W#IJW9OIk~G-0{Yn4)b5PsbV2&ZpzBOb~-7aX! zEzq1&Q`Tmia{(N~dy1O0N$y(g&9@2X|L#Z5hthinJ_*AqkRsOM^u z2)}?I=^i*cSsY0**K3R1yT-mBA#$8lRY`}5y}=9k7Dwnfr!r5{-zKk)rH4%w880W5 z2>*x)c6XwaRQ+pGM7uiMi}=cCLLd2gUix#?RZHGu=5zbx`DU3EO8#D-Yb!3XPw8?G z>PV@Z^i8Z$~ZaACH zyda(#j(Eg1n~AyBhR$c1Mce{ESt09IaOJbB{cfdW?eknR((Y@@<)52dw^E17Njv^V zsF*6>Q99FMUz<%2y@E~O4n1ne26wdTYtJ5}@n;DyvHl5~#&A3Nj@U7u8WhabO;5pC zgsBWpdRPzfUb*cKH)+H00sOLnNIh4SeVnIuIUV^JK3$Q9{6BY1s;0Mf2GwYjYuz6w zUxtA$b7m&Vesi3l6zA)ZnEp2eQq8V-JoLHOFi`}2Pz7s^SJ8;)>u-Cf2lec�`4= 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�Dcc#+=K8(FO$n+T= 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 z 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 literal 0 HcmV?d00001 diff --git a/tests/corpus/folder/Moma/audio/mata-63531587590792.wav b/tests/corpus/folder/Moma/audio/mata-63531587590792.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d55e6f426ebc35b89c9c04e07b94e205e2cc9fa GIT binary patch literal 34794 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 Awg3PC literal 0 HcmV?d00001 diff --git a/tests/corpus/folder/Moma/audio/mata-63531587597879.wav b/tests/corpus/folder/Moma/audio/mata-63531587597879.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6b1fa3ba2149669e5a58195e79b076b50ec03e5 GIT binary patch literal 50194 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±wrv3^NhZkXt-2WkQel;PB8dK%r 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 literal 0 HcmV?d00001 diff --git a/tests/corpus/folder/Moma/pictures/sdd.png b/tests/corpus/folder/Moma/pictures/sdd.png new file mode 100644 index 0000000000000000000000000000000000000000..cd6dc959fe4090fd4b812295fe538e3af4400245 GIT binary patch literal 14646 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 + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
This records the syllable pattern for a LexPronunciation in FieldWorks.
+
+ +
This records the tone information for a LexPronunciation in FieldWorks.
+
+ +
This records a comment (note) in a LexEtymology in FieldWorks.
+
+ +
This records residue left over from importing a standard format file into FieldWorks (or LinguaLinks).
+
+ +
This field is used to store a literal meaning of the entry. Typically, this field is necessary only for a compound or an idiom where the meaning of the whole is different from the sum of its parts.
+
+ +
A summary definition (located at the entry level in the Entry pane) is a general definition summarizing all the senses of a primary entry. It has no theoretical value; its use is solely pragmatic.
+
+ +
This field stores the scientific name pertinent to the current sense.
+
+ +
+
Class=LexSense; Type=String; WsSelector=kwsAnal
+
+
+
+ + +
kêtê ngû sô asua pëpe
+
+ + + + + + + + + + + + + + + + +Teich +pool +étang + + +
tl
+
+
étang
+
+
pool
+
+
Teich
+
+ + +
1287
+
+
+ + + +Wasserstelle, Tümpel +waterhole +point d'eau, mare + + +
tl
+
+
Wasserstelle, Tümpel
+
+
waterhole
+
+ + +
1288
+
+
+
+ + +
mû lêgë na …
+
+ + + + + + + + + + + + +erlauben +allow, permit +permettre + + +
tl
+
+
allow, permit
+
+
erlauben
+
+
permettre
+
+ +
0292
+
+
+
+ + +
lôlo
+
+ + +
lɔ.lɔ
+ +
3.1
+
+
+ + + +Gold +gold +or + + +
tl
+
+
gold
+
+
Gold
+
+
or
+
+ +
1280
+
+
+
+ + +
na ngôi tî ândö
+
+ + + + + + + + + + + + +früher +olden times +autrefois, temps d'antan + +
Na ngôi tî ândö, ânyama tî ngonda ayeke gbânî gbânî!
+ +
In olden times, the animals of the bush were very abundant!
+
+
+ + +
tl
+
+
autrefois, temps d'antan
+
+
früher
+
+
olden times
+
+ +
1375
+
+
+
+ + +
kôgarâ
+
+ + +
kɔ.ga.ɾa
+ +
3.1.3 / 2.1.2
+
+
+ + + +Schwiegereltern, Verwandter (durch Heirat) +in-laws, relative by marriage +beaux-parents, relation par mariage + + + + +
tl
+
+
beaux-parents, relation par mariage
+
+
in-laws, relative by marriage
+
+
Schwiegereltern, Verwandter (durch Heirat)
+
+ +
0361
+
+
+
+ + +
â-
+
+ + + + + +Mehrzahlsvorsilbe +plural marker +marque le pluriel des noms et adjectifs + +
Vorsilbe der Mehrzahl bei Substantiven und Adjektiven
+
prefix used to form the plural of nouns and adjectives
+
préfix marquant le pluriel des noms et adjectifs
+
+ +
ek
+
+
Mehrzahlsvorsilbe
+
+
+
+ + +
sopo
+
+ + +
sɔpɔ
+ +
1 1
+
+
+ + + +Faulheit +laziness +paresse + + + + +
ek
+
+
Faulheit
+
+
laziness
+
+
paresse
+
+
+
+ + +
yâpu
+
+ + + + +leicht (sein) +light (be) +léger (être) + +
Terê tî lo ayâpu. Lo ne pëpe.
+ +
He is light. He doesn't weigh much.
+
+
+ + +
tl
+
+
(être) léger
+
+
leicht (sein)
+
+
light
+
+ +
1536
+
+
+ + + +einfach, leicht (sein) +easy (be) +facile (être) + + +
ek
+
+
einfach, leicht (sein)
+
+
+ + + +schnell (sein) +fast (be) +rapide (être) + +
Terê tî zo sô ayâpu. Lo kpë lôro ngangü mîngi.
+ +
That person is fast. He runs very fast.
+
+
+ + +
tl
+
+
(être) rapide
+
+
fast
+
+
schnell (sein)
+
+ +
1419
+
+
+
+ + +
li tî ... agä kîrîkiri
+
+ + + + + + + + +verrückt werden +go crazy +devenir fou + + +
ek
+
+
verrückt werden
+
+
+
+ + +
waködörö
+
+ + + + +Einwohner (in) +inhabitant, resident +habitant, résident + + +
tl
+
+
Einwohner (in)
+
+
habitant, résident
+
+
inhabitant, resident
+
+ +
0527
+
+
+
+ + +
na hünzïngö nî
+
+ + + + +am Ende +in the end +à la fin + +
Lo tara ti ke ngbâko me na hünzïngö nî afutîi finî tî lo.
+ +
He tried to forego liquor but in the end it ruined his life.
+
Il a essayé d'éviter de boire l'alcool, mais, à la fin, ça a détruit sa vie.
+
+
+
+
+ + +
kpasâkärä
+
+ + + + +unbeschnitten +uncircumcised, not excised +non-circoncis, non-excisée + + +
ek
+
+
unbeschnitten
+
+
+
+ + +
turnëe pekô tî
+
+ + + + + + + + + + + + +umdrehen +turn over (tr) +retourner + + +
tl
+
+
tourner
+
+
turn over (tr)
+
+
umdrehen
+
+ +
1433
+
+
+
+ + +
sirîki
+
+ + + + +Kopftuch +headscarf, kerchief +foulard + + +
ek
+
+
foulard
+
+
Kopftuch
+
+
+
+ + +
gbîan
+
+ + + + +verwandeln, ändern +transform, change +transformer, changer + + +
ek
+
+
transform, change
+
+
transformer, changer
+
+
verwandeln, ändern
+
+ + +
1459
+
+
+ + + +übersetzen +translate +traduire + + +
ek
+
+
traduire
+
+
translate
+
+
übersetzen
+
+ +
i-1027
+
+
+
+ + +
dë yâ tî sêse tî lü yê
+
+ + + + + + + + + + + + + + + + + + + + +Ackerland hacken und für die Aussaat vorbereiten +clearing and breaking up soil for planting +défricher et labourer la terre avant les semailles + + +
tl
+
+
Ackerland hacken und für die Aussaat vorbereiten
+
+
clearing and breaking up soil for planting
+
+
défricher et labourer la terre avant les semailles
+
+ +
0747
+
+
+
+ + +
kîri tî te yâ tî kôbe sô ... mene
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +wiederkäuen +ruminate, chew cud +ruminer + + +
tl
+
+
ruminate, chew cud
+
+
ruminer
+
+
wiederkäuen
+
+ + +
1040
+
+
+
+ + +
mbômbô
+
+ + +
mbo.mbo
+ +
3.3
+
+
+ + + +glatzköpfig (sein), kahl +bald (be) +chauve (être) + +
Awayango-sandaga 13:40 (MNF2010) “Töngana küä tî li tî mbênî kôli atûku kûê, lo gä li-mbômbô awe; lo yeke *nzönî.
+ +
When all the man's hair falls off, he becomes bald; he is good.
+
+
+ + +
& mle
+
+ +
ek
+
+
(être) chauve
+
+
bald
+
+
glatzköpfig (sein), kahl
+
+ + +
0190
+
+
+ + + +nackt (sein) +naked (be) +nu (être) + + + +
0540
+
+
+
+ + +
âtënë ahôle na yângâ tî ...
+
+ + + + + + + + + + + + + + + + + + + + + + + + +... weiß nicht, was ... sagen soll +... doesn't know what to say +... ne sait pas quoi dire + +
+ + +
dutï na bêkü
+
+ + + + + + + + + + + + +hoffen +hope +espérer + + +
tl
+
+
espérer
+
+
hoffen
+
+
hope
+
+ + +
0254
+
+
+ + + +geduldig (sein), Geduld haben +patient (be) +patient (être) + + +
tl
+
+
(être) patient
+
+
geduldig (sein), Geduld haben
+
+
patient
+
+ +
0314
+
+
+
+ + +
kêtê kömändâ
+
+ + + + + + + + +Bezirksbeamter +county officer +sous-préfet + + + + +
ek
+
+
Bezirksbeamter
+
+
sous-préfet
+
+
+
+ + +
yeke na ndurü bê
+
+ + + + + + +ungeduldig (sein) +impatient (be) +impatient (être) + +
Lo sâra ngonzo hîo. Lo yeke na ndurü bê.
+ +
He gets angry quickly. He is impatient.
+
+
+ +
(être) impatient
+
+
impatient
+
+
ungeduldig (sein)
+
+ +
0315
+
+
+
+ + +
mû töngana môlengê tî ... wani
+
+ + + + +adoptieren +adopt +adopter + +
mle-0182
+
+
+
+ + +
kîri
+
+ + + + +zurückgehen +return, come back +retourner, revenir + +
Lo kîri na Bangui.
+ +
He returned to Bangui.
+
+
+ + +
& i-878
+
+ +
tl
+
+
retourner
+
+
return
+
+
zurückgehen
+
+ +
1405
+
+
+ + + +zurückgeben +give back +rendre + +
Lo kîri nginza nî na wa nî.
+ +
He returned the money to its owner.
+
+
+ + +
ek
+
+
give back
+
+
rendre
+
+
zurückgeben
+
+ +
0810
+
+
+
+ + +
ndadë
+
+ + + + +oft +often +souvent + + +
ek
+
+
oft
+
+
often
+
+
souvent
+
+
+ + + +jedes Mal +every time +à chaque moment + + +
ek
+
+
jedes Mal
+
+
+
+ + +
hä yângâ
+
+ + + + + + + + +gähnen +yawn +bâiller + + +
ek
+
+
bâiller
+
+
gähnen
+
+
yawn
+
+ +
0107
+
+
+ + + +versuchen zu überzeugen +try to convince +essayer de convaincre + + +
ek
+
+
versuchen zu überzeugen
+
+
+ + + +sich zuviel beschweren +complain too much +se plaindre trop + + +
ek
+
+
complain too much
+
+
se plaindre trop
+
+
sich zuviel beschweren
+
+ + +
0467
+
+
+
+ + +
mbätä
+
+ + + + +Sitz, Schemel +seat, stool +siège, tabouret + + + + +
tl
+
+
seat, stool
+
+
siège, tabouret
+
+
Sitz, Schemel
+
+ +
0694
+
+
+
+ + +
na gatï
+
+ + + + + + + + +links +left (direction) +à gauche + +
Töngana mo sï na sangbi lêgë, mou na gatï.
+ +
When you come to the crossroad, go left.
+
+
+ + +
tl
+
+
left (direction)
+
+
links
+
+ +
1667
+
+
+
+ + +
kïrïngö
+
+ + +
ki.ɾi.ngɔ
+ +
2.2.2
+
+
+ + + +Rückkehr +return +retour + + +
ek
+
+
retour
+
+
return
+
+
Rückkehr
+
+
+
+ + +
tondo
+
+ + +
tɔ.ndɔ
+ +
1.1
+
+
+ + + +beschreiben +describe +décrire + +
gfk-d, lb
+
+ +
mle-1317
+
+
+
+ + +
tene gügümä
+
+ + + + + + + + + + + + +stottern +stutter +bégayer + + +
tl
+
+
bégayer
+
+
stottern
+
+
stutter
+
+ +
0440
+
+
+
+ + +
pandalö
+
+ + + + + +
???
+
+ + + +Hose +pants, trousers +pantalon + + +
ek
+
+
Hose
+
+
pantalon
+
+
pants, trousers
+
+ + +
0543
+
+
+
+ + +
tüküngö
+
+ + +
tu.ku.ngɔ
+ +
2.2.2
+
+
+ + + +Das Ausleeren +pouring out +déversement + + +
ek
+
+
Das Ausleeren
+
+
déversement
+
+
pouring out
+
+ +
0827
+
+
+ + + +Das Wegwerfen +Vidange à la décharge +jeter +
Das Wegwerfen
+
+
jeter
+
+
+
+ + +
mamâ tî bâgara
+
+ + + + + + + + + + + + +Kuh +cow (female) +vache + + +
tl
+
+
cow (female)
+
+
Kuh
+
+
vache
+
+ +
0960
+
+
+
+ + +
ndâli tî
+
+ + + + + + + + + + + + +weil +because +à cause de, parce que + + +
ek
+
+
because
+
+
weil
+
+
+
+ + +
tï na ndö tî
+
+ + + + +angreifen +attack +attaquer + +
i-41
+
+
+
+ + +
ndäprê
+
+ + + + + + + + +Morgen +morning +matin + +
ek
+
+
matin
+
+
Morgen
+
+
morning
+
+
+
+ + +
mângo
+
+ + +
ma.ngo
+ +
3.1
+
+
+ + + +Mango +mango +mangue + + +
ek
+
+
mango
+
+
Mango
+
+
mangue
+
+
+ + + +Mango +mango tree +manguier + +
+ + +
palü
+
+ + + + +Malaria +malaria +paludisme + + +
tl
+
+
malaria
+
+
Malaria
+
+
paludisme
+
+ + +
0228
+
+
+
+ + +
bata
+
+ + + + +behalten, sparen +keep, save, conserve, preserve +garder, mettre de côté, conserver + + + + +
also i-215
+
+ +
tl
+
+
behalten, sparen
+
+
garder, mettre de côté
+
+
keep, save
+
+ +
1471
+
+
+ + + +aufbewahren +store (up) +garder, emmagasiner + + +
tl
+
+
aufbewahren
+
+
garder, emmagasiner
+
+
store (up)
+
+ +
0644
+
+
+ + + +zähmen +domesticate, tame +domestiquer, apprivoiser + + + + +
tl
+
+
domesticate, tame
+
+
domestiquer, apprivoiser
+
+
zähmen
+
+ +
0767
+
+
+ + + +kümmere dich, sich um jemand kümmern, adoptieren +look after, bring up, adopt +prendre soin (de quelqu'un), élever, adopter + + +
& i-352
+
+ +
tl, mle, gfk-d, lb
+
+
look after, bring up
+
+
prendre soin (de quelqu'un), élever
+
+
sich um jemand kümmern
+
+ +
0494
+
+
+ + + +uhr +watch, monitor +surveiller + +
i-980
+
+
+ + + +unterhalten +provide for +entretenir (nourrir) + +
i-352
+
+
+ + + +beschützen, verteidigen +protect, defend +protéger, défendre + + +
tl
+
+
beschützen, verteidigen
+
+
protect, defend
+
+
protéger, défendre
+
+ +
0493
+
+
+
+ + +
küä-nyön
+
+ + +
s.r. LB
+
+ + + +Schnurrbart +moustache +moustache + +
moustache
+
+
moustache
+
+
Schnurrbart
+
+ +
0028
+
+
+
+ + +
môlengê tî nyâön
+
+ + + + + + + + + + + + +Kätzchen +kitten +chaton + + +
tl
+
+
chaton
+
+
Kätzchen
+
+
kitten
+
+ +
0994
+
+
+
+ + +
pendere-kôlï
+
+ + + + + + + + + + + + +Junge +young man +jeune homme + + +
tl
+
+
boy
+
+
jeune homme
+
+
Junge
+
+ + +
0338
+
+
+
+ + +
mû yângâ ôko
+
+ + + + + + + + + + + +einig werden +agree +tomber d'accord + + +
ek
+
+
agree
+
+
einig werden
+
+
+
+ + +
hön na ndüzü
+
+ + + + + + + + + + + + + + + + +wegblasen, davonfliegen +blow away +s'envoler + + +
tl
+
+
blow away
+
+
s'envoler
+
+
wegblasen, davonfliegen
+
+ +
1478
+
+
+
+ + +
ôro korobô
+
+ + +
ɔ.ɾɔ ko.ɾo.bo
+ +
3.1 1.1.3
+
+
+ + + +kastrieren +castrate +châtrer + +
gfk-d
+
+ +
0774
+
+
+
+ + +
terê tî ... anzere
+
+ + +
terê ti ... anzere
+ +
+ + + + + + + + + + + + +stolz (sein) +proud (be) +fier (être) + +
Ambëtïsango ayâa ïrï ti lo mîngi, nî laâ sï terê tî lo anzere.
+ + +
+ + +
tl
+
+
(être) fier
+
+
proud
+
+
stolz (sein)
+
+ +
0281
+
+
+ +fröhlich (sein) +happy, glad (be) +heureux, content (être) + +
Ködörö adutï na sîrîrî. Terê tî ï anzere.
+ +
The country is at peace. We are glad.
+
+
+ + +
ek
+
+
(être) heureux, content
+
+
fröhlich (sein)
+
+
happy, glad
+
+ + +
0267
+
+
+
+ + +
gue
+
+ + + + +gehen +go +aller + + +
tl
+
+
aller
+
+
gehen
+
+
go
+
+ +
1400
+
+
+ + + +reisen +travel +voyager + +
Mbï gue awe.
+ +
Auf Wiedersehen. (Ich gehe jetzt.)
+
Goodbye. (I'm leaving.)
+
Au revoir. (Je pars.)
+
+
+ + +
ek
+
+
reisen
+
+
travel
+
+
voyager
+
+ +
0843
+
+
+
+ + +
+
+ + +
tɔɔ
+ +
2 / 31 [lb]
+
+
+ + + +kochen, zubereiten, machen +cook, prepare, make +cuire, préparer + + +
ek
+
+
cook, prepare, make
+
+
cuire, préparer
+
+
kochen, zubereiten, machen
+
+ +
0603
+
+
+
+ + +
pândi
+
+ + + + +Nagel +nail +clou, pointe + + +
tl
+
+
clou, pointe
+
+
Nagel
+
+
nail
+
+ +
0724
+
+
+
+ + +
gbagbagba
+
+ + + + + + + +hastig, nachlässig +hastily, carelessly +rapidement, sans soin + + +
ek
+
+
hastig, nachlässig
+
+
+
+ + +
tere
+
+ + +
Tere
+ +
+ + + +Geschichte +traditional story +conte + + +
ek
+
+
conte
+
+
Geschichte
+
+
story
+
+
+ + + +fiktive Person in Erzählungen +fictional character in traditional stories +personnage fictif dans les contes + + +
ek
+
+
fiktive Person in Erzählungen
+
+
+
+ + +
gbôto na sêse
+
+ + + + + + + + + + + + +ziehen, schleppen +drag +traîner + + +
tl
+
+
drag
+
+
trainer
+
+
ziehen, schleppen
+
+ +
1435
+
+
+ + + +nach unten ziehen +pull down +tirer vers le bas +
nach unten ziehen
+
+
+
+ + +
kiri
+
+ + + + +Taxen, Steuern +taxes +taxe, impôt + + +
ek
+
+
taxe, impôt
+
+
Taxen, Steuern
+
+
taxes
+
+ +
0838
+
+
+ + + +Schulden +debt +dette + + +
ek
+
+
debt
+
+
dette
+
+
Schulden
+
+
+
+ + +
kodëlêgë
+
+ + +
kɔ.dɛ.le.ge
+ +
1.2.3.2
+
+
+ + + +Prozess,Technik +process, technique +processus, technique + +
mle-3711
+
+
+
+ + +
sûru zo
+
+ + + + + + + + +jemand operieren +operate on someone +opérer, faire la chirurgie + + +
ek
+
+
jemand operieren
+
+
+
+ + +
lingû
+
+ + + + +Quelle +source +source + + +
ek
+
+
Quelle
+
+
source
+
+
source
+
+
+
+ + +
kpo na kpo
+
+ + +
sl agrees
+
+ + + + + + + + + + + + + + +für immer, ewiglich +forever, eternally +à jamais, éternellement + +
See "kpu na kpu"
+
+ + +
ek
+
+
für immer, ewiglich
+
+
+
+ + +
kötï
+
+ + +
kɔ.ti
+ +
2.2
+
+
+ + + +Recht +right +droit + + +
ek
+
+
droit
+
+
Recht
+
+
right
+
+
+ + + +rechte Hand +right hand +bras droit + + +
ek
+
+
rechte Hand
+
+
+
+ + +
pärä
+
+ + + + +Ei +egg +œuf + + + + +
tl
+
+
egg
+
+
Ei
+
+
œuf
+
+ +
1066
+
+
+
+ + +
nyama
+
+ + + + +Tier +animal +animal + + +
tl
+
+
animal
+
+
animal
+
+
Tier
+
+ +
0957
+
+
+ + + +Fleisch +meat +viande + + +
ek
+
+
Fleisch
+
+
meat
+
+
viande
+
+ +
0570
+
+
+
+ + +
wâlï-müä
+
+ + + + +Witwe +widow +veuve + + +
tl
+
+
veuve
+
+
widow
+
+
Witwe
+
+ + +
0371
+
+
+
+ + +
ngbii
+
+ + + + +(schon) lange, seit langem +for a long time +longtemps + + + + +
Ideophone: can be lengthened or reduplicated for emphasis
+
+ +
ek
+
+
(schon) lange, seit langem
+
+
longtemps
+
+
+
+ + +
bâda tî âgbenyôgbïä
+
+ + + + + + + + +Ministerrat +council of ministers +conseil des ministres + + + + +
ek
+
+
Ministerrat
+
+
+
+ + +
pendâ
+
+ + + + +Spur, Abdruck +tracks, prints +trace, suite, empreinte + + + + +
ek
+
+
Spur, Abdruck
+
+
trace, suite, empreinte
+
+
tracks, prints
+
+ +
0778
+
+
+
+ + +
ngonzo
+
+ + +
ŋgɔ.nzɔ
+ +
1.1
+
+
+ + + +Wut, Zorn +anger +colère + + +
ek
+
+
anger
+
+
colère
+
+
Wut, Zorn
+
+ +
mle-0267
+
+
+
+ + +
ngô
+
+ + +
ngo
+ +
3 / 31
+
+
+ + + +aufwickeln (Seil) +coil (rope) +enrouler + + + +
1442
+
+
+ + + +verdrehen +twist +tordre + + +
1440
+
+
+ + + +falten +fold +plier + + +
1441
+
+
+
+ + +
kûngbi
+
+ + + + +zerbrechen +break, snap +casser + + +
ek
+
+
break, snap
+
+
casser
+
+
zerbrechen
+
+ +
1460
+
+
+
+ + +
+
+ + +
ko
+ +
3
+
+
+ + + +hinaufsteigen, klettern, einschiffen +climb, embark +monter, embarquer + + +
ek
+
+
climb, embark
+
+
hinaufsteigen, klettern, einschiffen
+
+
monter, embarquer
+
+ +
1409
+
+
+ + + +aussteigen +disembark +débarquer + +
+ + +
gündâ tî pêre
+
+ + + + + + + + + + + + +(Gras-)Halm +blade (of grass) +brin (d'herbe) + + +
tl
+
+
(Gras-)Halm
+
+
blade (of grass)
+
+
brin (d'herbe)
+
+ +
1187
+
+
+
+ + +
zîa ...
+
+ + + + + + + + +sich verabschieden +say goodbye, take leave of +prendre congé + + +
tl
+
+
prendre congé
+
+
say goodbye, take leave of
+
+
sich verabschieden
+
+ +
0445
+
+
+
+ + +
ngonzo agbû ...
+
+ + + + + + + + + + + + + + +wütend werden +get angry +se mettre en colère + +
+ + +
këkë tî kroa
+
+ + + + + + + + +Kreuz +cross +croix + + +
ek
+
+
croix
+
+
cross
+
+
Kreuz
+
+
+
+ + +
ndokôro
+
+ + +
ndɔ.kɔ.ɾɔ
+ +
1.3.1
+
+
+ + + +Schwamm +sponge +éponge + + +
ek
+
+
éponge
+
+
Schwamm
+
+
sponge
+
+
+
+ + +
alîngbi
+
+ + + + +genug +enough +assez, suffisamment + +
Môlengê ni ate kôbe alîngbi.
+ +
He has cut enough wood.
+
+
+ + +
tl
+
+
assez, suffisamment
+
+
enough
+
+
genug
+
+ +
1635
+
+
+
+ + +
mâsarâgba
+
+ + + + +Rhinozeros +rhinoceros +rhinocéros + + +
Diceros bicornis
+
+ +
tl
+
+
rhinoceros
+
+
rhinocéros
+
+
Rhinozeros
+
+ +
0998
+
+
+
+ + +
tö mbëlä
+
+ + + + +bekannt machen, Verordnung verkünden, etwas ansagen +announce, proclaim a decree, make an announcement +annoncer, proclamer un décret, faire une annonce + + +
ek
+
+ + +
0446
+
+
+
+ + +
yô na li
+
+ + + + + + + + + + + + +auf dem Kopf tragen +carry on head +porter sur la tête + + +
tl
+
+
auf dem Kopf tragen
+
+
carry on head
+
+
porter sur la tête
+
+ + +
0861
+
+
+
+ + +
makabo
+
+ + +
ma.ka.bo
+ +
1.1.1 / 1.1.2 (lb)
+
+
+ + + +eßbare Wurzel +edible root +macabo + + +
ek
+
+
eßbare Wurzel
+
+
macabo
+
+
+
+ + +
kêtê môlengê
+
+ + + + + + + + +Kind +child +enfant + + +
ek
+
+
child
+
+
enfant
+
+
Kind
+
+
+ + + +Baby, Säugling +baby +bébé + + +
tl
+
+
baby
+
+
Baby, Säugling
+
+
bébé
+
+ +
0332
+
+
+
+ + +
sökö
+
+ + +
sɔ.kɔ
+ +
2.2
+
+
+ + + +Rost +rust +rouille + +
Sökö a te wên nî. [lb]
+ +
Rust corroded the metal.
+
+
+ + +
ek
+
+
Rost
+
+
rouille
+
+
rust
+
+ +
1283
+
+
+ + + +Mehltau +blight +rouille, nielle + + +
tl
+
+
blight
+
+
Mehltau
+
+
rouille, nielle
+
+ +
1253
+
+
+
+ + +
zo tî kânga
+
+ + + + + + + + + + + + +Gefangener, Häftling +prisoner, captive +prisonnier, captif + + +
tl
+
+
Gefangener, Häftling
+
+
prisoner, captive
+
+
prisonnier, captif
+
+ +
0876
+
+
+
+ + +
tene ânzërëngö tënë tî hânda na zo
+
+ + + + +schmeicheln +flatter +flatter + +
sc
+
+ +
i-416
+
+
+
+ + +
do
+
+ + +
???
+
+ + + +ziehen +pull +tirer + + +
ek
+
+
pull
+
+
tirer
+
+
ziehen
+
+ +
1434
+
+
+ + + +verschieben +move +déplacer + + +
ek
+
+
déplacer
+
+
move
+
+
verschieben
+
+
+
+ + +
biröo
+
+ + +
bi.ɾo
+ +
1.21
+
+
+ + + +Büro +office +bureau + + +
ek
+
+
bureau
+
+
Büro
+
+
office
+
+
+
+ + +
nzîna
+
+ + + + + + + +klein +little (be) +petit (être) + +
cf. nzêne
+ + +
+
klein
+
+
little
+
+
petit
+
+ +
1509
+
+
+ + + +reduzieren,miniaturisieren +reduce, miniaturize +rendre tout petit, miniaturiser +
reduzieren,miniaturisieren
+
+
+
+ + +
kilôti
+
+ + +
ki.lɔ.ti
+ +
1.3.1
+
+
+ + + +Shorts +shorts +culotte, shorts + + +
ek
+
+
shorts
+
+
Shorts
+
+
+ + + +Lendentuch +loincloth +culotte + + +
tl
+
+
culotte
+
+
Lendentuch
+
+
loincloth
+
+ +
0544
+
+
+
+ + +
lêne
+
+ + + + +Wolle +wool +laine + + +
ek
+
+
laine
+
+
Wolle
+
+
wool
+
+
+
+ + +
farânga
+
+ + + + +Franken, Geld +franc, money +franc, argent + + +
ek
+
+
Franken, Geld
+
+
+
+ + +
dawä nî
+
+ + + + + + + + +Vorderseite +front (of something) +le devant (de quelque chose) + + +
tl
+
+
front (of something)
+
+
le devant (de quelque chose)
+
+
Vorderseite
+
+ +
1389
+
+
+
+ + +
anînga mîngi
+
+ + + + + + + + +lange dauern, es ist lange her +a long time +durer longtemps + +
Anînga mîngi, zo asâra bongö na pörö tî këkë pëpe.
+ +
It has been a long time since a person made cloth from tree bark.
+
+
+ + +
ek
+
+
lange dauern, es ist lange her
+
+
+
+ + +
mbamba
+
+ + + + +Farbe +paint +peinture + + +
ek
+
+
Farbe
+
+
paint
+
+
peinture
+
+ +
0691
+
+
+ + + +Tünche +lime, whitewash +chaux + + +
tl
+
+
chaux
+
+
lime, whitewash
+
+
Tünche
+
+ +
0690
+
+
+
+ + +
karapîri
+
+ + + + +wild (Kind), ungezügelt +wild (child) (be) +turbulent (enfant), crapule (être) + +
Môlengê sô amä yângâ pëpe. Lo yeke karapîri mîngi.
+ + +
+ + +
ek
+
+
wild (Kind), ungezügelt
+
+
+
+ + +
polêlê
+
+ + + + +
po.le.le
+ +
1.3.3 / 1.2.3
+
+
+ + + +offen, ehrlich +open, honestly +ouvertement, franchement + +
Lo kiri tënë polêlê.
+ +
He answered honestly.
+
Il a répondu honnêtement.
+
+
+ + +
ek
+
+
offen, ehrlich
+
+
+
+ + +
fängö-yäkä
+
+ + +
fa.ngɔ.ya.ka
+ +
2.2.2.2
+
+
+ + + +Landwirtschaft +farming +agriculture + + + + +
ek
+
+
agriculture
+
+
farming
+
+
Landwirtschaft
+
+
+
+ + +
kanäna
+
+ + + + +Ente +duck +canard + + +
ek
+
+
canard
+
+
duck
+
+
Ente
+
+ +
0980
+
+
+
+ + +
bûngu
+
+ + + + +Taube +dove +colombe + + +
tl
+
+
colombe
+
+
dove
+
+
Taube
+
+ +
1043
+
+
+
+ + +
pöpö tî gerê na mbätä gerê
+
+ + + + + + + + + + + + + + + + + + + + +Knöchel +ankle +cheville + + +
tl
+
+
ankle
+
+
cheville
+
+
Knöchel
+
+ +
0069
+
+
+
+ + +
kayimän
+
+ + + + +Krokodil +crocodile +crocodile + + +
Crocodylus spp.
+
+ +
tl
+
+
crocodile
+
+
crocodile
+
+
Krokodil
+
+ +
1105
+
+
+
+ + +
wanzï
+
+ + + + +Dieb +thief +voleur + + +
tl
+
+
Dieb
+
+
thief
+
+
voleur
+
+ +
0388
+
+
+
+ + +
gbû yâ tî
+
+ + + + + + + + + + + + +kneten +knead +pétrir + + +
tl
+
+
knead
+
+
kneten
+
+
pétrir
+
+ +
0601
+
+
+
+ + +
zî ... na terê tî
+
+ + + + + + + + + + + + +auspacken +unwrap +défaire + + +
tl
+
+
auspacken
+
+
défaire
+
+
unwrap
+
+ +
0649
+
+
+
+ + +
finî
+
+ + + + +neu +new (be) +nouveau, neuf (être) + +
Adü finî môlengê.
+ + + +
A new baby was born.
+
+
+ + +
tl
+
+
(être) nouveau, neuf
+
+
neu
+
+
new
+
+ +
1588
+
+
+ + + +roh (sein) +raw, uncooked (be) +cru (être) + +
i-262
+
+
+ +frisch (sein) +fresh (be) +frais (être) + +
Te finî kârâkö!
+ +
Eat fresh peanuts!
+
+
+ + +
ek
+
+
frais
+
+
fresh
+
+
frisch
+
+
+
+ + +
âta tî wâlï
+
+ + + + + + + + +Enkelin +granddaughter +petite-fille + + +
tl
+
+
Enkelin
+
+
granddaughter
+
+
petite-fille
+
+ +
0357
+
+
+ + + +Großmutter +grandmother +grand-mère +
grand-mère
+
+
grandmother
+
+
Großmutter
+
+ +
i-482
+
+
+
+ + +
fufûu
+
+ + + + +Lunge +lung +poumon + + +
tl
+
+
lung
+
+
Lunge
+
+
poumon
+
+ +
0085
+
+
+
+ + +
yê tî fängö na yâ tî këkë
+
+ + + + + + + + + + + + + + + + +Säge +saw +scie + + +
tl
+
+
Säge
+
+
saw
+
+
scie
+
+ +
0718
+
+
+
+ + +
zö bê
+
+ + + + + + + + +ärgern, reizen +irritate, bother +irriter + + +
ek
+
+
ärgern, reizen
+
+
irriter
+
+
+
+ + +
mbênî yê
+
+ + + + + + + + +etwas +something +quelque chose + + +
ek
+
+
etwas
+
+
something
+
+
+
+ + +
lesöon
+
+ + +
lɛ.sɔ̰ɔ̰
+ +
1.21
+
+
+ + + +Unterricht, Lektion +lesson +leçon + + +
ek
+
+
leçon
+
+
lesson
+
+
Unterricht, Lektion
+
+
+
+ + +
bôï
+
+ + + + +
bɔi
+ +
31
+
+
+ + + +Diener, Haushaltshilfe +servant, house helper +serviteur, domestique + + +
ek
+
+
Diener, Haushaltshilfe
+
+
+
+ + +
ba terê
+
+ + +
ba
+ +
+ + + + + + + + + + + +sich beugen +bend down, stoop +se courber, se pencher + + +
tl
+
+
bend down, stoop
+
+
se courber
+
+
sich beugen
+
+ + +
0172
+
+
+ + + +in die Hocke gehen, hocken +squat +s'accroupir + + +
tl
+
+
in die Hocke gehen, hocken
+
+
s'accroupir
+
+
squat
+
+ +
0175
+
+
+ + + +sich verbeugen +bow (as in greeting) +s'incliner (pour saluer) + + +
tl
+
+
bow (as in greeting)
+
+
sich verbeugen
+
+
s'incliner (pour saluer)
+
+ + +
0173
+
+
+
+ + +
ngôi tî ngû-Nzapä
+
+ + + + + + + + +Regenzeit +rainy season +saison de pluies + + +
tl
+
+
Regenzeit
+
+
saison de pluies
+
+ +
1343
+
+
+
+ + +
gbânzi lêgë
+
+ + + + +verbieten +forbid +interdire + +
mle-1950
+
+
+
+ + +
na sêse
+
+ + + + + + + + + + + +nach unten, auf dem Boden +downward, on the ground +vers le bas, par terre + +
A tï na sêse.
+ +
It fell on the ground.
+
C'est tombé par terre.
+
+
+ + +
ek
+
+
nach unten, auf dem Boden
+
+
+
+ + +
bê tî ... adö
+
+ + + + + + +Angst haben +afraid (be) +avoir peur + + + + + + +
ek
+
+
Angst haben
+
+
+
+ + +
pepe
+
+ + +
pɛ.pɛ
+ +
1.1
+
+
+ + + +beeinflussen +influence +influencer, influer + +
gfk-d, lb
+
+ +
mle-2520
+
+
+
+ + +
sâra mabôko
+
+ + + + + + + + + + + +winken +signal, wave +faire signe de la main + +
winken
+
signal, wave (hand as a greeting)
+
faire signe
+
+ + +
tl
+
+
faire signe de la main
+
+
signal, wave
+
+
winken
+
+ +
0165
+
+
+
+ + +
na terê tî
+
+ + + + + + + + +neben +next to, beside +à côté de + +
Lo yeke lânî na terê tî tënë nî.
+ +
Er ist Zeuge der Angelegenheit
+
He witnessed the event
+
Il est témoin de l'affaire
+
+
+ + +
tl
+
+
à côté de
+
+
neben
+
+
next to, beside
+
+ +
1672
+
+
+
+ + +
bazângele tî Nzapä
+
+ + + + + + + + +Apostel +apostle +apôtre + + +
ek
+
+
Apostel
+
+
apostle
+
+
apôtre
+
+
+
+ + +
manda mbëtï
+
+ + + + + + + + + +studieren, Schule besuchen +study +étudier (à l'école) + +
Koyt-Deballé, G. F.: Illustrated Lexicon Sängö-English
+
+
+
+ + +
gôlô
+
+ + +
???
+
+ + + +klopfen +knock +frapper (à la porte) + + +
ek
+
+
klopfen
+
+
knock
+
+
+
+ + +
damê na ndo tî terê
+
+ + +etwas stopfen +stuff, tamp down +damer + + +
+ + +
ngarä
+
+ + + + +Bambus +bamboo +bambou de Chine + + +
ek
+
+
bamboo
+
+
bambou de Chine
+
+
Bambus
+
+ +
1174
+
+
+
+ + +
yê tî mê
+
+ + + + + + + + +Ohrring +earring +boucle d'oreille + + + + +
tl
+
+
boucle d'oreille
+
+
earring
+
+
Ohrring
+
+ +
0555
+
+
+
+ + +
kângâ
+
+ + + + +hartebeest, korrigum +bubale, damalisque + +
+ + +
même
+
+ + + + +sogar +even +même + +
Lo gue même na Bangui.
+ +
He even went to Bangui.
+
Il est allé même à Bangui.
+
+
+ + +
ek
+
+
even
+
+
même
+
+
sogar
+
+
+
+ + +
tï ngû
+
+ + + + + + + + + + + + +schwimmen +swim +nager + + +
tl
+
+
nager
+
+
schwimmen
+
+
swim
+
+ +
0160
+
+
+
+ + +
farânzi
+
+ + + + +französisch +French +français + + +
ek
+
+
français
+
+
französisch
+
+
French
+
+
+
+ + +
wayângâ-Nzapä
+
+ + + + +Prophet +prophet +prophète + + +
ek
+
+
prophet
+
+
Prophet
+
+
prophète
+
+
+
+ + +
yêda
+
+ + +übereinstimmen, zusagen, akzeptieren +willing (be), accept, agree +avoir la volonté de, d'accord (être) + + +
ek
+
+
übereinstimmen, zusagen, akzeptieren
+
+
+ +antworten +answer +répondre + + +
ek
+
+
answer
+
+
antworten
+
+
répondre
+
+
+ + + +(einen Fehler) eingestehen +admit (to a wrong) +admettre (un tort) + + +
tl
+
+
(einen Fehler) eingestehen
+
+
admettre (un tort)
+
+
admit (to a wrong)
+
+ +
0471
+
+
+
+ + +
kongö
+
+ + +
ko.ngo
+ +
1.2
+
+
+ + + +Blume +flower +fleur + + +
tl
+
+
Blume
+
+
fleur
+
+
flower
+
+ +
1188
+
+
+ + + +Busch +bush +buisson + + +
ek
+
+
buisson
+
+
Busch
+
+
bush
+
+ +
1172
+
+
+
+ + +
fadësô
+
+ + + + + + + + + +
fa.de.so
+ +
1.2.3
+
+
+ + + +jetzt +now +maintenant + +
Kôzonî ï gue na garâ. Fadësô ï yeke gue na yäkä.
+ +
First we went to the market. Now we are going to the garden.
+
+
+ + +
tl
+
+
jetzt
+
+
maintenant
+
+
now
+
+ +
1353
+
+
+ + + +heutzutage +nowadays +ces jours-ci + +
Fadësô âwâli apîka gozo töngana tî kôzonî pëpe.
+ +
Nowadays women don't pound manioc like before.
+
+
+ + +
ek
+
+
heutzutage
+
+
nowadays
+
+
+
+ + +
na pekô tî
+
+ + + + + + + + +hinter +behind +derrière + +
Mbo sô ayê tî tambêla na pekô tî wa tî lo.
+ +
That dog likes to walk behind his master.
+
+
+ + +
tl
+
+
behind
+
+
derrière
+
+
hinter
+
+ +
1671
+
+
+ + + +nach +after +après + +
Lo löndö kôzonî. Nî laâ fadë mbï sï na pekô tî lo.
+ +
He left first. That's why I will arrive after him.
+
+
+ + +
ek
+
+
after
+
+
après
+
+
nach
+
+
+
+ + +
möngûste
+
+ + +
mɔ̰.gust / ma̰. gust
+ +
2.3
+
+
+ + + +Mungo +mongoose +mangouste + + +
tl
+
+
mangouste
+
+
mongoose
+
+
Mungo
+
+ +
1015
+
+
+
+ + +
na gbe-mïngo
+
+ + + + + + + +heimlich +secretly +en cachette + +
Âzaragîna aleke pialö tî âla na gbe-mïngo.
+ + +
+ + +
ek
+
+
heimlich
+
+
secretly
+
+
+
+ + +
wängö
+
+ + + + +Ratschlag +advice +conseil + + +
ek
+
+
advice
+
+
conseil
+
+
Ratschlag
+
+
+
+ + +
ngo atûku
+
+ + + + + + + + +Fehlgeburt +miscarriage +fausse couche + + +
ek
+
+
Fehlgeburt
+
+
miscarriage
+
+
+
+ + +
gbôkôrô
+
+ + + + + +
???
+ +
3.3.3
+
+
+ + + +Kichererbse +Bambara groundnut (Voandzeia subterranea) +pois de terre + +
+ + +
pardonêe
+
+ + +
paɾ.dɔ.nee
+ +
1.1.31
+
+
+ + + +verzeihen, vergeben +forgive +pardonner + + +
ek
+
+
forgive
+
+
pardonner
+
+
verzeihen, vergeben
+
+ +
i-745
+
+
+
+ + +
kpakatawâ
+
+ + + + +Topfkratzer +pot scrubber +marmiton + + +
ek
+
+
marmiton
+
+
Topfkratzer
+
+
+
+ + +
hôlôlô
+
+ + +
???
+
+ + + +leer +empty (be) +vide (être) + + +
ek
+
+
empty
+
+
leer
+
+
vide
+
+ + +
0637
+
+
+
+ + +
pörö tî këkë
+
+ + + + + + + + + + + + +Rinde +bark (of tree) +écorce (d'arbre) + + +
tl
+
+
bark (of tree)
+
+
écorce (d'arbre)
+
+
Rinde
+
+ +
1180
+
+
+
+ + +
tënëngö lisorö
+
+ + + + +Gespräch +conversation +causerie + + +
i-146
+
+
+
+ + +
baraô
+
+ + + + + +
ba.ɾa.ɔ
+ +
1.1.3
+
+
+ + + +Begrüßung +greetings +salut + + +
ek
+
+
Begrüßung
+
+
greetings
+
+
salut
+
+
+
+ + +
na lêgënî
+
+ + + + + + + + + + + +richtig +in the right way +correctement, comme il faut + +
Alîngbi ï sâla kusâra tî ï na lêgë nî.
+ +
We must do our work in the right way.
+
+
+ + +
ek
+
+
richtig
+
+
+ + + +Recht (haben) +right, (be) correct +correct, (avoir) raison + +
Bongö sô ayeke na lêgë nî bîanî.
+ +
This garment was sewn
+
+
+ + +
tl
+
+
correct, (avoir) raison
+
+
Recht (haben)
+
+
right, correct
+
+ +
1578
+
+
+
+ + +
kpï
+
+ + + + + + + +Einfügen +paste +pâte +
Einfügen
+
+
paste
+
+
pâte
+
+
+
+ + +
nzara asâra ...
+
+ + + + + + + + + +hungrig (sein), Hunger haben +hungry, hunger (be) +(avoir) faim + +
Nzara asâra sî lo nzï kôbe tî mo.
+ +
He was hungry so he stoled your food.
+
+
+ + +
tl
+
+
(avoir) faim
+
+
hungrig (sein), Hunger (haben)
+
+
hungry
+
+ +
0179
+
+
+
+ + +
balëûse na miombe
+
+ + + + +achtundzwanzig (28) +twenty-eight (28) +vingt-huit (28) + +
achtundzwanzig (28)
+
+
twenty-eight (28)
+
+
vingt-huit (28)
+
+ +
chan_06
+
+
+
+ + +
fûru
+
+ + + + + + + + + + + + + + + + +Schaum +foam +écume + + +
tl
+
+
écume
+
+
foam
+
+
Schaum
+
+ + +
1303
+
+
+
+ + +
wuga
+
+ + + + +Rotflankenducker +red duiker +céphalophe à flanc roux + + +
ek
+
+
Rotflankenducker
+
+
+
+ + +
pekô tî li
+
+ + + + + + + + + + + + +Nacken +nape +nuque + + +
tl
+
+
Nacken
+
+
nape
+
+
nuque
+
+ + +
0024
+
+
+
+ + +
+
+ + +
so
+ +
2
+
+
+ + + +retten +save +sauver (d'un danger) + + +
Samarin: low tone; Bouquiaux and Koyt-Deballe: high tone
+
+ +
ek
+
+
retten
+
+
sauver
+
+
save
+
+ +
i-925
+
+
+
+ + +
zonga
+
+ + + + +Beleidigung +insult +insulter + + + + +
tl
+
+
Beleidigung
+
+
insult
+
+
insulter
+
+ +
0461
+
+
+ + + +Fluch +curse +malédiction + + +
tl
+
+
curse
+
+
Fluch
+
+
malédiction
+
+ +
0921
+
+
+ + + +(ver-) fluchen +curse +maudire + + +
tl
+
+
(ver-) fluchen
+
+
curse
+
+
maudire
+
+ +
0920
+
+
+ + + +kränken, beleidigen +insult +insulter + + +
tl
+
+
insult
+
+
insulter
+
+
kränken, beleidigen
+
+ +
0462
+
+
+
+ + +
güëngö
+
+ + +
gwe.ngɔ
+ +
2.2.2
+
+
+ + + +Abreise, Abfahrt +departure +départ + + +
ek
+
+
Abreise, Abfahrt
+
+
départ
+
+
departure
+
+
+
+ + +
pörö tî lê tî këkë
+
+ + + + + + + + + + + + + + + + +(Obst-) Schale +skin (of fruit) +peau, pelure (de fruit) + + +
tl
+
+
(Obst-) Schale
+
+
peau, pelure (de fruit)
+
+
skin (of fruit)
+
+ +
1203
+
+
+
+ + +
potopôto
+
+ + +
pɔ.tɔ.pɔ.tɔ
+ +
1.1.3.1
+
+
+ + + +Matsch, Schlamm +mud +boue + + +
ek
+
+
boue
+
+
Matsch, Schlamm
+
+
mud
+
+ +
1278
+
+
+
+ + +
kötä kua sô ... sâra
+
+ + + + +Leistung +achievement +exploit, réussite + +
mle-0153
+
+
+
+ + +
kânga ngû
+
+ + + + + + + + +einen Fluss stauen +dam a river +construire un barrage + + + + +
ek
+
+
einen Fluss stauen
+
+
+
+ + +
gbalâka
+
+ + + + +Altar +altar +autel + + +
ek
+
+
altar
+
+
Altar
+
+
autel
+
+
+
+ + +
kpaka
+
+ + + + +mit etwas kratzen, schaben +scratch with an object, scrape +gratter avec an objet + + + + +
& i-577
+
+ +
ek
+
+
gratter avec an objet
+
+
mit etwas kratzen, schaben
+
+
scratch with an object, scrape
+
+ +
1450
+
+
+ + + +feilen +file down, sand down +limer (un couteau) + + +
i-577
+
+
+ + + +schreiben +write +écrire + + +
ek
+
+
écrire
+
+
schreiben
+
+
write
+
+
+ + + +reiben +rub +frotter + + +
tl
+
+
frotter
+
+
reiben
+
+
rub
+
+ +
1449
+
+
+ + + +polieren +polish +polir, cirer + + +
tl
+
+
polieren
+
+
polir, cirer
+
+
polish
+
+ +
0736
+
+
+
+ + +
kötä tênë (wên) tî kua tî ândao
+
+ + + + + + + + + + + + + + + + + + + + +Amboß +anvil +enclume + + +
tl
+
+
Amboß
+
+
anvil
+
+
enclume
+
+ + +
0707
+
+
+
+ + +
köto
+
+ + +
???
+ +
2.1
+
+
+ + + +Etui, Hülle +sheath, scabbard, case, holder +fourreau, étui + + +
ek
+
+
Etui, Hülle
+
+ +
i-383
+
+
+
+ + +
ngo sô atoto
+
+ + + + + + + + + + + + +sprechende Trommel +talking drum +tambour qui parle + + +
tl
+
+
sprechende Trommel
+
+
tambour qui parle
+
+ +
0887
+
+
+
+ + +
mosoro na pekô tî babâ
+
+ + + + + + + + + + + + + + + + +Erbschaft +inheritance +héritage + + +
tl
+
+
Erbschaft
+
+
héritage
+
+
inheritance
+
+ +
0840
+
+
+
+ + +
+
+ + + + +nur, allein +only, alone +seulement, seul + +
Zo wa adûti na li tî ködörö? Ayeke gï président nî, lo ôko!
+ +
Who is the head of the country? It is only the president!
+
+
+ + +
tl
+
+
nur, allein
+
+
only, alone
+
+
seulement, seul
+
+ +
1698
+
+
+ + + +genau +exactly, just +exactement + +
A yeke ndê pëpe. A yeke gï töngasô.
+ +
It isn't different. It is exactly like this.
+
+
+
exactement
+
+
genau
+
+
+
+ + +
yëngö daä na
+
+ + + + + + + + + + + + +Vereinbarung +agreement +accord + + +
tl
+
+
accord
+
+
agreement
+
+
Vereinbarung
+
+ +
0473
+
+
+
+ + +
ndo tî kûâ
+
+ + + + + + + + + + + +Trauerhaus +house of mourning +place mortuaire + + + + +
ek
+
+
Trauerhaus
+
+
+
+ + +
kötä li tî mabôko
+
+ + + + + + + + + + + + + + + + +Daumen +thumb +pouce + + +
tl
+
+
Daumen
+
+
pouce
+
+
thumb
+
+ +
0060
+
+
+
+ + +
pörö
+
+ + +
pɔ.ɾɔ
+ +
2.2
+
+
+ + + +Schuhe, Sandalen +shoe, sandal +chaussure, sandale + + +
tl
+
+
chaussure, sandale
+
+
Schuhe, Sandalen
+
+
shoe, sandal
+
+ +
0548
+
+
+
+ + +
dükë
+
+ + + + +Feuerstelle +cooking hearth, fireplace (often made of 3 stones) +foyer (pierres du foyer formant un trépied) + + +
tl
+
+
cooking hearth, fireplace (often made of 3 stones)
+
+
Feuerstelle
+
+
foyer (pierres du foyer formant un trépied)
+
+ +
1309
+
+
+
+ + +
ngölï
+
+ + +
???
+
+ + + +Flöte +flute +flûte + + +
tl
+
+
Flöte
+
+
flute
+
+
flûte
+
+ +
0889
+
+
+
+ + +
kâi kobêla
+
+ + + + + + + + + + + + +heilen +heal (tr), cure +guérir + + +
tl
+
+
guérir
+
+
heal (tr), cure
+
+
heilen
+
+ +
0208
+
+
+
+ + +
pâpâlâpö
+
+ + +
???
+
+ + + +Rost +rust +rouille + + +
tl
+
+
Rost
+
+
rouille
+
+
rust
+
+ +
1283
+
+
+
+ + +
neka
+
+ + + + + + + +mahlen +grind +moudre + + +
ek
+
+
grind
+
+
mahlen
+
+
moudre
+
+ +
0600
+
+
+ + + +zerquetschen +crush +écraser + + +
tl
+
+
crush
+
+
écraser
+
+
zerquetschen
+
+ +
1457
+
+
+
+ + +
leke
+
+ + + + +bauen +build +construire, bâtir + + +
tl
+
+
bauen
+
+
build
+
+
construire, bâtir
+
+ +
0685
+
+
+ + + +reparieren +fix +réparer + + +
tl
+
+
fix
+
+
réparer
+
+
reparieren
+
+ +
0704
+
+
+ + + +vorbereiten +prepare +préparer + + +
ek
+
+
prepare
+
+
préparer
+
+
vorbereiten
+
+
+ + + +arrangieren, organisieren +arrange +arranger, mettre en ordre + + +
tl
+
+
arrange
+
+
arranger, mettre en ordre
+
+
arrangieren, organisieren
+
+ + +
1632
+
+
+ + + +erstellen, machen +create, make +créer + + +
tl
+
+
create, make
+
+
créer
+
+
erstellen, machen
+
+ +
1458
+
+
+
+ + +
wanganga tî ködrö
+
+ + + + + + + + + + + +Medizinmann, Schamane +medicine man, traditional healer +guérisseur traditionnel, chaman + + +
tl
+
+
guérisseur traditionnel, chaman
+
+
medicine man, traditional healer
+
+
Medizinmann, Schamane
+
+ +
0409
+
+
+
+ + +
ngbâko
+
+ + +
ngba.ko
+ +
3.1
+
+
+ + + +Hochgradiger destillierter Alkohol +strong distilled alcohol +alcool fort distillé + + +
ek
+
+
Hochgradiger destillierter Alkohol
+
+
+
+ + +
pûsu ndurü na terê tî
+
+ + + + + + + + + + + + + + + + + + + + +sich nähern +approach +s'approcher + + +
tl
+
+
approach
+
+
s'approcher
+
+
sich nähern
+
+ +
1401
+
+
+
+ + +
yü pîri
+
+ + + + + + + + + +in Trauer (sein) +in mourning (be) +en deuil (être) + + +
ek
+
+
in Trauer (sein)
+
+
+
+ + +
sâki ôko
+
+ + + + + + + + + + + + +tausend (1000) +thousand (1000) +mille (1000) + + +
tl
+
+
mille (1000)
+
+
tausend (1000)
+
+
thousand (1000)
+
+ +
1622
+
+
+
+ + +
Mbëtï tî Nzapä
+
+ + + + + + + + +die Bibel +the Bible +la Bible + + + + +
ek
+
+
die Bibel
+
+
+
+ + +
hïngängö mbëtï
+
+ + + + + + + + + + + + +schulisches Wissen +knowledge (scholastic) +connaissance (scolastique) + + +
ek
+
+
connaissance (scolastique)
+
+
knowledge, learning
+
+
schulisches Wissen
+
+
Wissen
+
+ +
0256
+
+
+
+ + +
bêkü
+
+ + + + +hoffen geduldig (sein) +hope +espoir +
espoir
+
+
hoffen geduldig (sein)
+
+
hope
+
+ +
i-368
+
+
+
+ + +
kpangba
+
+ + + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + +
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ +
0755
+
+
+
+ + +
vävärä
+
+ + + + +Sudel +rough draft, scratch paper +brouillon, papier de brouillon + + +
ek
+
+
Sudel
+
+
+
+ + +
kêtê gbakô
+
+ + + + + + + + + + + + +Lichtung +open place, clearing +clairière + + +
tl
+
+
clairière
+
+
Lichtung
+
+
open place, clearing
+
+ +
1259
+
+
+
+ + +
pïkängö
+
+ + +
pi.ka.ngɔ
+ +
2.2.2
+
+
+ + + +Kollision +collision +choc, collision + +
mle-0947
+
+
+
+ + +
hîo töngasô
+
+ + + + + + + + + + + +bald +soon +peu après + +
Hîo töngasô, fadë lo sï.
+ +
Soon, he will arrive.
+
Peu après, il arrivera.
+
+
+
+
+ + +
küä tî lê
+
+ + + + + + + + +Wimper +eyelash +cil + + + + +
tl
+
+
cil
+
+
eyelash
+
+
Wimper
+
+ + +
0009
+
+
+ + + +Augenbraue +eyebrow +sourcil + + +
tl
+
+
Augenbraue
+
+
eyebrow
+
+
sourcil
+
+ + +
0007
+
+
+
+ + +
+
+ + + + +(Wasser) schöpfen/holen/hochziehen +barrel, drum +baril, fût + + +
ek
+
+
(Wasser) schöpfen/holen/hochziehen
+
+
baril, fût
+
+
barrel, drum
+
+ +
0738
+
+
+
+ + +
îngö
+
+ + +
i.nɔ
+ +
3.2
+
+
+ + + +Salz +salt +sel + + +
tl
+
+
salt
+
+
Salz
+
+
sel
+
+ +
0578
+
+
+
+ + +
+
+ + + + +Kälte +coldness +froid, fraîcheur + + +
ek
+
+
coldness
+
+
Kälte
+
+
+
+ + +
sodäa
+
+ + +
so.daa
+ +
1.21
+
+
+ + + +Sprudel +soda pop +boisson sucrée + + +
ek
+
+
Sprudel
+
+
+
+ + +
tasêse
+
+ + + + +Irdener Topf, Tontopf, tönerner Wasserbehälter +pot (earthenware) +marmite en terre, canari (Fr Afrique) + + +
tl
+
+
Irdener Topf, Tontopf, tönerner Wasserbehälter
+
+
marmite en terre, canari (Fr Afrique)
+
+
pot (earthenware)
+
+ +
0611
+
+
+
+ + +
na löndöngö tî lâ
+
+ + + + + + + + + + + + +Sonnenaufgang +sunrise +lever du soleil + +
Na löndöngö tî lâ, fadë ï hön.
+ +
We will leave at sunrise.
+
+
+ + +
sïgïngö = better [Sims]
+
+
lever du soleil
+
+
Sonnenaufgang
+
+
sunrise
+
+ +
1377
+
+
+
+ + +
wârâga
+
+ + + + +Talismann, Amulett +amulet +talisman + + +
ek
+
+
amulet
+
+
talisman
+
+
Talismann, Amulett
+
+ +
0924
+
+
+
+ + +
hë kêtê ngîâ
+
+ + + + + + + + + + + +lächeln +smile +sourire + + +
tl
+
+
lächeln
+
+
smile
+
+
sourire
+
+ +
0270
+
+
+
+ + +
gbû bê tî (zo)
+
+ + + + + + + + + + + + +bewundern +admire +admirer + + +
tl
+
+
admire
+
+
admirer
+
+
bewundern
+
+ +
0428
+
+
+
+ + +
ngongü
+
+ + +
ngɔ.ngu
+ +
1.2
+
+
+ + + +querstrebe +cross brace +contre-fiche + +
mle-0617
+
+
+
+ + +
mängo terê
+
+ + + + + + + + + + + + +Zustimmung, Einigung +agreement +accord +
accord
+
+
agreement
+
+
Zustimmung, Einigung
+
+
+
+ + +
bele
+
+ + + + + + + +leugnen +deny +nier + + +
tl
+
+
deny
+
+
leugnen
+
+
nier
+
+ + +
0470
+
+
+
+ + +
kêtê lê tî wâ
+
+ + + + + + + + + + + + + + + + +Funke +spark +étincelle + + +
tl
+
+
étincelle
+
+
Funke
+
+
spark
+
+ +
1307
+
+
+
+ + +
ganyêe
+
+ + + + +gewinnen, verdiene +win, earn +gagner + +
i-456
+
+
+
+ + +
sëngö
+
+ + +
???
+
+ + + +strafen +punish +punir + + +
tl
+
+
punir
+
+
punish
+
+
strafen
+
+ + +
0524
+
+
+
+ + +
mä tënë
+
+ + + + + + + + + + + +zuhören +listen +écouter + + + + +
ek
+
+
écouter
+
+
listen
+
+
zuhören
+
+ +
0135
+
+
+
+ + +
sûkûru
+
+ + +
sukûlu; SC has belu, Koyt has dirü, zeze
+
+ + + +Eule +owl +hibou + + +
tl
+
+
Eule
+
+
hibou
+
+
owl
+
+ + +
1054
+
+
+
+ + +
kpë tî yâ tî mê
+
+ + + + + + + + + + + + + + + + +Ohrenschmalz +earwax +cérumen + + +
tl
+
+
cérumen
+
+
earwax
+
+
Ohrenschmalz
+
+ + +
0096
+
+
+
+ + +
âtanga tî kôbe
+
+ + + + + + + + + + + + +Resten +leftovers +les restes + + +
tl
+
+
leftovers
+
+
les restes
+
+
Resten
+
+ +
0582
+
+
+
+ + +
lëgô
+
+ + +
le.gɔ / le.gɔ̰
+ +
2.3 / 3.3
+
+
+ + + +Kehlkopf, Adamsapfel +voice box, Adam’s apple +larynx, pomme d'Adam + + +
0026
+
+
+ + + +Stimme +voice +voix + + +
tl
+
+
Stimme
+
+
voice
+
+
voix
+
+ + +
0434
+
+
+
+ + +
koto-mo-längö
+
+ + +
kɔ.tɔ.mɔ.la.ngɔ
+ +
1.1.1.1.1
+
+
+ + + +Krätze +scabies +gale, démangeaison + + +
tl
+
+
gale, démangeaison
+
+
Krätze
+
+
scabies
+
+ + +
0237
+
+
+
+ + +
füngö
+
+ + +
fu.ngɔ
+ +
2.2
+
+
+ + + +Geruch +smell +odeur + + +
tl
+
+
Geruch
+
+
odeur
+
+
smell
+
+ + +
1568
+
+
+ + + +Verwesung +rot, decay +pourriture + + +
ek
+
+
decay
+
+
pourriture
+
+
Verwesung
+
+ +
mle-1254
+
+
+
+ + +
gbândä
+
+ + + + +später +later +plus tard + + +
ek
+
+
later
+
+
später
+
+
+
+ + +
bolingo
+
+ + + + +
bo.li.ngo
+ +
1.1.1
+
+
+ + + +Liebe, Wollust +love, wanton desire +l'amour, désir lascif + + +
ek
+
+
Liebe, Wollust
+
+
+
+ + +
kötä papa
+
+ + + + + + + + + + + + +Schöpflöffel +ladle +louche + + +
tl
+
+
ladle
+
+
louche
+
+
Schöpflöffel
+
+ +
0613
+
+
+
+ + +
ndo sô a yê tîtene kokora atï daâ
+
+ + + + +Ziel +target +cible + +
mle-4767
+
+
+
+ + +
+
+ + + + + + + +graben +dig +creuser + +
creuser
+
+
dig
+
+
graben
+
+ +
0740
+
+
+
+ + +
gbüngö ... na (ya tî) gbânda
+
+ + + + +Hinterhalt +ambush +embuscade, guet-apens + +
mle-0252
+
+
+
+ + +
zîa bê
+
+ + + + +vorsichtig sein +be careful +être prudent + +
gfk-d
+
+ +
mle-0753
+
+
+
+ + +
gbagbara
+
+ + + + +Brücke +bridge +pont + + +
tl
+
+
bridge
+
+
Brücke
+
+
pont
+
+ +
1298
+
+
+
+ + +
gbägbä
+
+ + + + +Barriere, Zaun +barrier, fence +barrière, clôture + +
mle-0442
+
+
+
+ + +
zûâ
+
+ + + + +Insel +island +île + + +
tl
+
+
île
+
+
Insel
+
+
island
+
+ +
1299
+
+
+
+ + +
zä wâ
+
+ + + + + + + + +Feuer oder Licht anzünden +light a fire or lamp +allumer un feu ou lampe + + +
ek
+
+
allumer un feu ou lampe
+
+
Feuer oder Licht anzünden
+
+
light a fire or lamp
+
+ +
1496
+
+
+
+ + +
gi ndo
+
+ + + + + + + + + + + +suchen +look for +chercher + +
+ + +
dû tî kpökpö
+
+ + + + + + + + + + + + +Pfeifenstiel +pipe-stem +tuyau (de pipe) + + +
tl
+
+
Pfeifenstiel
+
+
pipe-stem
+
+
tuyau (de pipe)
+
+ +
0903
+
+
+
+ + +
patröon
+
+ + +
pa.tɾɔ̰ɔ
+ +
1.21
+
+
+ + + +Chef +employer +patron + + +
ek
+
+
Chef
+
+
employer
+
+
patron
+
+
+
+ + +
kpaka na ndö tî ...
+
+ + + + + + + + +darauf verteilen, verstreichen +apply, spread on +appliquer + + +
ek
+
+
appliquer
+
+
apply, spread on
+
+
darauf verteilen, verstreichen
+
+ + +
1484
+
+
+
+ + +
yê tî gô
+
+ + + + + + + + + + + + +Halskette +necklace +collier + + +
tl
+
+
collier
+
+
Halskette
+
+
necklace
+
+ +
0552
+
+
+
+ + +
wayöngö yê
+
+ + + + + + + + + + + + +Bettler +beggar +mendiant + + +
tl
+
+
beggar
+
+
Bettler
+
+
mendiant
+
+ +
0405
+
+
+
+ + +
yâ tî mabôko
+
+ + +
??? Make seperate entries?
+
+ + + + + + + + + + + + + + + +Handfläche +palm (of hand) +paume (de la main) + + +
tl
+
+
Handfläche
+
+
palm (of hand)
+
+
paume (de la main)
+
+ +
0058
+
+
+
+ + +
mbênî bîrï
+
+ + + + + + + + + + + + +vorgestern +day before yesterday +avant-hier + +
Mbênî bîrï, sango tî vundü nî asï.
+ +
The day before yesterday, the sad news arrived.
+
+
+ + +
tl
+
+
avant-hier
+
+
day before yesterday
+
+
vorgestern
+
+ +
1372
+
+
+
+ + +
mû ... na ... tîtene akîri na nî
+
+ + + + + + + + + + + + + + + + + + + + +leihen +lend +prêter + + +
tl
+
+
leihen
+
+
lend
+
+
prêter
+
+ +
0833
+
+
+
+ + +
gïrïsängö yê
+
+ + + + +Versehen +oversight, memory lapse +oubli + +
i-725
+
+
+
+ + +
na bê ôko
+
+ + + + + + + + +einstimmig +in perfect agreement +en accord + +
einstimmig, einig
+
in perfect agreement, of one accord
+
en accord, dans l'unité
+
+ +
Tënë awe. Âla dutï na bê ôko.
+ +
The problem has ended. They are in perfect agreement.
+
+
+ + +
ek
+
+
einstimmig
+
+
+
+ + +
bima
+
+ + + + +heulen, klagen +wail, ululate (at funeral) +pleurer, gémir, ululer + + +
tl
+
+
heulen, klagen
+
+
pleurer, gémir
+
+
wail, ululate (at funeral)
+
+ + +
0951
+
+
+ + + +stöhnen (vor Schmerzen) +moan, groan +gémir (de douleur) + + + +
0116
+
+
+
+ + +
galâ
+
+ + + + + + + +Markt +market +marché + + +
ek
+
+
marché
+
+
market
+
+
Markt
+
+ +
0535
+
+
+
+ + +
wafüngö bongö
+
+ + + + +Schneider(in) +seamstress, tailor +couturière, tailleur + + +
ek
+
+
Schneider(in)
+
+
+
+ + +
kêsi tî (mûle, birîki)
+
+ + + + + + + + + + + + +formen +mould (pottery) +moule (poterie) + + +
tl
+
+
formen
+
+
mould (pottery)
+
+
moule (poterie)
+
+ +
0710
+
+
+
+ + +
ngbêre
+
+ + +
ŋgbɛ.ɾɛ
+ +
3.1
+
+
+ + + +alt (sein) +old (be) +vieux, vieil, ancien(ne) (être) + +
Ngbêre pôro tî lo abûba awe.
+ +
His old shoes are ruined.
+
+
+ + +
ek
+
+
(être) vieux, vieil, ancien(ne)
+
+
alt (sein)
+
+
old
+
+ +
1589
+
+
+
+ + +
kpata
+
+ + +
??? Double check meaning
+
+ + + +Brei +thick porridge +bouille lourde + +
bouille lourde
+
+
Brei
+
+ +
0574
+
+
+ + + +Schlamm +mud +boue + +
boue
+
+
mud
+
+
Schlamm
+
+ +
1278
+
+
+
+ + +
na pekônî
+
+ + +
pekônî
+ +
+ + + + + + + + + + +nach, nachher +after, +après + +
Lo te kôbe na pekônî lo längö.
+ +
After he ate food, he slept.
+
+
+ + +
tl
+
+
after,
+
+
après
+
+
nach, nachher
+
+ + +
1355
+
+
+ + + +später +later +plus tard + +
Lo löndö na kötä ndäpêrêrê na pekônî lo nyön kâwa.
+ +
He arose in the early morning then later he drank coffee.
+
+
+ + +
ek
+
+
après
+
+
later
+
+
später
+
+
+ + + +spät +late +en retard + +
mle-2750
+
+
+
+ + +
marâra
+
+ + + + +Kutteln +tripe +tripe + + +
ek
+
+
Kutteln
+
+
tripe
+
+
tripe
+
+
+
+ + +
dädä
+
+ + + + +Elektrizität +electricity +électricité + + +
ek
+
+
électricité
+
+
electricity
+
+
Elektrizität
+
+
+ + + +Krämpfe +cramps +crampes + +
mle-1160
+
+
+
+ + +
hûrûhûrû
+
+ + + + + + + +murmeln +murmur +murmure + + +
ek
+
+
murmeln
+
+
murmur
+
+
murmure
+
+
+
+ + +
wamänzä
+
+ + + + +Griot +African storyteller +griot + +
lb
+
+ +
i-490
+
+
+
+ + +
huru
+
+ + + + +springen +jump +sauter + + + + +
tl
+
+
jump
+
+
sauter
+
+
springen
+
+ +
0161
+
+
+ + + +wegfliegen +fly away +s'envoler + + +
ek
+
+
s'envoler
+
+
wegfliegen
+
+
+ + + +fliegen +fly +voler + + +
tl
+
+
fliegen
+
+
fly
+
+
voler
+
+ +
1071
+
+
+ + + +wegblasen, davonfliegen +blow away +s'envoler + + +
tl
+
+
blow away
+
+
s'envoler
+
+
wegblasen, davonfliegen
+
+ +
1478
+
+
+
+ + +
mosümä
+
+ + +
mo.su.ma
+ +
1.2.2
+
+
+ + + +Traum +dream +rêve, songe + + +
ek
+
+
dream
+
+
rêve, songe
+
+
Traum
+
+ +
0129
+
+
+
+ + +
kêtê mabôko tî kâmba
+
+ + + + + + + + + + + + + + + + +Ranke +tendril +vrille + + +
tl
+
+
Ranke
+
+
tendril
+
+
vrille
+
+ +
1192
+
+
+
+ + +
sangû
+
+ + + + +WassertTier +water animal +animal aquatique + + +
ek
+
+
WassertTier
+
+
+
+ + +
popôto
+
+ + +
pɔ.pɔ.tɔ
+ +
1.3.1
+
+
+ + + +Brei +porridge, pap, mushy food +bouillie + + +
tl
+
+
bouillie
+
+
Brei
+
+
porridge, pap, mushy food
+
+ +
0574
+
+
+
+ + +
bîlawü
+
+ + + + +Mai +May +mai + + +
ek
+
+
mai
+
+
Mai
+
+
May
+
+
+
+ + +
süngö tî lâ
+
+ + + + + + + + + + + + +Sonnenschein +sunshine +lumière du soleil + + +
tl
+
+
lumière du soleil
+
+
Sonnenschein
+
+
sunshine
+
+ +
1348
+
+
+
+ + +
kângî
+
+ + + + +Grüne Mamba +green mamba +mamba vert + + +
Dendroaspis angusticeps
+
+ +
tl
+
+
green mamba
+
+
Grüne Mamba
+
+
mamba vert
+
+ +
1099
+
+
+
+ + +
kêtê kugbë tî (mbûrü)
+
+ + + + + + + + + + + + + + + + +Palmblattchen +leaflet (of palm) +foliole, petite feuille de palme + + +
tl
+
+
foliole, petite feuille de palme
+
+
leaflet (of palm)
+
+
Palmblattchen
+
+ + +
1196
+
+
+
+ + +
zûu
+
+ + + + +hinuntersteigen +go down +descendre + + +
tl
+
+
descendre
+
+
go down
+
+
hinuntersteigen
+
+ +
1410
+
+
+
+ + +
yeke drowä
+
+ + + + + + +gerade (sein) +straight (be) +droit (être) + +
Lêgë nî ayeke drowä na pöpö tî âködörö ûse sô.
+ +
The road is straight between those two villages.
+
+
+ + +
tl
+
+
(être) droit
+
+
gerade (sein)
+
+
straight
+
+ +
1530
+
+
+
+ + +
mbunzû
+
+ + + + +Europäer, Weißer +European, White +Européen, Blanc + + +
ek
+
+
Europäer, Weißer
+
+
+
+ + +
mbëtïsango
+
+ + +
mbɛ.ti.sa.ngo
+ +
2.2.1.1
+
+
+ + + +Zeitung, Zeitschrift +newspaper, magazine +journal, revue + + +
ek
+
+
Zeitung, Zeitschrift
+
+
+
+ + +
batakûngbâ
+
+ + + + +Hilfsfahrer +driver's assistant +assistant du chauffeur + +
Gepäckwärter im Bus
+
driver's assistant, luggage attendant in a bus
+
assistant du chauffeur
+
+ + +
ek
+
+
Hilfsfahrer
+
+
+
+ + +
ngbangbo osïö
+
+ + + + +vierhundert (400) +four hundred (400) +quatre cents (400) + +
four hundred (400)
+
+
quatre cents (400)
+
+
vierhundert (400)
+
+ +
chan_08
+
+
+
+ + +
mbörörö
+
+ + +
mbo.ɾo.ɾo
+ +
2.2.2 / 3.3.3
+
+
+ + + +Peul, Fulani +Peul, Fulani herder +Peul, Fulani + + +
ek
+
+
Peul, Fulani
+
+
+
+ + +
gbë
+
+ + + + +festbinden +tie up, attach +attacher, lier + + + + +
ek
+
+
attacher, lier
+
+
festbinden
+
+
tie up, attach
+
+ +
0656
+
+
+
+ + +
wâli-ndûmbu
+
+ + + + + + + + + + + +loose woman +
woman, loose
+
+
+
+ + +
yôro yângâ tî ... (na yâ tënë tî mbênî zo)
+
+ + +stecken Sie die Nase in das Geschäft eines anderen +stick one's nose in another's business +mettre son nez dans les affaires d’un autre + +
+ + +
ndüzü bongö
+
+ + + + + + + + + + + + +Hemd +shirt +chemise + + +
ek
+
+
chemise
+
+
Hemd
+
+
shirt
+
+ +
0542
+
+
+
+ + +
tënë ague ndê
+
+ + + + + + + + + +unterschiedlicher Meinung (sein) +have divergent opinions +les opinions se diffèrent + + +
ek
+
+
unterschiedlicher Meinung (sein)
+
+
+
+ + +
bi tënë na li tî
+
+ + + + + + + + + + + +anklagen +accuse +accuser + + +
tl
+
+
accuse
+
+
accuser
+
+
anklagen
+
+ +
0469
+
+
+
+ + +
balaô
+
+ + + + + + + + + + +
ba.la.ɔ [lb]
+ +
1.1.3
+
+
+ + + +Begrüßung +greetings +salutation + + +
ek
+
+
Begrüßung
+
+
greetings
+
+
salutation
+
+
+
+ + +
gï bîanî töngasô
+
+ + + + +augenblicklich +instantly +instantanément + +
A pîka ngombe sï, gï bîanî töngasô, lo tï.
+ + +
+
+
+ + +
dutï nzönî
+
+ + + + + + + + + +sich wohlfühlen, entspannt (sein) +at ease (be) +à l'aise (être) + +
Na ködörö sô, ye kûê alîngbi na âla. Âla dutï nzönî.
+ +
In this village, they had everything they needed. They were at ease.
+
+
+ + +
ek
+
+
sich wohlfühlen, entspannt (sein)
+
+
+ +zufrieden (sein) +content (be) +content (être) + + +
ek
+
+
(être) content
+
+
content
+
+
zufrieden (sein)
+
+ + +
0267
+
+
+ +gesund (sein), bei guter Gesundheit (sein) +in good health (be) +en bonne santé (être) + + +
ek
+
+
(être) en bonne santé
+
+
gesund (sein), bei guter Gesundheit (sein)
+
+
in good health
+
+ +
0205
+
+
+ +leave-taking formula +formule de prise de congé + +
+ + +
gue birä na li tî
+
+ + + + +angreifen +attack +attaquer + +
i-41
+
+
+
+ + +
mû ködä
+
+ + + + + + + + + + + +ein Darlehen erhalten +receive a loan +recevoir un prêt + + + + +
ek
+
+
ein Darlehen erhalten
+
+
receive a loan
+
+
recevoir un prêt
+
+ +
0832
+
+
+ + + +ein Darlehen geben +give a loan +faire un prêt + + +
ek
+
+
ein Darlehen geben
+
+
faire un prêt
+
+
give a loan
+
+ +
0833
+
+
+
+ + +
ngambe (tî kôlï)
+
+ + + + + + + + + + + + +jüngerer Bruder +younger brother +frère cadet + + +
& i-443
+
+ +
tl
+
+
jüngerer Bruder
+
+
sister/ brother (younger)
+
+
sœur cadette, frère cadet
+
+ +
0346
+
+
+
+ + +
kôsö
+
+ + +
kɔ.sɔ
+ +
3.2
+
+
+ + + +Kürbis +squash +courge + + +
ek
+
+
courge
+
+
Kürbis
+
+
squash
+
+
+ + + +Kürbiskerne +squash seed +graine de courge + + +
ek
+
+
Kürbiskerne
+
+
+ + + +Sorghum, Hirse (Trockenzeit) +sorghum (dry season) +sorgho (saison sèche) + + +
Sorghum bicolor
+
+ +
tl
+
+
sorgho (saison sèche)
+
+
sorghum (dry season)
+
+
Sorghum, Hirse (Trockenzeit)
+
+ +
1234
+
+
+
+ + +
kôlï-bâgara
+
+ + + + + + + + + + + + +Bulle +bull +taureau + + +
tl
+
+
bull
+
+
Bulle
+
+
taureau
+
+ +
0959
+
+
+
+ + +
bâlâwâ
+
+ + + + +Karite-Baum +shea nut tree +karité + + +
Buterospermum paradoxum, subsp. parkii
+
+ +
tl
+
+
karité
+
+
Karite-Baum
+
+
shea nut tree
+
+ +
1164
+
+
+
+ + +
sâra nganga
+
+ + + + + + + + + + + +zaubern, Magie ausüben +practice magic +pratiquer le fétichisme + + +
ek
+
+
zaubern, Magie ausüben
+
+
+
+ + +
tene na bê tî ...
+
+ + + + +sich vorstellen +suppose, imagine +supposer + +
i-979
+
+
+
+ + +
yâ nî azî
+
+ + + + + + + + + + +offen (sein) +untied (be) +lâche (être) + +
Mo lîngbi tî hön na kâmba nî. Yâ nî azî awe.
+ +
You can take the rope away. It is untied now.
+
+
+ + +
tl
+
+
(être) lâche
+
+
offen (sein)
+
+
untied
+
+ +
0661
+
+
+
+ + +
fono
+
+ + +
fɔ.nɔ
+ +
1.1
+
+
+ + + +Spaziergang +stroll +promenade + + +
ek
+
+
promenade
+
+
Spaziergang
+
+
stroll
+
+ +
i-826
+
+
+ + + +spazieren +take a walk, walk around +se promener + + +
ek
+
+
spazieren
+
+ +
i-827
+
+
+
+ + +
hön
+
+ + +
hɔ̰ / hɔ
+ +
2
+
+
+ + + +fortgehen +leave +partir + + + + + + +
ek
+
+
fortgehen
+
+
leave
+
+
partir
+
+ +
i-452
+
+
+ + + +vorbeigehen +pass by +passer + +
ahön awe.
+ +
das ist vorbei, nicht mer üblich (gebräuchlich)
+
it's already over, no longer current
+
c'est parti, c'est passé
+
+
+ + +
ek
+
+
passer
+
+
vorbeigehen
+
+
+ + + +verschwinden +disappear +disparaître + + +
tl
+
+
disappear
+
+
disparaître
+
+
verschwinden
+
+ +
1417
+
+
+
+ + +
zîa lêgë tî (sâra mbênî yê)
+
+ + + + + + + + + + + +aufhören (etwas zu tun) +stop doing something +cesser de faire quelque chose + + +
ek
+
+
aufhören (etwas zu tun)
+
+
cesser de faire quelque chose
+
+
stop doing something
+
+ +
1505
+
+
+ + + +sein Benehmen ändern +change one's behavior +changer son comportement + + +
ek
+
+
sein Benehmen ändern
+
+
+
+ + +
bê tî ... ayeke gï na ndüzü
+
+ + + + + + +er ist beunruhigt +he is worried +il est inquiet + + +
ek
+
+
er ist beunruhigt
+
+
+
+ + +
mû terê na höndëngö nî
+
+ + + + +entlaufen +elope +s'enfuir (avec son fiancé/ée) + +
mle-1589
+
+
+
+ + +
sâra yê kîrîkiri
+
+ + +
Originally: zo sô asâra yê kîrîkiri
+
+ + + + + + + + + + + + + +rastlos (sein) +restless, unsettled (be) +agité (être) + +
Nzala asâra lo, ndâli tî sô lo sâra yê kîrîkiri.
+ +
He is hungry, consequently he's restless.
+
+
+ + +
tl
+
+
(être) agité
+
+
rastlos (sein)
+
+
restless, unsettled
+
+ +
0316
+
+
+
+ + +
bê tî kongö
+
+ + + + + + + + + + + + +Knospe +bud +bourgeon + +
bourgeon
+
+
bud
+
+
Knospe
+
+ + +
1189
+
+
+
+ + +
gbadôla
+
+ + + + + +
gba.do.la
+ +
1.3.1 / 1.2.1
+
+
+ + + +Heuschrecke +locust +criquet migrateur, locuste + + +
ek
+
+
criquet migrateur, locuste
+
+
Heuschrecke
+
+
locust
+
+ +
1134
+
+
+
+ + +
nzorôko
+
+ + +
nzɔ.ɾɔ.kɔ
+ +
1.3.1
+
+
+ + + +Farbe +color +couleur + + +
tl
+
+
color
+
+
couleur
+
+
Farbe
+
+ +
1554
+
+
+ + + +stripes + +
bmm
+
+
stripes
+
+
+ + + +Nummer +number +chiffre + + +
ek
+
+
chiffre
+
+
number
+
+
Nummer
+
+
+ + + +Seite +page +page + + +
ek
+
+
page
+
+
page
+
+
Seite
+
+
+
+ + +
+
+ + + + +Fleisch +flesh +chair + + +
ek
+
+
chair
+
+
Fleisch
+
+
flesh
+
+
+ + + +Muskel +muscle +muscle + + +
ek
+
+
muscle
+
+
muscle
+
+
Muskel
+
+ + +
0089
+
+
+
+ + +
tôngbi
+
+ + +
to.ngbi
+ +
3.1
+
+
+ + + +umtausch +exchange +échanger + +
lb, jl, gfk-d
+
+ +
mle-1695
+
+
+
+ + +
dë yâ tî sêse
+
+ + + + + + + + + + + + +Ackerland hacken und für die Aussaat vorbereiten +clearing and breaking up soil for planting +défricher et labourer la terre avant les semailles + + +
tl
+
+
Ackerland hacken und für die Aussaat vorbereiten
+
+
clearing and breaking up soil for planting
+
+
défricher et labourer la terre avant les semailles
+
+ +
0747
+
+
+
+ + +
walëkëngö ta tî sêse
+
+ + + + + + + + + + + + + + + + +Töpfer +potter +potier + + +
tl
+
+
potier
+
+
potter
+
+
Töpfer
+
+ +
0400
+
+
+
+ + +
gô tî bongö
+
+ + + + + + + + + + + +Kragen +collar +col + + + + +
ek
+
+
col
+
+
collar
+
+
Kragen
+
+
+
+ + +
kamënë
+
+ + + + +Scham +shame +honte + + + + +
tl
+
+
honte
+
+
Scham
+
+
shame
+
+ +
0274
+
+
+
+ + +
fâ ngbanga na li tî ...
+
+ + + + +verurteilen +convict +reconnaître coupable + +
mle-1094
+
+
+
+ + +
lesua
+
+ + + + +aufstand, rebellieren +rebel, revolt +se révolter + +
i-880
+
+
+
+ + +
pîka kate
+
+ + + + + + + + + + +stolz (sein) +proud (be) +fier (être) + +
Wamändängö-mbëtï awara nzönî note, ndâli tî sô, lo pîka kate tî lo.
+ +
The student got good grades, on account of this, he is proud.
+
+
+ + +
tl
+
+
(être) fier
+
+
proud
+
+
stolz (sein)
+
+ +
0281
+
+
+
+ + +
mbeto asâra ...
+
+ + + + + + +Angst haben +afraid (be) +avoir peur + + +
ek
+
+
Angst haben
+
+
+
+ + +
fi ... na terê tî ...
+
+ + + + +spritzen +sprinkle, spray +gicler + + +
tl
+
+
gicler
+
+
sprinkle, spray
+
+
spritzen
+
+ + +
1483
+
+
+
+ + +
kpë tënë
+
+ + + + + + + + +Problemen aus dem Weg gehen +avoid trouble +éviter des problèmes + + +
ek
+
+
Problemen aus dem Weg gehen
+
+
+
+ + +
lêgë sô ahön na mbênî mbâgë
+
+ + + + + + + + + + + + + + + + +Verzweigung, Strassengabelung +fork (in path) +bifurcation (de la route) + + +
tl
+
+
bifurcation (de la route)
+
+
fork (in path)
+
+
Verzweigung, Strassengabelung
+
+ +
0848
+
+
+
+ + +
wafängö lêgë
+
+ + + + + + + + + + + + + + + + +Führer +guide +guide + + +
tl
+
+
Führer
+
+
guide
+
+
guide
+
+ +
0389
+
+
+
+ + +
ndo tî mbütü na yângâ tî ngû
+
+ + + + + + + + + + + + + + + + + + + + +Strand +beach +plage + + +
tl
+
+
beach
+
+
plage
+
+
Strand
+
+ + +
1300
+
+
+
+ + +
yê sô aba
+
+ + + + + + + + + + + + +Kurve +bend, crook, curve +courbe + + +
tl
+
+
bend, crook, curve
+
+
courbe
+
+
Kurve
+
+ +
1533
+
+
+
+ + +
vukö
+
+ + + + +schwarz +black (be) +noir (être) + +
Lo kä mbênî vukö bâgara.
+ +
He sold a black cow.
+
+
+ + +
tl
+
+
(être) noir
+
+
black
+
+
schwarz
+
+ + +
1556
+
+
+ + + +dunkel +dark (be) +sombre (être) + +
lê tî ndüzü ayeke vukö.
+ +
The sky is dark.
+
+
+ + +
ek
+
+
(être) sombre
+
+
dark
+
+
dunkel
+
+ +
1562
+
+
+ + + +schmutzig +dirty (be) +sale (être) + +
1585
+
+
+
+ + +
sïönî yorö tî zîa na lê tî kokora
+
+ + + + + + + + + + + + + + + + +Gift auf einem Pfeil +poison on arrow +poison sur une flèche + + +
tl
+
+
Gift auf einem Pfeil
+
+
poison on arrow
+
+
poison sur une flèche
+
+ +
0782
+
+
+
+ + +
mû âkûngbâ na ngangü
+
+ + + + + + + + + + + + + + + + +plündern (ein Dorf) +plunder (a town) +piller (un village) + + +
tl
+
+
piller (un village)
+
+
plunder (a town)
+
+
plündern (ein Dorf)
+
+ + +
0877
+
+
+
+ + +
kêtê taba
+
+ + + + + + + + +Lamm +lamb +agneau + + +
tl
+
+
agneau
+
+
lamb
+
+
Lamm
+
+ +
0972
+
+
+
+ + +
ba
+
+ + + + +krumm, verbogen (sein) +crooked (be) +courbé, tordu (être) + +
Këkë nî aba bängö.
+ +
The stick is crooked.
+
+
+ + +
tl
+
+
(être) courbé, tordu
+
+
crooked
+
+
krumm, verbogen (sein)
+
+ +
1532
+
+
+
+ + +
ngangü kobêla
+
+ + + + +schwere Erkrankung +sickness (serious) +maladie (grave) + +
i-604
+
+
+
+ + +
ye tî pekônî
+
+ + + + + + + + + + + + + +Folgen +consequences +conséquences + + +
ek
+
+
nächstes Mal
+
+
+
+ + +
+
+ + + + +Magen +stomach +estomac, ventre + + + + +
tl
+
+
estomac, ventre
+
+
Magen
+
+
stomach
+
+ +
0040
+
+
+ + + +Bauch +abdomen (external) +ventre, abdomen (externe) + + +
tl
+
+
abdomen (external)
+
+
Bauch
+
+
ventre, abdomen (externe)
+
+ + +
0039
+
+
+ + + +Innerhalb +inside +à l'intérieur + +
Zo nî alï
+ + +
+
Innerhalb
+
+
inside
+
+
+
+ + +
yayâ tî kôlï
+
+ + + + +älterer Bruder +older brother +aîné + +
yayâ tî kôlï
+ +
älterer Bruder
+
older brother
+
frère ainé
+
+
+ + +
& i-4
+
+ +
tl
+
+
aîné
+
+
älterer Bruder
+
+
brother (older)
+
+ + +
0346
+
+
+
+ + +
te mbere
+
+ + + + + + + + + + + +ein Bündnis schließen +make an alliance +s'allier + + +
ek
+
+
ein Bündnis schließen
+
+
s'allier
+
+
+ + + +an einem rituellen Mahl teilnehmen +share a ritual meal +partager un repas rituel + + +
ek
+
+
an einem rituellen Mahl teilnehmen
+
+
+
+ + +
töngömbo
+
+ + +
to.ngo.mbo
+ +
2.2.1 / 3.2.1 [lb]
+
+
+ + + +junggeselle +bachelor +célibataire endurci + +
mle-0390
+
+
+ + + +ein steriler Mann +sterile male +homme stérile + +
+ + +
ndü tënë
+
+ + + + + + + + +auf ein Thema eingehen +approach a subject +aborder un sujet + + +
ek
+
+
auf ein Thema eingehen
+
+
+
+ + +
küä-ngbagba
+
+ + + + +Bart +beard +barbe + +
barbe
+
+
Bart
+
+
beard
+
+ +
0028
+
+
+
+ + +
fokôn
+
+ + +
fo.ko̰
+ +
1.3
+
+
+ + + +Falke, Habicht +falcon, hawk +épervier, faucon + + +
1056
+
+
+
+ + +
ndo tî töngö kôbe
+
+ + + + + + + + + + + + + + + + +Küche +kitchen +cuisine + + +
tl
+
+
cuisine
+
+
kitchen
+
+
Küche
+
+ + +
0673
+
+
+
+ + +
sokoto
+
+ + +
check sokoto and its tone
+
+ + + + + + + + + + + + + +
???
+
+ + + +Huf +hoof +sabot + + +
tl
+
+
hoof
+
+
Huf
+
+
sabot
+
+ + +
1032
+
+
+
+ + +
këkë tî nzö
+
+ + + + + + + + + + + + +(Mais-)Stängel +stem, stalk (of maize, millet, etc.) +tige (de maïs, de mil) + + +
tl
+
+
(Mais-)Stängel
+
+
stem, stalk (of maize, millet, etc.)
+
+
tige (de maïs, de mil)
+
+ +
1185
+
+
+
+ + +
sasa
+
+ + + + +Durchfall +diarrhea +diarrhée + + +
tl
+
+
diarrhea
+
+
diarrhée
+
+
Durchfall
+
+ +
0236
+
+
+ + + +Durchfall haben +have diarrhea +avoir la diarrhée + + +
ek
+
+
Durchfall haben
+
+
+
+ + +
taba
+
+ + + + +Schaf +sheep +mouton + + +
tl
+
+
mouton
+
+
Schaf
+
+
sheep
+
+ + +
0969
+
+
+
+ + +
kôlï-taba
+
+ + + + + + + + + + + + +Widder +ram +bélier + + +
tl
+
+
bélier
+
+
ram
+
+
Widder
+
+ +
0970
+
+
+
+ + +
pâta balëûse
+
+ + + + + + + + +einhundert Franken +hundred francs +cent francs (5 x 20) + + +
ek
+
+
einhundert Franken
+
+
+
+ + +
mbôrô
+
+ + +
mbo.ɾo
+ +
3.3
+
+
+ + + +Pickel, Pustel, Vesikel +pimple, boil, vesicle +bouton, pustule, vésicule + +
+ + +
mû lörö
+
+ + + + + + + + + + + + +rennen +run +courir + + +
tl
+
+
courir
+
+
rennen
+
+
run
+
+ +
0159
+
+
+
+ + +
vekë
+
+ + + + +Okra +okra +gombo + + +
Abelmoschus esculentus
+
+ +
tl
+
+
gombo
+
+
okra
+
+
Okra
+
+ +
1224
+
+
+
+ + +
finî mabôko tî këkë
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +Spross +shoot (new plant) +pousse, rejeton + + +
tl
+
+
pousse, rejeton
+
+
shoot (new plant)
+
+
Spross
+
+ + +
1190
+
+
+
+ + +
nîlaâ sï...
+
+ + + + + + +darum... +that's why... +c'est pourquoi... + + +
ek
+
+
darum...
+
+
+
+ + +
tënë tî nyen
+
+ + + + + + + + + + + + +warum? +why? +pourquoi ? + +
Tënë tî nyen mo nzï taba so?
+ +
Why did you steal that sheep?
+
+
+ + +
ek
+
+
pourquoi ?
+
+
warum?
+
+
why?
+
+ +
1688
+
+
+
+ + +
nzënë
+
+ + + + +Kralle +claw +griffe + + +
tl
+
+
claw
+
+
griffe
+
+
Kralle
+
+ + +
1065
+
+
+ + + +Nagel +fingernail +ongle + + +
tl
+
+
fingernail
+
+
Nagel
+
+
ongle
+
+ +
0062
+
+
+
+ + +
kpïndïrï
+
+ + + + + + + +Holzkohle +charcoal +charbon de bois + + +
ek
+
+
charbon de bois
+
+
charcoal
+
+
Holzkohle
+
+ + +
1311
+
+
+
+ + +
yôro bongö na ngû
+
+ + + + + + + + +Wäsche einweichen +soak clothes +tremper des habits + + +
ek
+
+
Wäsche einweichen
+
+
+
+ + +
gogoro
+
+ + +
gɔ.gɔ.ɾɔ
+ +
1.1.1
+
+
+ + + +Vorratsspeicher +granary, silo +grenier + + +
tl
+
+
granary, silo
+
+
grenier
+
+
Vorratsspeicher
+
+ +
0678
+
+
+
+ + +
ndâyä
+
+ + + + +Hundertfüßer +centipede +scolopendre + + +
1138
+
+
+
+ + +
pardön
+
+ + +
paɾ.dɔ̰ɔ
+ +
1.21
+
+
+ + + +Gottesanbeterin, Mantis +praying mantis +mante religieuse + + +
tl
+
+
Gottesanbeterin, Mantis
+
+
mante religieuse
+
+
praying mantis
+
+ +
1135
+
+
+
+ + +
pîka li
+
+ + + + + + + + +sich Sorgen machen +fret +se tracasser + + + + +
ek
+
+
fret
+
+
sich Sorgen machen
+
+
+
+ + +
dï ïrï
+
+ + + + + + + + + + + + + + +nennen +name +nommer + + + + +
ek
+
+
name
+
+
nennen
+
+
nommer
+
+
+
+ + +
wakodë
+
+ + + + +Spezialist +specialist +spécialiste + + +
ek
+
+
specialist
+
+
spécialiste
+
+
Spezialist
+
+
+
+ + +
fâ gô (tî ...)
+
+ + + + + + + + + + + + +schlachten, töten (ein Tier) +slit throat, slaughter (animal for butchering) +égorger, abattre (un animal) + + +
tl
+
+
égorger, abattre (un animal)
+
+
schlachten, töten (ein Tier)
+
+
slit throat, slaughter (animal for butchering)
+
+ + +
0797
+
+
+
+ + +
bâbâ tî âturûgu
+
+ + + + + + + + + + + + +Militär-Lager +military camp, encampment +campement militaire + + +
tl
+
+
campement militaire
+
+
Militär-Lager
+
+
military camp, encampment
+
+
+
+ + +
ködrö
+
+ + +
kɔ.drɔ
+ +
2.2
+
+
+ + + +Dorf +village +village + + +
ek
+
+
Dorf
+
+
village
+
+
village
+
+ + +
0533
+
+
+ + + +Stadt +city +ville + + + + +Region +region +région + +
gue na ködrö
+ +
heimgehen
+
go home
+
rentrer chez soi
+
+
+ + +
ek
+
+
region
+
+
Region
+
+
région
+
+
+ + + +Land +country +pays + + +
ek
+
+
country
+
+
Land
+
+
pays
+
+ + +
0530
+
+
+
+ + +
sën
+
+ + + + +Modergeruch +moldy smell +odeur de moisissure + + +
ek
+
+
Modergeruch
+
+
+
+ + +
mustikëre
+
+ + + + +Moskito-Netz +mosquito net +moustiquaire + + +
ek
+
+
Moskito-Netz
+
+
moustiquaire
+
+
+
+ + +
balëosïö
+
+ + +
ba.le.o.si.o / ba.le.u.si.o
+ +
1.2.1.2.2
+
+
+ + + +vierzig (40) +forty (40) +quarante (40) + + +
tl
+
+
forty (40)
+
+
quarante (40)
+
+
vierzig (40)
+
+ +
1613
+
+
+
+ + +
halëzo
+
+ + +
ha.le.zo
+ +
1.2.1
+
+
+ + + +Leute +people +gens + + +
ek
+
+
gens
+
+
Leute
+
+
people
+
+
+ + + +Vertreter +representatives +représentants + + +
ek
+
+
représentants
+
+
representatives
+
+
Vertreter
+
+
+
+ + +
ngonzo
+
+ + +
ŋgɔ.nzɔ
+ +
1.1
+
+
+ + + +Galle, Gallensaft +bile, gall +bile + + +
tl
+
+
bile
+
+
bile, gall
+
+
Galle, Gallensaft
+
+ +
0099
+
+
+
+ + +
yongôro na gbenî
+
+ + + + + + + + + + + +zum Boden, Unterseite +to the bottom +au fond + +
Têne nî atï yongôro na gbenî.
+ +
Der Stein fiel zu Boden.
+
The stone fell to the bottom.
+
La pierre est tombée au fond.
+
+
+ + +
tl
+
+
Boden, Unterseite
+
+
bottom
+
+
fond
+
+
+
+ + +
gbägbä tî da
+
+ + + + + + + + + + + + +Gelände, Haus +compound, house +concession, maison + + +
tl
+
+
compound, house
+
+
concession, maison
+
+
Gelände, Haus
+
+ +
0662
+
+
+
+ + +
füngö kä
+
+ + + + + + + + + + + + +Geschwür (Bein) +ulcer (leg) +ulcère + + +
tl
+
+
Geschwür (Bein)
+
+
ulcer (leg)
+
+
ulcère
+
+ + +
0219
+
+
+
+ + +
na lê tî âzo
+
+ + + + + + + + + + + + + + + +öffentlich +in public +publiquement + +
Lo pîka wâlï tî lo na lê tî âzo.
+ +
He beat his wife in public.
+
Il a battu sa femme publiquement.
+
+
+ + +
ek
+
+
öffentlich
+
+
publiquement
+
+
+
+ + +
bïngö na ngû
+
+ + + + + + + +versagen +failure +échec + +
gfk-d
+
+ +
mle-1757
+
+
+
+ + +
lê akpêngba
+
+ + + + + + + + + +wach/wachsam (sein) +awake, alert (be) +réveillé, vigilant (être) + +
Lo längö pëpe. Lê tî lo âkpêngba.
+ +
He did not sleep. He was awake.
+
+
+ + +
tl
+
+
(être) réveillé, vigilant
+
+
awake, alert
+
+
se reposer
+
+
wach/wachsam (sein)
+
+ +
0186
+
+
+
+ + +
nyëkpä
+
+ + + + +Blitz +lightning +éclair + + +
tl
+
+
Blitz
+
+
éclair
+
+
lightning
+
+ + +
1334
+
+
+
+ + +
pîka mozoko
+
+ + + + + + + + + + + + +ein Instrument spielen +play instrument +jouer (d'un instrument) + + +
tl
+
+
ein Instrument spielen
+
+
jouer (d'un instrument)
+
+
play instrument
+
+ +
0895
+
+
+
+ + +
ndo sô ... ayê tî gue daä
+
+ + + + +Bestimmungsort +destination +destination + +
mle-1330
+
+
+
+ + +
sâra mafüta na terê tî...
+
+ + + + + + + + + + + + + + + + +auftragen, einreiben (Salbe) +apply (ointment), besmear +s'enduire + + +
tl
+
+
apply (ointment), besmear
+
+
auftragen, einreiben (Salbe)
+
+
s'enduire
+
+ +
0562
+
+
+
+ + +
pîda
+
+ + + + +kleben +glue, paste, bond +coller + +
i-200
+
+
+
+ + +
zûku li
+
+ + + + + + + + +den Kopf senken +hang one's head, bow +baisser la tête + + +
ek
+
+
den Kopf senken
+
+
+
+ + +
pîka âmetë
+
+ + + + + + + + + + + +ein Mädchenhüpfspiel spielen +play a hopping game +jouer un jeu des filles + + +
ek
+
+
ein Mädchenhüpfspiel spielen
+
+
+
+ + +
mokpäkpä
+
+ + +
mo.kpa.kpa
+ +
1.2.2
+
+
+ + + +Seife +soap +savon + + +
ek
+
+
savon
+
+
Seife
+
+
soap
+
+
+
+ + +
li nî ayeke kêtê azä mîngi pëpe
+
+ + + + + + + + + + + + + + +stumpf (sein) +blunt, dull (be) +émoussé (être) + + +
tl
+
+
(être) émoussé
+
+
blunt, dull
+
+
stumpf (sein)
+
+ + +
1540
+
+
+
+ + +
pekô
+
+ + + + +
pɛ.kɔ / pe.ko / pe.kɔ / po.ko / pɔ.kɔ
+ +
1.3 / 1.2
+
+
+ + + +Rücken +back +dos + + + + +
tl
+
+
back
+
+
dos
+
+
Rücken
+
+ + +
0042
+
+
+ +Hinterseite +rear +partie arrière + + +
ek
+
+
Hinterseite
+
+
rear
+
+
+ + + +Hüfte +hip +hanche + + +
tl
+
+
hanche
+
+
hip
+
+
Hüfte
+
+ +
0064
+
+
+
+ + +
isorö
+
+ + + + + +
i.so.ɾo
+ +
1.1.2 / 1.1.1 [lb]
+
+
+ + + +plaudern, ein Gespäch führen +chat, converse, talk +causer, converser + +
+ + +
manda
+
+ + + + +lernen +learn +apprendre + + +
ek
+
+
apprendre
+
+
learn
+
+
lernen
+
+ +
0262
+
+
+
+ + +
likongô
+
+ + +
li.kɔ.ngɔ
+ +
1.1.2
+
+
+ + + +Speer, Lanze +spear, lance +sagaie + + +
tl
+
+
sagaie
+
+
spear, lance
+
+
Speer, Lanze
+
+ +
0785
+
+
+
+ + +
dutëe
+
+ + + + +Tee +tea +thé + + +
ek
+
+
tea
+
+
Tee
+
+
thé
+
+
+
+ + +
pandë
+
+ + + + +Vorbild, Beispiel +model, example +modèle, exemple + + +
ek
+
+
Vorbild, Beispiel
+
+
+
+ + +
sâra ngêrë
+
+ + + + + + + + + + + + +feilschen +haggle, dicker, negotiate a price +marchander, débattre le prix + + +
tl
+
+
feilschen
+
+
haggle, dicker, negotiate a price
+
+
marchander, débattre le prix
+
+ +
0826
+
+
+
+ + +
nyön me tî ...
+
+ + + + + + + + + + + + +stillen +nurse, suckle (baby) (tr) +téter, allaiter + + +
tl
+
+
nurse, suckle (baby) (tr)
+
+
stillen
+
+
téter, allaiter
+
+ +
0488
+
+
+
+ + +
gbïngö tî pêrë
+
+ + + + + + + + +Buschfeuer +brushfire +feu de brousse + + +
ek
+
+
brushfire
+
+
Buschfeuer
+
+
+
+ + +
yeke na ndüzü
+
+ + + + + + + + +hoch (sein) +high (be) +haut (être) + +
Bâa! Ndeke nî ayeke na ndüzü kâ!
+ +
Look! The bird is high over there.
+
+
+ + +
tl
+
+
(être) haut
+
+
high
+
+
hoch (sein)
+
+ +
1511
+
+
+
+ + +
bozö
+
+ + +
bo.zo
+ +
1.2
+
+
+ + + +Tüte, Tasche, Sack +bag, sack +sac + + +
tl
+
+
bag, sack
+
+
sac
+
+
Tüte, Tasche, Sack
+
+ +
0624
+
+
+
+ + +
dûche
+
+ + + + +Badehaus, Dusche +bathing place +douche + + +
tl
+
+
Badehaus, Dusche
+
+
bathing place
+
+
douche
+
+ +
0680
+
+
+
+ + +
nzara nî ahûnzi
+
+ + + + + + + + + + + + +tröpfeln +drip +dégoutter, égoutter + + +
tl
+
+
dégoutter, égoutter
+
+
drip
+
+
tröpfeln
+
+ +
1481
+
+
+
+ + +
+
+ + + + +eintreten +enter, go in +entrer + + +
tl
+
+
eintreten
+
+
enter, go in
+
+
entrer
+
+ +
1407
+
+
+
+ + +
mbamba tî nzorôko
+
+ + + + + + + + + + + + +Farbe +paint +peinture + + +
tl
+
+
Farbe
+
+
paint
+
+
peinture
+
+ +
0691
+
+
+
+ + +
sâra yê na mabôko ûse
+
+ + + + + + + +vorsichtig sein +be careful +être prudent + +
gfk-d
+
+ +
mle-0753
+
+
+
+ + +
kpîtîkpîtî
+
+ + +
sl agrees
+
+ + + +sehr schwarz +very black +très noir + + +
ek
+
+
sehr schwarz
+
+
+
+ + +
kpë lörö
+
+ + + + + + + + + + + +rennen +run +courir + + + + +
ek
+
+
courir
+
+
rennen
+
+
run
+
+ +
0159
+
+
+
+ + +
dütïngö
+
+ + +
du.ti.ngɔ
+ +
2.2.2
+
+
+ + + +Lebensweise +lifestyle +style de vie + + +
ek
+
+
Lebensweise
+
+
lifestyle
+
+
+
+ + +
gûên
+
+ + + + +Hunger +hunger +faim + + +
ek
+
+
faim
+
+
hunger
+
+
Hunger
+
+
+
+ + +
wadëngö-büzë
+
+ + + + +Geschäftsmann +trader, shopkeeper +commerçant + + +
tl
+
+
commerçant
+
+
Geschäftsmann
+
+
trader, shopkeeper
+
+ +
0403
+
+
+
+ + +
kandâ
+
+ + + + + + + +Kloß aus gemahlenen Kürbissamen +boiled, squash-seed [koso] ball +boulette de graines de courge koso, galette + + +
ek
+
+
Kloß aus gemahlenen Kürbissamen
+
+
+
+ + +
matabïsi
+
+ + + + +Geschenk, Gabe +gift, present +cadeau, don + + +
tl
+
+
cadeau, don
+
+
Geschenk, Gabe
+
+
gift, present
+
+ +
0829
+
+
+ + + +Kollekte +offering +offrande + + +
ek
+
+
Kollekte
+
+
offering
+
+
offrande
+
+
+
+ + +
hûnda yângâ
+
+ + + + + + + + +jemanden an eine Verpflichtung erinnern +remind someone of an obligation +rappeler une bienfaisance + + +
ek
+
+
jemanden an eine Verpflichtung erinnern
+
+
+
+ + +
yângbö tî gbïä
+
+ + + + + + + + +Palast +palace +palais + + +
ek
+
+
palace
+
+
palais
+
+
Palast
+
+
+
+ + +
kpë tî kârâkö
+
+ + + + + + + + + + + + +Erdnußpaste, -butter +paste (peanut butter) +pâte (d'arachide) + + +
ek
+
+
Erdnußpaste, -butter
+
+
+
+ + +
mabôko tî wâlï
+
+ + + + + + + + +linke Hand +left hand +main gauche + + +
ek
+
+
linke Hand
+
+ +
i-595
+
+
+
+ + +
mênë
+
+ + + + +Blut +blood +sang + + +
tl
+
+
blood
+
+
Blut
+
+
sang
+
+ +
0098
+
+
+
+ + +
mapîâ
+
+ + + + +Hüfttuch, Wickelrock +wrap-around skirt +pagne, + +
Hüfttuch, Stoff (etwa 2 m)
+
wrap-around skirt, two yards of cloth
+
pagne
+
+ + +
tl
+
+
Hüfttuch, Wickelrock
+
+
pagne,
+
+ +
0546
+
+
+ + + +Stoff +cloth +tissu + + +
tl
+
+
cloth
+
+
Stoff
+
+
tissu
+
+ +
0732
+
+
+
+ + +
ködrösêse
+
+ + +
kɔ.drɔ.sɛ.sɛ
+ +
2.2.3.1
+
+
+ + + +Republik +republic +république + + +
ek
+
+
republic
+
+
Republik
+
+
république
+
+
+
+ + +
wagïngö susu
+
+ + + + + + + + + + + + + + + + +Fischer, Angler +fisherman +pêcheur + + +
tl
+
+
Fischer, Angler
+
+
fisherman
+
+
pêcheur
+
+ +
0397
+
+
+
+ + +
sösö
+
+ + +
so.so
+ +
2.2
+
+
+ + + +Furz +fart +pet + + +
ek
+
+
fart
+
+
Furz
+
+
pet
+
+ +
0120
+
+
+
+ + +
mbôko
+
+ + +
mbɔ.kɔ
+ +
3.1
+
+
+ + + +Blase +blister +ampoule, cloque + + +
ek
+
+
Blase
+
+
blister
+
+
+ + + +Blasen verursachen +blister +causer des ampoules + + +
ek
+
+
Blasen verursachen
+
+
blister
+
+
+ + + +glatzköpfig (sein), eine Glatze haben +bald (be) +chauve (être) + +
& mle
+
+
glatzköpfig (sein), eine Glatze haben
+
+ +
0190
+
+
+
+ + +
ngbätï
+
+ + + + +Zauberkraft +magical power +pouvoir magique + + +
ek
+
+
Zauberkraft
+
+
+
+ + +
+
+ + + + +Eid +oath +serment + + +
ek
+
+
Eid
+
+
oath
+
+
serment
+
+
+ + + +Fluch +curse +malédiction + + +
ek
+
+
curse
+
+
Fluch
+
+
malédiction
+
+ +
0921
+
+
+
+ + +
zî lê tî (nzö)
+
+ + + + + + + + + + + + + + + + +(Maiskolben) entkernen +shell (corn) +décortiquer (maïs) + + +
tl
+
+
(Maiskolben) entkernen
+
+
décortiquer (maïs)
+
+
shell (corn)
+
+ +
0766
+
+
+
+ + +
pîka bê tî ...
+
+ + + + + + + + +berühren, ergreifen (Gefühle) +affect, touch (emotions) +affecter, toucher (émotions) + + + + +
ek
+
+
berühren, ergreifen (Gefühle)
+
+
+
+ + +
kôgarä tî wâlï
+
+ + + + + + + + + + + + +Schwiegermutter +mother-in-law +belle-mère + + +
tl
+
+
belle-mère
+
+
mother-in-law
+
+
Schwiegermutter
+
+ +
0366
+
+
+
+ + +
bi fûu
+
+ + + + + + + + + + + +verrückt machen +drive crazy +rendre fou + + +
ek
+
+
verrückt machen
+
+
+
+ + +
längö tî matânga
+
+ + + + + + + + +Feiertag +holiday +jour de fête + + +
ek
+
+
Feiertag
+
+
holiday
+
+
jour de fête
+
+ + +
0581
+
+
+
+ + +
kpângbi tî susu
+
+ + + + + + + + + + + + +Finne, Flosse +fin +nageoire + + +
tl
+
+
fin
+
+
Finne, Flosse
+
+
nageoire
+
+ +
1090
+
+
+
+ + +
gbüngö-li
+
+ + + + +Meditation, Betrachtung +meditation +réflexion, méditation + + +
ek
+
+
meditation
+
+
Meditation, Betrachtung
+
+
+
+ + +
kobêla
+
+ + +
fr ling (kc)
+
+ +
ko.be.la
+ +
1.3.1
+
+
+ + + +Krankheit +sickness, illness, disease +maladie + + + + +
tl
+
+
Krankheit
+
+
maladie
+
+
sickness, illness, disease
+
+ +
0224
+
+
+ +krank (sein) +sick, ill (be) +malade (être) + + +
tl
+
+
(être) malade
+
+
krank (sein)
+
+
sick, ill
+
+ +
0206
+
+
+
+ + +
kötä këkë (tî fängö na nyama)
+
+ + + + + + + + + + + + + + + + + + + +Knüppel, Schlagstock +club, cudgel +massue + + +
tl
+
+
club, cudgel
+
+
Knüppel
+
+
massue
+
+ + +
0788
+
+
+
+ + +
bôngbi
+
+ + + + + +
bo.ngbi
+ +
3.1
+
+
+ + + +versammein +gather +rassembler + + +
ek
+
+
gather
+
+
rassembler
+
+
versammein
+
+ +
1465
+
+
+ + + +Versammlung +meeting, gathering +assemblée + +
i-37
+
+
+
+ + +
mene
+
+ + + + +schlucken +swallow +avaler + + +
tl
+
+
avaler
+
+
schlucken
+
+
swallow
+
+ +
0145
+
+
+
+ + +
kötä tere
+
+ + + + + + + + + + + + +Vogelspinne, Tarantel +tarantula +tarentule + + +
tl
+
+
tarantula
+
+
tarentule
+
+
Vogelspinne, Tarantel
+
+ +
1128
+
+
+
+ + +
bi tënë na ndö tî (mbênî zo)
+
+ + + + + + + + + + + +jemanden anklagen, beschuldigen +accuse someone +accuser quelqu'un + + + + +
ek
+
+
accuse someone
+
+
accuser quelqu'un
+
+
jemanden anklagen, beschuldigen
+
+ +
0469
+
+
+
+ + +
ngonzâ
+
+ + +
ngo.nza
+ +
1.3
+
+
+ + + +Schnecke +snail +escargot + +
Sango Courant Bible
+
+
+
+ + +
wakängö nyama
+
+ + + + + + + + + + + + + + +Metzger +butcher +boucher + + +
tl
+
+
boucher
+
+
butcher
+
+
Metzger
+
+ +
0402
+
+
+
+ + +
zo sô asâra mbito tî bübä
+
+ + + + + + + + + + + + + + + + +Feigling +coward +lâche, poltron + + +
tl
+
+
coward
+
+
Feigling
+
+
lâche, poltron
+
+ +
0310
+
+
+
+ + +
voro terê
+
+ + + + + + + + + + + + +auf die Knie gehen (mit Respekt) +kneel (out of respect) +s'agenouiller (en montrant du respect) + + +
tl
+
+
+ + + +entschuldigen +ask forgiveness +demander pardon + + +
+ + +
purû
+
+ + + + +Kot +feces, excrement +déchets, excréments + + +
tl
+
+
déchets, excréments
+
+
feces, excrement
+
+
Kot
+
+ +
0102
+
+
+
+ + +
bê sô apîka
+
+ + + + + + + + + + + + +schlagen +palpitate (of heart) +palpiter, battre (cœur) + + +
tl
+
+
palpitate (of heart)
+
+
palpiter, battre (cœur)
+
+
schlagen
+
+ +
0118
+
+
+
+ + +
dutï töngana sï ... yeke kpë na mbârâtâ
+
+ + + + + + + + + + + + +spreizen, überbrücken +straddle +chevaucher + + +
tl
+
+
chevaucher
+
+
spreizen, überbrücken
+
+
straddle
+
+ + +
0170
+
+
+
+ + +
li nî
+
+ + + + + + + + +Punkt, Spitze +point +pointe + + +
tl
+
+
point
+
+
pointe
+
+
Punkt, Spitze
+
+ +
1394
+
+
+
+ + +
+
+ + +
ko
+ +
2
+
+
+ + + +sprießen +sprout +bourgeonner, pousser + + +
ek
+
+
bourgeonner, pousser
+
+
sprießen
+
+
sprout
+
+ +
i-468
+
+
+
+ + +
kîzi
+
+ + + + +Perle +pearl +perle + + +
ek
+
+
pearl
+
+
perle
+
+
Perle
+
+
+ + + +Perle, Kügelchen +bead +perle + + +
ek
+
+
bead
+
+
perle
+
+
Perle, Kügelchen
+
+ + +
0549
+
+
+
+ + +
kânga gbâ
+
+ + + + + + + + + + + + +packen, einpacken +pack +empaqueter + + +
tl
+
+
empaqueter
+
+
pack
+
+
packen, einpacken
+
+ +
0650
+
+
+
+ + +
zîa na ndö tî terê
+
+ + + + + + + + + + + + +ansammeln +accumulate +accumuler + + +
tl
+
+
accumulate
+
+
accumuler
+
+
ansammeln
+
+ +
1464
+
+
+
+ + +
dazu
+
+ + + + +Bulbe, Tuberkel +bulb, tuber +tubercule + +
bulb, tuber
+
+
Bulbe, Tuberkel
+
+
tubercule
+
+ + +
1184
+
+
+
+ + +
mändängö (yê)
+
+ + + + + + + + + + + + +Lektion, Unterricht +lesson, course +leçon, cours + + +
ek
+
+
Lektion, Unterricht
+
+
+ + + +Lehre +apprenticeship +apprentissage + + +
ek
+
+
apprenticeship
+
+
apprentissage
+
+
Lehre
+
+
+
+ + +
bongô
+
+ + +
bɔ.ngɔ
+ +
1.3
+
+
+ + + +Hyäne +hyena +hyène + +
+ + +
kamême
+
+ + + + +trotzdem, obwohl +anyway, even though +quand même + + +
ek
+
+
trotzdem, obwohl
+
+
+
+ + +
kamelä
+
+ + + + + + + +Scham +shame +honte + +
honte
+
+
Scham
+
+
shame
+
+ +
0274
+
+
+
+ + +
sâra hîo
+
+ + + + +in Eile +in a hurry (be) +pressé (être) + +
i-818
+
+
+
+ + +
bozö tî âlê tî kokora
+
+ + + + + + + + + + + + +Köcher +quiver +carquois + + +
tl
+
+
carquois
+
+
Köcher
+
+
quiver
+
+ +
0784
+
+
+
+ + +
kêtê ngo
+
+ + + + + + + + + + + + +kleine/ste Trommel +small(est) drum +petit tambour + + +
tl
+
+
kleine/ste Trommel
+
+
petit tambour
+
+ +
0886
+
+
+
+ + +
dû tî kûâ
+
+ + + + + + + + + + + + +Grab +grave +tombe, tombeau + + +
tl
+
+
Grab
+
+
grave
+
+
tombe, tombeau
+
+ + +
0955
+
+
+
+ + +
mbupa
+
+ + + + +Wort +word +mot + + +
tl
+
+
mot
+
+
word
+
+
Wort
+
+ +
0431
+
+
+
+ + +
hön ndö tî
+
+ + + + + + + + +übertreffen, siegen, mehr sein als, übersteigen +overcome, conquer, be more than, overtake +surpasser, vaincre, être plus que, dépasser + + +
tl
+
+
overcome, be more than, overtake
+
+
surpasser, vaincre, être plus que, dépasser
+
+
übertreffen, siegen, mehr sein als, übersteigen
+
+ +
1438
+
+
+
+ + +
yê sô asï na zo na nzï nî
+
+ + + + + + + + + + + + + + + + + + + + +erschrecken, überraschen +startle, surprise +surprendre + + +
tl
+
+
erschrecken, überraschen
+
+
startle, surprise
+
+
surprendre
+
+ +
0278
+
+
+
+ + +
kângbi terê
+
+ + + + + + + + +sich von einander trennen +split up, separate +se séparer + + + + +
ek
+
+
sich von einander trennen
+
+
+
+ + +
môlengê-kôlï
+
+ + + + + + + + + + + +Junge, Bub +boy +garçon + + + + +
ek
+
+
boy
+
+
garçon
+
+
Junge, Bub
+
+ + +
0335
+
+
+ + + +Sohn +son +fils + + +
tl
+
+
fils
+
+
Sohn
+
+
son
+
+ +
0355
+
+
+
+ + +
sâra sïönî-bê
+
+ + + + + + + + + + + + + + +gemein, böse (sein) +mean, wicked (be) +méchant (être) + +
Lo sô, lo fâ zo mîngi. Bîanî, lo sâra sïönî-bê.
+ + +
+ + +
ek
+
+
(être) méchant
+
+
gemein, böse (sein)
+
+
mean, wicked
+
+ +
0305
+
+
+
+ + +
gi nyama
+
+ + + + + + + + +jagen +hunt +faire la chasse + + + + +
tl
+
+
faire la chasse
+
+
hunt
+
+
jagen
+
+ +
0398
+
+
+
+ + +
na ôko ngôi nî
+
+ + +meanwhile +en même temps + +
+ + +
sarapandëe
+
+ + + + +Zimmermann +carpenter +charpentier + +
jl & sc & lb
+
+ +
mle-0758
+
+
+
+ + +
balêôko na okü
+
+ + + + + + + + + + + + +fünfzehn (15) +fifteen (15) +quinze (15) + + +
tl
+
+
fifteen (15)
+
+
fünfzehn (15)
+
+
quinze (15)
+
+ +
1604
+
+
+
+ + +
forôto
+
+ + +
either animal or human, a child too young to live without care
+
+ +
???
+
+ + + +Fötus +fetus +fœtus + + +
tl
+
+
fetus
+
+
fœtus
+
+
Fötus
+
+ +
0331
+
+
+ + + +Baby +baby +bébé +
baby
+
+
Baby
+
+
bébé
+
+
+
+ + +
pörö tî yângâ
+
+ + + + + + + + +Lippe +lip +lèvre + + +
tl
+
+
lèvre
+
+
lip
+
+
Lippe
+
+ + +
0016
+
+
+
+ + +
ndeke tî tëngö âfüngö yê
+
+ + + + + + + + + + + + + + + + + + + + +Geier +vulture +vautour + + +
tl
+
+
Geier
+
+
vautour
+
+
vulture
+
+ + +
1057
+
+
+
+ + +
gônda
+
+ + +
LB supports both tonal patterns
+
+ +
go.nda
+ +
3.1 / 1.1
+
+
+ + + +gratulieren +congratulate +féliciter + + +
ek
+
+
congratulate
+
+
féliciter
+
+
gratulieren
+
+ +
0477
+
+
+ + + +loben +praise +louer + + +
tl
+
+
loben
+
+
louer
+
+
praise
+
+ +
0476
+
+
+ + + +Lob +praise +louange + + +
tl
+
+
Ehre, Lob
+
+
louange
+
+
praise
+
+ + +
0475
+
+
+ + + +Pracht, Herrlichkeit, Ruhm +splendour, glory +splendeur, gloire + + +
tl
+
+
Pracht, Herrlichkeit, Ruhm
+
+
splendeur, gloire
+
+
splendour, glory
+
+ +
1575
+
+
+
+ + +
buä
+
+ + + + +Priester (katholisch) +priest (Catholic) +prêtre (catholique) + + + + +
ek
+
+
Priester (katholisch)
+
+
+
+ + +
dulëe tî fuku nî
+
+ + + + + + + + + + + + +Milchpulver +powdered milk +lait en poudre + + +
tl
+
+
lait en poudre
+
+
Milchpulver
+
+
+
+ + +
sanzu
+
+ + + + + + + +Eiter +pus +pus + +
0221
+
+
+
+ + +
siri tî li
+
+ + + + + + + + + + + + +Laus +louse +pou (de tête) + + +
tl
+
+
Laus
+
+
louse
+
+
pou (de tête)
+
+ +
1119
+
+
+
+ + +
gbôto mê
+
+ + + + + + + + +warnen +warn +avertir + + + + +
ek
+
+
avertir
+
+
warn
+
+
warnen
+
+
+ + + +drohen +threaten +menacer +
drohen
+
+
menacer
+
+
threaten
+
+
+
+ + +
buba ngo
+
+ + + + + + + +abtreiben +abort a baby +avorter + +
abtreiben
+
abort a baby [Lit.: ruin pregnancy]
+
provoquer un avortement
+
+ + +
ek
+
+
abtreiben
+
+
avorter
+
+
+
+ + +
kate tî bongö
+
+ + + + + + + + + + + +Hemd +shirt +chemise + + + + +
ek
+
+
chemise
+
+
Hemd
+
+
shirt
+
+ +
0542
+
+
+
+ + +
mbô
+
+ + +
mbo / mboo
+ +
3 / 31
+
+
+ + + +abwishen; löschen +wipe off; erase (by wiping) +essuyer; effacer (en essuyant) + +
+ + +
sâra tembe
+
+ + + + + + + + + + + +wetteifern, konkurrieren +compete, vie +rivaliser, disputer, se disputer + + +
ek
+
+
rivaliser
+
+
wetteifern, konkurrieren
+
+ +
mle-0994
+
+
+ + + +herausfordern +challenge +défier + + +
ek
+
+
challenge
+
+
défier
+
+
herausfordern
+
+
+
+ + +
zo tî yângâ-ûse
+
+ + + + + + + + + + + +Heucheler +hypocrite +hypocrite + + + + +
ek
+
+
Heucheler
+
+
hypocrite
+
+
hypocrite
+
+
+ + + +Lügner +liar +menteur + + +
ek
+
+
liar
+
+
Lügner
+
+
menteur
+
+
+
+ + +
zo tî goigôi
+
+ + +
zo ti gɔi.gɔi
+ +
1 1 1.3
+
+
+ + + +Faulenzer +lazy person +paresseux, fainéant + +
mle-2768
+
+
+
+ + +
bûngbi terê ndo ôko
+
+ + + + + + + + + + + + + + + + + + + + +beisammen, zusammen (sein) +together (be) +ensemble (être) + +
Âla bûngbi terê ndo ôko tî te kôbe.
+ +
They were together to eat food.
+
Ils sont ensembles pour prendre un repas.
+
+
+ + +
tl
+
+
(être) ensemble
+
+
beisammen, zusammen (sein)
+
+
together
+
+ +
0416
+
+
+
+ + +
gi yângâ
+
+ + + + + + + + + + + +provozieren +provoke +provoquer + + + + +
ek
+
+
provoke
+
+
provoquer
+
+
provozieren
+
+
+
+ + +
yêkpâ
+
+ + + + +Blitz +lightning +éclair + +
Blitz
+
+
éclair
+
+
lightning
+
+ + +
1334
+
+
+
+ + +
zî mbênî mbâgë nî
+
+ + + + + + + + + + + + +subtrahieren, abziehen +subtract, take away +soustraire, diminuer + + +
tl
+
+
soustraire, diminuer
+
+
subtract, take away
+
+
subtrahieren, abziehen
+
+ +
1628
+
+
+
+ + +
+
+ + + + +ankommen +arrive +arriver + + +
tl
+
+
ankommen
+
+
arrive
+
+
arriver
+
+ +
1402
+
+
+ + + +erscheinen +appear +apparaître +
apparaitre
+
+
appear
+
+
erscheinen
+
+
+ + + +geschehen +happen +se passer + +
mle-2244
+
+
+
+ + +
balëmiombe
+
+ + +
ba.le.mi.ɔ.mbe / ba.le.mi.a.mbe
+ +
1.2.1.1.1
+
+
+ + + +achtzig (80) +eighty (80) +quatre-vingts (80) + + +
tl
+
+
achtzig (80)
+
+
eighty (80)
+
+
quatre-vingts (80)
+
+ +
1617
+
+
+
+ + +
ndöyê
+
+ + +
ndo.ye
+ +
2.3
+
+
+ + + +Liebe +love +amour + + +
ek
+
+
amour
+
+
Liebe
+
+
love
+
+
+ + + +lieben +love +aimer + + +
tl
+
+
aimer
+
+
lieben
+
+
love
+
+ +
0284
+
+
+
+ + +
zî yâ tî ...
+
+ + + + +auszunehmen +gut +étriper, vider + +
mle-2208
+
+
+
+ + +
+
+ + + + +
kɔ / kɔɔ
+ +
2 / 3 / 31
+
+
+ + + +pflücken +pick +cueillir + + + + +
tl
+
+
cueillir
+
+
pflücken
+
+
pick
+
+ +
0759
+
+
+ + + +ernten, sammeln (Honig) +harvest, collect (honey from hive) +cueillir (le miel) + + +
tl
+
+
cueillir (le miel)
+
+
ernten, sammeln (Honig)
+
+
harvest, collect (honey from hive)
+
+ +
0760
+
+
+
+ + +
wü terê
+
+ + + + + + + + + + + + + + + +sich ausruhen +rest +se reposer + + +
ek
+
+
rest
+
+
se reposer
+
+
sich ausruhen
+
+ + +
0185
+
+
+
+ + +
dalembë
+
+ + + + +Botschaft +embassy +ambassade + + +
ek
+
+
ambassade
+
+
Botschaft
+
+
embassy
+
+
+
+ + +
tî hunzingo nî
+
+ + + + + + + + + + + + + + +endlich +finally +enfin + +
Tî hunzingo nî, na pekô tî ngbonga mîngi, lo sï.
+ +
Finally, after many hours, he arrived.
+
Enfin, après de nombreuses heures, il est arrivé.
+
+
+
+
+ + +
wafängö yäkä
+
+ + + + +Bauer +farmer +cultivateur + +
Bauer
+
+
cultivateur
+
+
farmer
+
+ + +
0396
+
+
+
+ + +
+
+ + + + +verkaufen +sell +vendre + + + + +
tl
+
+
sell
+
+
vendre
+
+
verkaufen
+
+ +
0821
+
+
+ + + +verraten +betray +trahir + + +
ek
+
+
betray
+
+
trahir
+
+
verraten
+
+ +
i-1028
+
+
+
+ + +
leke terê nî pendere
+
+ + +
Check expression: zî âkûtu na terê tî mbênî yê
+
+ + + + + + + + + + + + + + + +glätten +make smooth +rendre lisse, lisser + + +
tl
+
+
glätten
+
+
make smooth
+
+
rendre lisse, lisser
+
+ +
1543
+
+
+
+ + +
gbangba
+
+ + + + +explodieren +explode +s'exploser + + +
ek
+
+
explode
+
+
explodieren
+
+
s'exploser
+
+
+ +ausser Kontrolle, unbändig +out of control +incontrôlable + + +
ek
+
+
ausser Kontrolle, unbändig
+
+
incontrôlable
+
+
+
+ + +
+
+ + + + +versuchen zu +try to, attempt to +essayer de + + +
ek
+
+
versuchen zu
+
+
+ + + +betteln +beg +quémander + + +
ek
+
+
beg
+
+
betteln
+
+
quémander
+
+ +
0831
+
+
+
+ + +
nginza
+
+ + + + +Geld +money +argent, monnaie + + +
tl
+
+
argent, monnaie
+
+
Geld
+
+
money
+
+ +
0817
+
+
+
+ + +
gbadôra
+
+ + +
gba.do.ɾa
+ +
1.3.1 / 1.2.1
+
+
+ + + +Heuschrecke +locust +criquet migrateur, locuste + + +
tl
+
+
criquet migrateur, locuste
+
+
Heuschrecke
+
+
locust
+
+ +
1134
+
+
+
+ + +
ngbanga tî nyen
+
+ + + + + + + + +warum? +why? +pourquoi ? + +
Mo pîka lo ngbanga tî nyen?
+ +
Why did you hit him/her?
+
+
+ + +
tl
+
+
pourquoi ?
+
+
warum?
+
+
why?
+
+ +
1688
+
+
+
+ + +
fûta
+
+ + + + +bezahlen +pay +payer + + +
tl
+
+
bezahlen
+
+
pay
+
+
payer
+
+ +
0828
+
+
+ + + +Lohn +wages +salaire + + +
ek
+
+
Lohn
+
+
salaire
+
+
wages
+
+
+
+ + +
bê tî ... adë
+
+ + + + + + + + +sich beruhigen +calm down +apaisé (être) + + + + +
ek
+
+
calm down
+
+
être apaisé
+
+
sich beruhigen
+
+
+
+ + +
wakängö yê
+
+ + + + + + + + + + + + +Verkäufer +seller +vendeur + + +
ek
+
+
seller
+
+
vendeur
+
+
Verkäufer
+
+ +
0403
+
+
+
+ + +
+
+ + + + +hören +hear +entendre + + + + + + +
tl
+
+
entendre
+
+
hear
+
+
hören
+
+ +
0134
+
+
+ + + +zuhören +listen +écouter + + +
tl
+
+
écouter
+
+
listen
+
+
zuhören
+
+ +
0135
+
+
+ + + +glauben +believe +croire + + +
ek
+
+
believe
+
+
croire
+
+
glauben
+
+ +
0253
+
+
+ + + +verstehen +understand +percevoir + +
Mbï mä yâ nî.
+ +
Ich verstehe
+
I understand
+
J'ai compris
+
+
+ + +
ek
+
+
percevoir
+
+
understand
+
+
verstehen
+
+
+ + + +spüren +sense +sentir +
sense
+
+
sentir
+
+
spüren
+
+
+
+ + +
bongö tî kânga na môlengê
+
+ + + + + + + + + + + + + + + + +(Baby-)Tragtuch +baby sling +écharpe (pour porter bébé) + + +
tl
+
+
(Baby-)Tragtuch
+
+
baby sling
+
+
écharpe (pour porter bébé)
+
+ +
0547
+
+
+
+ + +
dëngö bä
+
+ + + + + + + +Eid +oath +serment + + +
tl
+
+
Eid
+
+
oath
+
+
serment
+
+ +
0459
+
+
+
+ + +
mbanga
+
+ + + + +Norden +north +nord + + +
tl
+
+
nord
+
+
Norden
+
+
north
+
+ +
1658
+
+
+
+ + +
môlengê tî ngäsa
+
+ + + + +Kitz +kid +chevreau + +
chevreau
+
+
kid
+
+
Kitz
+
+ + +
0968
+
+
+
+ + +
li tî mabôko
+
+ + + + + + + + + + + + + + + +Finger +finger +doigt + +
doigt
+
+
finger
+
+
Finger
+
+ +
0059
+
+
+
+ + +
sôo
+
+ + +
soo
+ +
3.1
+
+
+ + + +Eimer, Kübel +bucket, pail +seau + + +
tl
+
+
bucket, pail
+
+
Eimer, Kübel
+
+
seau
+
+ +
0627
+
+
+
+ + +
dëbä terê
+
+ + + + + + + + +einen Eid schwören +swear an oath +faire une imprécation + +
schwören (unter Androhung der Strafe bei Eidbruch)
+
swear an oath under penalty of consequences
+
faire une imprécation, jurer
+
+ + +
ek
+
+
einen Eid schwören
+
+
+
+ + +
törö
+
+ + +
tɔ.ɾɔ
+ +
2.2
+
+
+ + + +Gespenst, Geist +ghost, spirit +esprit d'un défunt, revenant + + +
ek
+
+
esprit d'un défunt, revenant
+
+
Gespenst, Geist
+
+
ghost, spirit
+
+ + +
0909
+
+
+ + + +Gespenst (sichtbare Erscheinung) +ghost (visible apparition) +spectre (apparition visible) + + +
tl
+
+
Gespenst (sichtbare Erscheinung)
+
+
ghost (visible apparition)
+
+
spectre (apparition visible)
+
+ + +
0909
+
+
+
+ + +
pîka sînga
+
+ + + + + + + + + + + +telefonieren +to phone +téléphoner + + + + +
ek
+
+
telefonieren
+
+
téléphoner
+
+
+ + + +kommunizieren, etwas mitteilen +communicate +communiquer + + +
ek
+
+
communicate
+
+
communiquer
+
+
kommunizieren, etwas mitteilen
+
+
+
+ + +
sâra mayële
+
+ + + + + + + + + + + + +so tun, als ob +pretend +faire semblant + + +
tl
+
+
faire semblant
+
+
pretend
+
+
so tun, als ob
+
+ +
0299
+
+
+
+ + +
tî bübängö yê
+
+ + + + + + + + + + + + + + + + + +destruktiv +destructive (be) +destructeur, destructrice (être) + + + + + +
+ + +
längö (na sêse)
+
+ + + + + + + + + + + + +sich hinlegen +lying down (be) +couché (être) + + +
tl
+
+
(être) couché
+
+
lying down
+
+
sich hinlegen
+
+ +
0177
+
+
+
+ + +
buba maseka wâlï
+
+ + + + + + + + +entjungfern +take a young woman's virginity +prendre la virginité + + + + +
ek
+
+
entjungfern
+
+
+
+ + +
mbänä
+
+ + + + +Gemeinheit +maliciousness +malice + + +
ek
+
+
Gemeinheit
+
+
malice
+
+
maliciousness
+
+
+
+ + +
kêtê kêtê
+
+ + + + + + + + +ganz wenig +a tiny bit +un tout petit peu + +
A sûru këkë nî kêtê kêtê.
+ +
The board was cut a tiny bit.
+
On a coupé la planche un tout petit peu.
+
+
+ + +
ek
+
+
ganz wenig
+
+
+
+ + +
yôro na yâ tî
+
+ + + + + + + + + + + + +eintauchen +dip +plonger, tremper (dans l'eau) + + +
tl
+
+
dip
+
+
eintauchen
+
+
plonger, tremper (dans l'eau)
+
+ +
1485
+
+
+
+ + +
yömbö
+
+ + + + +Parfüm +perfume +parfum + + +
ek
+
+
parfum
+
+
Parfüm
+
+
perfume
+
+
+
+ + +
daä
+
+ + + + +da (sein) +there (be) +là (être) + +
ayeke daä.
+ +
es ist vorhanden
+
there is some (on hand)
+
il y en a
+
+
+ +
Mo yeke daä?
+ +
Wie geht es dir?
+
How are you?
+
Ça va ?
+
+
+ + +
ek
+
+
da (sein)
+
+
+
+
+ + + +enthalten sein +contained (be) +contenu (être) + +
mle-1073
+
+
+
+ + +
tembe
+
+ + + + +Konkurenz, Rivalität +competition, rivalry +concurrence, rivalité + + +
ek
+
+
Konkurenz, Rivalität
+
+ +
i-889
+
+
+
+ + +
girisa (yê)
+
+ + +
girisa
+ +
+ + + + + + + +vergessen +forget +oublier + + +
tl
+
+
forget
+
+
oublier
+
+
vergessen
+
+ +
0266
+
+
+ + + +etwas verlieren +lose +perdre + + +
tl
+
+
etwas verlieren
+
+
lose
+
+
perdre
+
+ +
1473
+
+
+ + + +in den roten Zahlen sein +lose money, be in the red +faire un déficit + + +
i-766
+
+
+ + + +nicht erkennen +fail to recognize +ne pas reconnaître + + +
ek
+
+
nicht erkennen
+
+
+
+ + +
da
+
+ + + + +gegenwärtig; existieren +present; exist +présent; existe + + +
ek
+
+
existieren
+
+
gegenwärtig
+
+
+
+ + +
bûngbi ndo ôko
+
+ + + + + + + + + + + + + + + + +(ver-)sammeln, zusammenhäufen +gather +rassembler, ramasser + + +
tl
+
+
(ver-)sammeln, zusammenhäufen
+
+
gather
+
+
rassembler, ramasser
+
+ +
1465
+
+
+
+ + +
ndo sô ngû asua na ngangü
+
+ + + + + + + + + + + + + + + + + + + + +Strömung +current (river, stream) +courant + + +
tl
+
+
courant
+
+
current (river, stream)
+
+
Strömung
+
+ + +
1294
+
+
+
+ + +
ngû-lavu
+
+ + + + + + + + +Honig +honey +miel + + +
ek
+
+
honey
+
+
Honig
+
+
miel
+
+ +
1156
+
+
+
+ + +
hömbä
+
+ + + + + +
ho.mba / o.mba / wo.mba
+ +
2.2
+
+
+ + + +Tante väterlicherseits +paternal aunt (father's sister) +tante paternelle + + +
ek
+
+
aunt (paternal)
+
+
tante paternelle
+
+
Tante väterlicherseits
+
+ + +
0351
+
+
+
+ + +
gbôto längö
+
+ + + + + + + + + + + + +schnarchen +snore +ronfler + + +
tl
+
+
ronfler
+
+
schnarchen
+
+
snore
+
+ +
0108
+
+
+
+ + +
yê tî ngangü
+
+ + + + +Gewalt +violence +violence + +
+ + +
son
+
+ + + + + +
sɔ̰
+ +
1
+
+
+ + + +schmerzen +hurt +faire mal + + +
ek
+
+
faire mal
+
+
hurt
+
+
schmerzen
+
+ + +
0231
+
+
+
+ + +
tukîa
+
+ + + + +Baumwolle +cotton +coton + + +
Gossypium spp.
+
+ +
tl
+
+
Baumwolle
+
+
coton
+
+
cotton
+
+ +
1244
+
+
+
+ + +
âde
+
+ + + + +noch nicht +not yet +pas encore + +
Âde lo sï pëpe.
+ +
He has not yet come.
+
+
+ + +
ek
+
+
noch nicht
+
+
+
+ + +
âkûngbâ
+
+ + + + +Hab und Gut +belongings +biens, possessions + + +
tl
+
+
belongings
+
+
biens, possessions
+
+
Hab und Gut
+
+ +
0811
+
+
+
+ + +
sâra
+
+ + + + +handeln, machen +act, do +faire, agir + + +
tl
+
+
act, do
+
+
faire, agir
+
+
handeln, machen
+
+ +
0702
+
+
+ + + +bauen, fabrizieren +build +construire, bâtir + + +
tl
+
+
bauen, fabrizieren
+
+
build
+
+
construire, bâtir
+
+ +
0685
+
+
+ + + +(er-)schaffen, fabrizieren +create +créer + + +
ek
+
+
(er-)schaffen, fabrizieren
+
+
create
+
+
créer
+
+
+ + + +Bewegung +movement +mouvement + + +
tl
+
+
Bewegung
+
+
mouvement
+
+
movement
+
+ +
1398
+
+
+
+ + +
ndo tî tüküngö zëndë
+
+ + + + + + + + + + + + + + + + +Abfallhaufen, Müllhalde +garbage dump +dépotoir, " poubelle " + + +
tl
+
+
Abfallhaufen, Müllhalde
+
+
dépotoir, " poubelle "
+
+
garbage dump
+
+ +
0682
+
+
+
+ + +
nyama tî ngîâ
+
+ + + + + + + + + + + + +Fledermaus +bat +chauve-souris + + +
tl
+
+
bat
+
+
chauve-souris
+
+
Fledermaus
+
+ +
1019
+
+
+
+ + +
tôndö
+
+ + +
to.ndo
+ +
3.2 / 2.2 [lb]
+
+
+ + + +Obstsorte +local fruit +fruit local, Aframomum stipulatum + + +
ek
+
+
Obstsorte
+
+
+
+ + +
mû pekô tî
+
+ + + + + + + + +(jemandem) nachfolgen +follow +suivre + + +
tl
+
+
(jemandem) nachfolgen
+
+
follow
+
+
suivre
+
+ +
0503
+
+
+
+ + +
kandâa
+
+ + + + +trotzdem, allerdings, dennoch +whereas, although +or, cependant + + +
ek
+
+
trotzdem, allerdings, dennoch
+
+
+
+ + +
zîa kâmba (tî gbû na nyama)
+
+ + + + + + + + + + + + + + + + + + + + +(eine Falle) stellen +set (trap) +tendre (un piège) + + +
tl
+
+
(eine Falle) stellen
+
+
set (trap)
+
+
tendre (un piège)
+
+ + +
0792
+
+
+
+ + +
mamâ tî kôndo
+
+ + + + + + + + + + + + +Henne +hen +poule + + +
tl
+
+
hen
+
+
Henne
+
+
poule
+
+ +
0976
+
+
+
+ + +
kêtê yê
+
+ + + + +einfach +simple (be) +simple, élémentaire (être) + +
Dïköngö mbëtï ayeke kêtê yê sêngê.
+ +
Reading is simple.
+
Lire, c'est facile.
+
+
+ +
sc [2 Ki 3.18]
+
+ +
mle-4340
+
+
+
+ + +
na mbênî bï
+
+ + + + + + + + + + + + + + +eine Nacht +one night +une nuit + +
Na mbênî bï, mbï längö nzönî pëpe.
+ +
One night, I did not sleep well.
+
Une nuit, je n'ai pas bien dormi.
+
+
+
+
+ + +
kpöka
+
+ + +
kpo.ka
+ +
2.1
+
+
+ + + +Hacke +hoe +houe + + +
tl
+
+
Hacke
+
+
hoe
+
+
houe
+
+ +
0752
+
+
+
+ + +
pekô tî bêkombïte
+
+ + + + + + + + +Nachmittag +afternoon +après-midi + + +
tl
+
+
afternoon
+
+
après-midi
+
+
Nachmittag
+
+ +
1380
+
+
+
+ + +
taâ tënë
+
+ + + + + + + + + + + + +Wahrheit +truth +vérité + +
Lo gä tî fa tâtënë tî Nzapä.
+ +
He came to teach the truth of God.
+
+
+ + +
tl
+
+
truth
+
+
vérité
+
+
Wahrheit
+
+ +
1579
+
+
+ + + +wirklich, tatsächlich +really, truly +vraiment, réellement + +
Tâtënë, aîri nginza tî RCA "CFA".
+ +
Truly, the money of CAR is called "CFA".
+
+
+ + +
tl
+
+
really, truly
+
+
vraiment, réellement
+
+
wirklich, tatsächlich
+
+ +
1695
+
+
+
+ + +
+
+ + + + +nähen +sew +coudre + + +
tl
+
+
coudre
+
+
nähen
+
+
sew
+
+ +
0725
+
+
+ + + +(eine Wunde) nähen +suture +suturer + + +
ek
+
+
(eine Wunde) nähen
+
+
suture
+
+
suturer
+
+
+ + + +weben +weave +tisser + + +
tl
+
+
tisser
+
+
weave
+
+
weben
+
+ +
0731
+
+
+
+ + +
mäïngö
+
+ + +
ma.i.ngɔ
+ +
2.2.2
+
+
+ + + +Entwicklung +growth +croissance + + +
ek
+
+
croissance
+
+
Entwicklung
+
+
growth
+
+
+
+ + +
yeke nzönî
+
+ + + + + + + + + + +brav, gut (sein) +good (be) +bon (être) + +
Nzapä ayeke nzönî mîngi. Lo mû na ï nzönî kôbe lâ na lâ.
+ +
God is very good. He gives us food every day.
+
+
+ + +
tl
+
+
(être) bon
+
+
brav, gut (sein)
+
+
good
+
+ +
1576
+
+
+
+ + +
balëe
+
+ + + + +Besen +broom +balai + + +
tl
+
+
balai
+
+
Besen
+
+
broom
+
+ +
0734
+
+
+
+ + +
fige
+
+ + + + +Feige +fig +figue + + +
Ficus spp.
+
+ +
tl
+
+
Feige
+
+
fig
+
+
figue
+
+ +
1217
+
+
+
+ + +
fa pekô tî tënë
+
+ + + + + + + + +Rechenschaft ablegen +give an account +rapporter un fait + + +
ek
+
+
Rechenschaft ablegen
+
+
+
+ + +
pekô tî gerê
+
+ + + + + + + + + + + + +Ferse +heel +talon + + +
tl
+
+
Ferse
+
+
heel
+
+
talon
+
+ +
0071
+
+
+
+ + +
pete gôro
+
+ + + + + + + + + + + +bestechen +bribe +corrompre + + +
ek
+
+
bestechen
+
+
bribe
+
+
corrompre
+
+ +
mle-0642
+
+
+
+ + +
küä
+
+ + + + +Haar, Fell +hair, fur +cheveux, poils +
Haar, Fell
+
+
+
+ + +
keremba
+
+ + +
from Lingala?
+
+ + + +Sparverein +savings society +association de cotisation + + +
ek
+
+
Sparverein
+
+
+
+ + +
sâra gôbo
+
+ + + + + + + + + + + +betteln +beg, mooch +mendier + +
betteln, anderen auf der Tasche liegen
+
beg, mooch, be a burden to others
+
mendier, vivre au crochet des autres
+
+ + +
ek
+
+
beg, mooch
+
+
betteln
+
+
mendier
+
+ +
0831
+
+
+ + + +anderen auf der Tasche liegen +be a burden to others +vivre au crochet des autres + + +
ek
+
+
anderen auf der Tasche liegen
+
+
+
+ + +
+
+ + +
+ +
3
+
+
+ + + +Zeichen +character, personality +caractère + + +
i-136
+
+
+
+ + +
fa lêgë
+
+ + + + + + + + +führen, leiten +lead, guide +diriger, guider + + + + +
tl
+
+
diriger, guider
+
+
führen, leiten
+
+
lead, guide
+
+ +
0502
+
+
+ + + +anweisen +instruct +instruire + + +
ek
+
+
anweisen
+
+
instruct
+
+
instruire
+
+
+ + + +steuern +steer +diriger, conduire + + +
tl
+
+
diriger, conduire
+
+
steer
+
+
steuern
+
+ +
1437
+
+
+
+ + +
têmë
+
+ + + + + + + +Fels, Stein +rock, stone +rocher, pierre +
Fels, Stein
+
+
rocher, peirre
+
+
rock, stone
+
+ + +
1271
+
+
+ + + +Kieselstein +pebble +caillou + + +
1272
+
+
+
+ + +
sê-gbënë
+
+ + + + +
sɛ.gbɛ.nɛ
+ +
3.2.2
+
+
+ + + +Zustand +state +état (de quelque chose) + +
lb
+
+ +
mle-4571
+
+
+
+ + +
mînî
+
+ + + + +Katze +cat +chat + + +
ek
+
+
cat
+
+
chat
+
+
Katze
+
+ +
0993
+
+
+
+ + +
bi gerê na ndö tî
+
+ + + + +schritt über, überbrücken +step over, step across, straddle +enjamber + +
i-346
+
+
+
+ + +
zî mbâgë nî
+
+ + + + + + + + + + + + +vermindern, abnehmen +decrease +diminuer + + +
tl
+
+
decrease
+
+
diminuer
+
+
vermindern, abnehmen
+
+ +
1630
+
+
+ + + +verringern, reduzieren +diminish +diminuer, réduire + + +
tl
+
+
diminish
+
+
diminuer, réduire
+
+
verringern, reduzieren
+
+ +
1510
+
+
+
+ + +
zö kêtê
+
+ + + + + + + + + + + + +(ver-)sengen +singe +brûler légèrement, roussir + + +
tl
+
+
(ver-)sengen
+
+
brûler légèrement, roussir
+
+
singe
+
+ +
1500
+
+
+
+ + +
fa ïrï
+
+ + + + + + + + + + + +nennen +name +nommer + + +
ek
+
+
name
+
+
nennen
+
+
nommer
+
+
+
+ + +
ndönî
+
+ + +
ndo.ni
+ +
2.3
+
+
+ + + +übermäßig +excessively +excessivement + +
Mawa tî mbï ahö ndönî. [LB]
+ +
My suffering is excessive.
+
Ma misère est trop grande.
+
+
+
excessively
+
+
excessivement
+
+
übermäßig
+
+
+
+ + +
nzêen
+
+ + + + +entmutigt (sein) +discouraged (be) +découragé (être) + + +
ek
+
+
entmutigt (sein)
+
+
+
+ + +
balëûse na omenë
+
+ + + + +sechsundzwanzig (26) +twenty-six (26) +vingt-six (26) + +
sechsundzwanzig (26)
+
+
twenty-six (26)
+
+
vingt-six (26)
+
+ +
chan_04
+
+
+
+ + +
hôn
+
+ + +
hɔ̰ / hɔ̰ɔ̰
+ +
3 / 31
+
+
+ + + +Nase +nose +nez + + + + +
tl
+
+
Nase
+
+
nez
+
+
nose
+
+ +
0011
+
+
+
+ + +
mânga tî hôn
+
+ + + + + + + + +Schnupftabak +snuffing tobacco +tabac à priser + + +
ek
+
+
Schnupftabak
+
+
+
+ + +
sêlörö
+
+ + +
sɛ.lɔ.ɾɔ
+ +
3.2.2
+
+
+ + + +Geschwindigkeit +speed +vitesse + + +
ek
+
+
Geschwindigkeit
+
+
speed
+
+
vitesse
+
+ + +
1418
+
+
+
+ + +
täpandë
+
+ + + + +Beispiel +example +exemple + + +
ek
+
+
Beispiel
+
+
example
+
+
exemple
+
+
+
+ + +
kânga lêgë
+
+ + + + +verbieten +forbid +interdire + +
mle-1950
+
+
+
+ + +
bâgara sô a zî korobô tî lo
+
+ + + + + + + + + + + + + + + +Stier +steer +bouvillon, bœuf châtré + + +
tl
+
+
bouvillon, bœuf châtré
+
+
steer
+
+
Stier
+
+ +
0962
+
+
+
+ + +
gbenyôgbïä
+
+ + +
gbɛ.nyo.gbia
+ +
1.3.22
+
+
+ + + +Minister +government minister +ministre + + +
ek
+
+
Minister
+
+
ministre
+
+
+
+ + +
sêngê zo
+
+ + + + + +
sɛ.ngɛ zo
+ +
3.3 1
+
+
+ + + +gewöhnliche Person +ordinary person +homme ordinaire + + + + +Strolch +good-for-nothing +vaurien + +
+ + +
söngö yâ tî düngö
+
+ + + + +Kontraktion +contraction +contraction (poussée abdominale) + +
i-220
+
+
+
+ + +
kamâta
+
+ + + + +erfassen +grasp +saisir + + +
ek
+
+
erfassen
+
+
grasp
+
+
saisir
+
+
+ + + +halten +hold +tenir + + +
ek
+
+
halten
+
+
hold
+
+
tenir
+
+ +
1426
+
+
+ + + +nehmen +take +prendre + + +
tl
+
+
nehmen
+
+
prendre
+
+
take
+
+ +
1422
+
+
+
+ + +
lavu
+
+ + + + +Biene +bee +abeille + + +
ek
+
+
abeille
+
+
bee
+
+
Biene
+
+ +
1143
+
+
+
+ + +
bâa kobêla tî zo
+
+ + + + + + + + +einen Kranken untersuchen +examine a patient +examiner un malade + + +
ek
+
+
einen Kranken untersuchen
+
+
+
+ + +
kpëngbä-bê
+
+ + + + + + + + +Hartherzigkeit, Halsstarrigkeit +hardness of heart, obstinacy +endurcissement du cœur + + + + +
ek
+
+
Hartherzigkeit, Halsstarrigkeit
+
+
+ + + +Mut +courage +courage + + +
ek
+
+
courage
+
+
courage
+
+
Mut
+
+
+
+ + +
môlengê tî wâlï
+
+ + + + + + + + + + + + +Mädchen, Tochter +girl, daughter +fille, fille + +
fille, fille
+
+
girl, daughter
+
+
Mädchen, Tochter
+
+ +
0356
+
+
+
+ + +
ndokua
+
+ + +
ndo.kua
+ +
1.1
+
+
+ + + +Arbeitsplatz +workplace +place de travail + + +
ek
+
+
Arbeitsplatz
+
+
workplace
+
+
+
+ + +
pendere
+
+ + + + +gut aussehend, schön +good-looking (be) +beau (être) + +
Âkôlï ndeke ayeke pendere ahön âwâlï.
+ +
Male birds are better looking than females.
+
+
+ + +
tl
+
+
beau
+
+
good-looking
+
+
gut aussehend, schön
+
+ +
1582
+
+
+ + + +Schönheit +beauty +beauté + + +
ek
+
+
beauté
+
+
beauty
+
+
Schönheit
+
+
+ + + +Jugend +youth, young person +jeunesse + + +
ek
+
+
jeunesse
+
+
Jugend
+
+
+
+ + +
nyenye
+
+ + + + + + + +Januar +January +janvier + + +
ek
+
+
Januar
+
+
January
+
+
janvier
+
+
+
+ + +
yongôro zo
+
+ + + + + + + + + + + + +Riese +giant, tall person +géant + + +
tl
+
+
géant
+
+
giant, tall person
+
+
Riese
+
+ +
0201
+
+
+
+ + +
lê tî mabôko
+
+ + + + + + + + + + + + +Handfläche +palm (of hand) +paume (de la main) + +
Handfläche
+
+
palm (of hand)
+
+
paume (de la main)
+
+ +
0058
+
+
+
+ + +
zo tî nzï
+
+ + + + + + + + + + + +Dieb +thief +voleur + + +
tl
+
+
Dieb
+
+
thief
+
+
voleur
+
+ +
0388
+
+
+
+ + +
îri tënë nzönî na ndo tî ...
+
+ + + + + + + + + + + + + + + + + + + + +segnen +bless +bénir +
bénir
+
+
bless
+
+
segnen
+
+
+
+ + +
këkë sô asûru yâ nî awe
+
+ + + + + + + + + + + + + + + + +Brett, Planke +plank +planche + + +
tl
+
+
Brett, Planke
+
+
planche
+
+
plank
+
+ + +
0720
+
+
+
+ + +
mamâ-kötä
+
+ + + + + + + + +ältere Schwester der Mutter +maternal aunt (mother's older sister) +sœur aînée de la mère + + +
tl
+
+
ältere Schwester der Mutter
+
+
aunt (maternal, mother's older sister)
+
+
sœur aînée de la mère
+
+ + +
0350
+
+
+
+ + +
längö na gîgî
+
+ + + + + + + + + + + +nicht zu Hause schlafen +sleep away from home +dormir chez d'autres + + + + +
ek
+
+
nicht zu Hause schlafen
+
+
+
+ + +
sô wa
+
+ + + + + + + + + + + + +welche(r)? +which (one)? +lequel ? + +
Sô wa anzere ahön?
+ +
Which one tastes best?
+
+
+ + +
tl
+
+
lequel ?
+
+
welche(r)?
+
+
which (one)?
+
+ + +
1685
+
+
+
+ + +
+
+ + + + +Ohr +ear +oreille + + +
tl
+
+
ear
+
+
Ohr
+
+
oreille
+
+ +
0013
+
+
+
+ + +
kôkôkô
+
+ + +
ko.ko.ko
+ +
3.3.3
+
+
+ + + +Ideophon für ‚Klopfen‘ +knock-knock +toc, toc, toc! + +
ek
+
+
Ideophon für ‚Klopfen‘
+
+
knock-knock
+
+
+
+ + +
yâ asï
+
+ + + + + + +satt (sein) +sated (be) +rassasié (être) + +
Lo te kôbe zûsuka yâ tî lo asï.
+ +
He ate until he was sated.
+
+
+ + +
tl
+
+
(être) rassasié
+
+
sated
+
+
satt (sein)
+
+ +
0180
+
+
+
+ + +
pätärä
+
+ + + + +Unterhaltung, Besprechung +discussion +discussion + + +
ek
+
+
discussion
+
+
discussion
+
+
Unterhaltung, Besprechung
+
+
+
+ + +
kangû
+
+ + + + +Kürbis-Schale, Kalebasse +gourd +calebasse + + +
& i-238
+
+ +
tl
+
+
calebasse
+
+
gourd
+
+
Kürbis-Schale, Kalebasse
+
+ +
0628
+
+
+
+ + +
zîa [bongö] na lâ tî tene ngû nî ahôle
+
+ + + + + + + + + + + + + + + + + + + + + + +trocknen (Kleider) +dry out (clothes) +sécher +
sécher
+
+
trocknen (Kleider)
+
+
+
+ + +
ngêrë
+
+ + + + +Preis, Kosten +price, cost +prix, coût + + +
tl
+
+
Preis, Kosten
+
+
price, cost
+
+
prix, coût
+
+ +
0825
+
+
+ + + +Wert +value, worth +valeur + + +
ek
+
+
valeur
+
+
Wert
+
+
+
+ + +
dîko
+
+ + +
di.kɔ
+ +
3.1
+
+
+ + + +zählen +count +compter + + + + +
tl
+
+
compter
+
+
count
+
+
zählen
+
+ +
1631
+
+
+
+ + +
tomâte
+
+ + +
to.ma.tɛ
+ +
1.3.1
+
+
+ + + +Tomate +tomato +tomate + + +
tl
+
+
tomate
+
+
Tomate
+
+
tomato
+
+ +
1219
+
+
+
+ + +
kakaûka
+
+ + + + +Dezember +December +décembre + + +
ek
+
+
December
+
+
décembre
+
+
Dezember
+
+
+
+ + +
na ndönî
+
+ + + + + + + + +über +on top, above +au-dessus + +
Ï montêe, ï montêe kötä hötö nî zûsuka ï sï na ndönî.
+ +
We climbed and climbed the big hill until we reached the top.
+
+
+ + +
ek
+
+
au-dessus
+
+
on top
+
+
über
+
+
+
+ + +
buba yâ tî tënë
+
+ + + + + + + +abbrechen +cancel +annuler + +
sc
+
+ +
mle-0733
+
+
+
+ + +
sâra mbänä
+
+ + + + + + + + + + + +etwas absichtlich Böses tun +do something maliciously or on purpose +faire exprès un acte méchant + + +
ek
+
+
etwas absichtlich Böses tun
+
+
+
+ + +
kugbë tî kâsa
+
+ + + + + + + + + + + +Gemüseblätter +vegetable leaves +feuilles de légumes + + +
ek
+
+
Gemüseblätter
+
+
+
+ + +
koso
+
+ + +
kɔ.sɔ
+ +
1.1
+
+
+ + + +Gamele +crawfish +crevette + +
crawfish
+
+
crevette
+
+
Gamele
+
+ +
1092
+
+
+
+ + +
gbägbärä
+
+ + + + +Rahmen (Haus) +frame (of house) +charpente (de maison) + +
Rahmen (Haus)
+
+ +
i-166
+
+
+ + + +Skelett +skelton +squelette +
Skelett
+
+
skelton
+
+
squelette
+
+
+ + + +Diagramm +diagram +schéma +
diagram
+
+
Diagramm
+
+
schéma
+
+
+
+ + +
angelëe
+
+ + + + +Englisch +English +anglais + + +
ek
+
+
anglais
+
+
Englisch
+
+
English
+
+
+
+ + +
mawa
+
+ + + + +Elend, Leiden +misery, suffering +malheur, souffrance + +
Mawa asâra ï. Nzapä bâa mawa tî ï.
+ +
We are suffering. God have pity on us.
+
+
+ + +
ek
+
+
Elend, Leiden
+
+ +
i-964
+
+
+ + + +großes Unglück +big hardship, tragedy +grand malheur + +
i-483
+
+
+
+ + +
wü pupu na yâ tî ...
+
+ + +
Originally included "(didi)".
+
+ + + + + + + + + + + +(ein Horn) blasen +blow (horn) +souffler dans (un cor) + + +
tl
+
+
(ein Horn) blasen
+
+
blow (horn)
+
+
souffler dans (un cor)
+
+ +
0896
+
+
+
+ + +
lêngua
+
+ + + + +Juli +July +juillet + + +
ek
+
+
juillet
+
+
Juli
+
+
July
+
+
+
+ + +
zî pörö tî terê tî këkë
+
+ + + + + + + + + + + + + + + + + + + + +entfernen (Rinde) +strip off (bark) +écorcer, enlever (l'écorce) + + +
tl
+
+
écorcer, enlever (l'écorce)
+
+
entfernen (Rinde)
+
+
strip off (bark)
+
+ +
1454
+
+
+
+ + +
zî kêtê këkë tî lü na mbênî ndo
+
+ + + + + + + + + + + + + + + + + + + + + + + + +verpflanzen, auspflanzen +transplant +transplanter, repiquer + + +
tl
+
+
transplant
+
+
transplanter, repiquer
+
+
verpflanzen, auspflanzen
+
+ + +
0749
+
+
+
+ + +
süäli
+
+ + + + +Haarnadel +hairpin +aiguille à cheveux + + +
ek
+
+
Haarnadel
+
+
hairpin
+
+
+
+ + +
zîa tî
+
+ + + + + + + + +aufhören +stop doing +arrêter de + +
Zîa tî gi tënë na lo.
+ +
Stop seeking a quarrel with him.
+
+
+ + +
ek
+
+
arrêter de
+
+
aufhören
+
+
stop doing
+
+ +
1505
+
+
+ + + +nicht tun +not do +ne pas faire + + +
ek
+
+
nicht tun
+
+
+
+ + +
bi (mbênî zo) na dû
+
+ + + + + + + + +jemanden irreführen +mislead someone +tromper quelqu'un + + +
ek
+
+
jemanden irreführen
+
+
mislead someone
+
+
tromper quelqu'un
+
+ + +
0507
+
+
+
+ + +
tûku ngû tî yângâ
+
+ + + + + + + + +spucken +spit +cracher + + +
tl
+
+
cracher
+
+
spit
+
+
spucken
+
+ + +
0111
+
+
+
+ + +
ndembö tî gerê
+
+ + + + + + + + +Fußball +soccer +football + + +
ek
+
+
football
+
+
Fußball
+
+
soccer
+
+
+ + + +Fußballspiel +soccer game +match de foot + + +
ek
+
+
Fußballspiel
+
+
+
+ + +
mafüta
+
+ + +
fr ling: mafûta [lb]
+
+ + + +Öl +oil +huile + + + + +
ek
+
+
huile
+
+
oil
+
+
Öl
+
+ +
0572
+
+
+ + + +Fett +fat +graisse + + +
ek
+
+
fat
+
+
Fett
+
+
graisse
+
+
+ + + +Sahne +cream +crème + +
i-252
+
+
+
+ + +
gä na
+
+ + + + + + + + +(mit-)bringen +bring +apporter, amener + + + + +
tl
+
+
(mit-)bringen
+
+
apporter, amener
+
+
bring
+
+ +
0856
+
+
+
+ + +
bi tumba na li tî
+
+ + + + +angreifen +attack +attaquer + +
i-41
+
+
+
+ + +
kângbi söngö
+
+ + + + + + + + + + + +Beziehungen abbrechen +break off relations +rompre les relations + + + + +
ek
+
+
Beziehungen abbrechen
+
+
+
+ + +
ndima
+
+ + + + +Geheimnis, Offenbarung +secret, revelation +secret, révélation +
Geheimnis, Offenbarung
+
+
+
+ + +
ngberere
+
+ + + + +Oktober +October +octobre + + +
ek
+
+
October
+
+
octobre
+
+
Oktober
+
+
+
+ + +
söngö yâ
+
+ + + + + + + + + + + +Bauchweh, Magenschmerzen +stomach ache, upset stomach +maux de ventre + + +
tl
+
+
Bauchweh, Magenschmerzen
+
+
maux de ventre
+
+
stomach ache, upset stomach
+
+ + +
0234
+
+
+
+ + +
mbï
+
+ + + + +ich +I +je + + +
tl
+
+
I
+
+
ich
+
+
je
+
+ +
1648
+
+
+ + + +mich, mir +me +moi, me + + +
ek
+
+
me
+
+
mich, mir
+
+
+ + + +selbst +self +le moi + + +
tl
+
+
le moi
+
+
selbst
+
+
self
+
+ +
0327
+
+
+
+ + +
kângame
+
+ + + + +BH +bra +soutien-gorge + + +
ek
+
+
BH
+
+
bra
+
+
soutien-gorge
+
+
+
+ + +
vulü
+
+ + + + + + + +Weiß +white (be) +blanc, blanche (être) + +
Yü gï vulü bongö nî.
+ +
Wear the white item of clothing.
+
Habille-toi avec les vêtements blancs.
+
+
+
Weiß
+
+
white
+
+
+
+ + +
ngûngbi
+
+ + +
ngu.ngbi
+ +
3.1
+
+
+ + + + + +Falte +crease +pli + +
mle-1169
+
+
+ + + +pleat + +
+ + +
sâra kötä bê
+
+ + + + + + + + + + + + + + + + +eifersüchtig, neidisch (sein) +jealous, envious (be) +jaloux, envieux (être) + +
Îtä tî lo awara kötä ndo. Ngbanga tî sô lo sâra kötä bê.
+ +
His brother got an important position. On account of this, he was jealous.
+
+
+ + +
tl
+
+
(être) jaloux, envieux
+
+
eifersüchtig, neidisch (sein)
+
+
jealous, envious
+
+ +
0307
+
+
+ + + +gierig (sein) +greedy (be) +avide, cupide (être) + +
Lo kângbi kôbe nî pëpe. Lo sâra kötä bê ahön ndönî.
+ +
He did not share the food. He was greedy.
+
+
+ + +
ek
+
+
avide
+
+
gierig
+
+
greedy
+
+ +
mle-2158
+
+
+
+ + +
makâko
+
+ + +
ma.ka.ko
+ +
1.3.1
+
+
+ + + +Affe +monkey +singe + + +
tl
+
+
Affe
+
+
monkey
+
+
singe
+
+ +
1001
+
+
+
+ + +
sukûla terê
+
+ + + + + + + + + + + + +sich waschen, baden +bathe, wash oneself +se laver + + +
tl
+
+
bathe, wash oneself
+
+
se laver
+
+
sich waschen, baden
+
+ +
0561
+
+
+
+ + +
na pöpö tî
+
+ + + + + + + + +in der Mitte +in the middle of +au milieu de + +
Töngana moyeu nî ayeke taâ na pöpö tî gerê nî pëpe, fadë velöo nî ayîngi.
+ +
If the hub is not right in the middle of the wheel, the bicycle will shake.
+
+
+ + +
ek
+
+
in der Mitte
+
+
+ + + +unter, zwischen, bei +among +parmi + +
Âtaba alï na pöpö tî âbâgara nî.
+ +
Sheep entered among the cattle.
+
+
+ + +
ek
+
+
among
+
+
parmi
+
+
unter, zwischen, bei
+
+
+ + + +zwischen +between +entre + +
Boali ayeke na pöpö tî Bangui na Bossembele.
+ +
Boali is between Bangui and Bossembele.
+
+
+ + +
tl
+
+
between
+
+
entre
+
+
zwischen
+
+ +
1675
+
+
+
+ + +
zîa ... na sêse
+
+ + + + +absetzen +set down +poser + +
i-800
+
+
+
+ + +
bïkua
+
+ + + + +Werktag +workday, weekday +jour de semaine + + +
ek
+
+
Werktag
+
+
+
+ + +
sâra mabôko na mabôko
+
+ + + + +zusammenarbeiten +collaborate +collaborer + +
mle-0940
+
+
+
+ + +
plase
+
+ + + + + +
+ + +
ngbum
+
+ + + + +heftig fallen +fall violently +tomber brusquement + +
sl & cm
+
+
heftig fallen
+
+
+
+ + +
korogbô
+
+ + + + + +
ko.ɾo.gbo
+ +
1.1.3 / 1.1.2 [lb]
+
+
+ + + +Hoden +testicle +testicule + + +
tl
+
+
Hoden
+
+
testicle
+
+
testicule
+
+ + +
0047
+
+
+
+ + +
sân-tî-tene
+
+ + + + +ohne daß +without that +sans que + +
ek
+
+
ohne daß
+
+
+
+ + +
kêtê terê
+
+ + + + + + + + + + +dünn, mager (sein) +thin (person) (be) +maigre, mince (une personne) (être) + +
Atâa lo te kôbe mîngi, lo ngbâ na kêtê terê lâ kûê.
+ +
Even if he eats lots of food, he remains thin.
+
+
+ + +
tl
+
+
(être) maigre, mince (une personne)
+
+
dünn, mager (sein)
+
+
thin (person)
+
+ +
0193
+
+
+
+ + +
kötä ngo
+
+ + + + + + + + + + + + +große (größte) Trommel +big(gest) drum +grand tambour + + +
tl
+
+
grand tambour
+
+
große (größte) Trommel
+
+ +
0885
+
+
+
+ + +
sâra gbägbä na terê tî
+
+ + + + + + + + + + + + + + + + +einzäunen +fence in +clôturer + + +
tl
+
+
clôturer
+
+
einzäunen
+
+
fence in
+
+ +
0677
+
+
+
+ + +
kîri na ...
+
+ + +
Was: kîri na nî
+
+ + + + + + + + + + + +zurückgeben, zurückbringen +return (tr), give back +rendre, renvoyer + + +
tl
+
+
rendre, renvoyer
+
+
return (tr), give back
+
+
zurückgeben, zurückbringen
+
+ +
0810
+
+
+
+ + +
mîngi
+
+ + + + +viel +a lot, many +beaucoup + + +
tl
+
+
a lot, many
+
+
beaucoup
+
+
viel
+
+ +
1639
+
+
+
+ + +
pëmbë tî bëkpä
+
+ + + + + + + +Hagel +hail +grêle + + +
tl
+
+
grêle
+
+
Hagel
+
+
hail
+
+ + +
1337
+
+
+
+ + +
meredêe
+
+ + + + +belästigen +bother +ennuyer + + +
ek
+
+
belästigen
+
+
bother
+
+
ennuyer
+
+ +
0506
+
+
+
+ + +
dïdïrï
+
+ + + + +Wespe +wasp +guêpe + + +
ek
+
+
guêpe
+
+
wasp
+
+
Wespe
+
+
+ + + +Maurer-Wespe +mud wasp +guêpe-maçon + + +
tl
+
+
guêpe-maçon
+
+
Maurer-Wespe
+
+
mud wasp
+
+ +
1144
+
+
+
+ + +
yeke na sïönî bê
+
+ + + + + + + + + + +böse (sein) +wicked (be) +méchant (être) + +
Lo sâra ngonzo hîo. Lo yeke na sïönî bê.
+ +
He gets angry quickly. He is wicked.
+
+
+ + +
tl
+
+
(être) méchant
+
+
böse (sein)
+
+
wicked
+
+ +
0305
+
+
+
+ + +
+
+ + +
+ +
2
+
+
+ + + +vibrieren, beben +shake +secouer + + + + +
ek
+
+
secouer
+
+
shake
+
+
vibrieren, beben
+
+
+ + + +auf etwas treten, trampeln +step on something, trample +piétiner, fouler aux pieds +
auf etwas treten, trampeln
+
+
+ + + +verzichten auf +give (something) up, not do anymore, quit doing +renoncer à + +
gfk-d
+
+ +
i-867
+
+
+
+ + +
dö na ndo tî terê
+
+ + + + +etwas auf etwas stapeln +stack +empiler + + +
+ + +
lê tî ... azä mîngi
+
+ + + + + + + + +jemandem schöne Augen machen, flirten +flirt, make sheep's eyes at someone +faire les yeux doux à quelqu'un, chercher à plaire + + + + +
ek
+
+
jemandem schöne Augen machen, flirten
+
+
+
+ + +
sêse sô akolêe
+
+ + + + + + + + + + + + +Ton +clay +argile + + +
tl
+
+
argile
+
+
clay
+
+
Ton
+
+ +
1277
+
+
+
+ + +
maseka-wâlï sô âde tî hînga kôlï pëpe
+
+ + + + + + + + + + + + + + + + + + + + +Jungfrau +virgin +vierge + + +
tl
+
+
Jungfrau
+
+
vierge
+
+
virgin
+
+ + +
0339
+
+
+
+ + +
sîi
+
+ + + + +Säge +saw +scie + + +
tl
+
+
Säge
+
+
saw
+
+
scie
+
+ +
0718
+
+
+
+ + +
yeke na lêgë tî särängö yê
+
+ + + + +gewöhnen Sie sich an +have the habit +avoir l'habitude + +
i-53
+
+
+
+ + +
balëûse na mbrâmbrâ
+
+ + + + +siebenundzwanzig (27) +twenty-seven (27) +vingt-sept (27) + +
siebenundzwanzig (27)
+
+
twenty-seven (27)
+
+
vingt-sept (27)
+
+ +
chan_05
+
+
+
+ + +
+
+ + + + +nehmen +take +prendre + + +
tl
+
+
nehmen
+
+
prendre
+
+
take
+
+ +
1422
+
+
+ + + +sich in etwas befinden, etwas enthalten, etwas beinhalten +contain, hold +contenir + + +
mle-1073
+
+
+
+ + +
mbeso
+
+ + +
mbe.so
+ +
1.1
+
+
+ + + +Vorfahren +ancestors, antiquity +ancêtres, antiquité + + +
ek
+
+
ancestors, antiquity
+
+
ancêtres, antiquité
+
+
Vorfahren
+
+ +
0342
+
+
+
+ + +
zîa terê tî lo na mabôko tî ...
+
+ + + + +aufgeben +surrender +capituler, se rendre + +
mle-4705
+
+
+
+ + +
hölëngö nyama
+
+ + +geräuchert +smoked (be) +fumé (être) + + + +
0607
+
+
+
+ + +
îri ngû
+
+ + + + + + + + + + + + +(Wasser) ausschöpfen +bail out water +vider l'eau, écoper + + +
ek
+
+
(Wasser) ausschöpfen
+
+
bail out water
+
+
vider l'eau, écoper
+
+ +
0854
+
+
+ + + +fischen (Ausschöpfmethode) +fish by bailing out water +pêcher en vidant l'eau + + +
ek
+
+
fischen (Ausschöpfmethode)
+
+
+
+ + +
wasïökpärï
+
+ + + + +Sünder +sinner +pécheur + + +
ek
+
+
pécheur
+
+
sinner
+
+
Sünder
+
+
+
+ + +
mêä
+
+ + + + + + +Zwilling +twin +jumeau, jumelle + + +
ek
+
+
jumeau, jumelle
+
+
twin
+
+
Zwilling
+
+ +
0333
+
+
+
+ + +
zî küä tî terê tî (ndeke)
+
+ + + + + + + + + + + + + + + + + + + + +rupfen, zupfen (Federn) +pluck (feathers) +plumer, arracher les plumes + + +
tl
+
+
pluck (feathers)
+
+
plumer, arracher les plumes
+
+
rupfen, zupfen (Federn)
+
+ + +
0602
+
+
+
+ + +
kroa
+
+ + +
kroa
+ +
11 / 12 [lb]
+
+
+ + + +Kreuz +cross +croix + + +
ek
+
+
croix
+
+
cross
+
+
Kreuz
+
+
+
+ + +
kugbë-sängbä
+
+ + + + +farn +fern +fougère + +
mle-1817
+
+
+
+ + +
kâmba tî turûngu
+
+ + + + + + + + + + + + +Nabelschnur +umbilical cord +cordon ombilical + + +
tl
+
+
cordon ombilical
+
+
Nabelschnur
+
+
umbilical cord
+
+ +
0038
+
+
+
+ + +
gbû kokö
+
+ + +
gbû kokô
+ +
+ + + + + + + + + + + + + + + + + + + + + + +intervenieren, vermitteln, Fürsprache einlegen +intercede, mediate +intercéder, servir d'intermédiaire + + +
tl
+
+
intercede, mediate
+
+
intercéder, servir d'intermédiaire
+
+
intervenieren, vermitteln, Fürsprache einlegen
+
+ +
0514
+
+
+ + + +beschützen, verteidigen +protect, defend +protéger, défendre + + +
tl
+
+
beschützen, verteidigen
+
+
protect, defend
+
+
protéger, défendre
+
+ +
0493
+
+
+
+ + +
kopo
+
+ + +
ko.po
+ +
1.1
+
+
+ + + +Tasse +cup +gobelet + + +
tl
+
+
cup
+
+
gobelet
+
+
Tasse
+
+ +
0622
+
+
+ + + +Blechdose, Konservendose +tin can +boîte de conserve + + +
ek
+
+
Blechdose, Konservendose
+
+
+
+ + +
naâmo
+
+ + +
???
+
+ + + +Strauß +ostrich +autruche + + + +
1053
+
+
+
+ + +
löndö
+
+ + +
lo.ndo
+ +
2.2
+
+
+ + + +aufstehen +get up, rise up +se mettre debout, se lever + +
Fadë ï löndö na kötä ndäpêrêrê.
+ +
We will get up very early in the morning.
+
+
+ + +
tl
+
+
aufstehen
+
+
get up, rise up
+
+
se mettre debout, se lever
+
+ + +
0151
+
+
+ + + +einen Ort verlassen +leave a place +quitter un endroit, partir + +
Ï löndö na Berberati tî gue na Bangui.
+ +
We left Berberati to go to Bangui.
+
+
+ + +
tl
+
+
einen Ort verlassen
+
+
leave a place
+
+
quitter un endroit, partir
+
+ +
1404
+
+
+ + + +starten (mit einem Flugzeug), abfahren +take off +décoller, démarrer + +
Lapärä alöndö auru zûsuka na Bangui.
+ +
The plane took off and flew clear to Bangui.
+
+
+ + +
ek
+
+
starten (mit einem Flugzeug), abfahren
+
+
+
+ + +
kütu
+
+ + + + + + + +Gelenk +joint +articulation + + +
tl
+
+
articulation
+
+
Gelenk
+
+
joint
+
+ +
0061
+
+
+
+ + +
na lê tî ...
+
+ + + + + + +... Meinung nach +in ... opinion +à ... avis + +
Na lê tî âwanganga, a yeke tî nyön mânga pëpe.
+ +
In the opinion of doctors, one should not smoke.
+
+
+ + +
ek
+
+
... Meinung nach
+
+
+
+ + +
nzönî
+
+ + +
nzɔ.ni
+ +
2.3
+
+
+ + + +gut +well +bien + +
Waküâ nî asâra kusâla nzönî mîngi.
+ +
The laborer works very well.
+
+
+ + +
tl
+
+
bien
+
+
gut
+
+
well
+
+ +
1696
+
+
+ +gut +good +bon + +
Sô nzönî waküâ. Bîanî lo yeke nzönî.
+ +
That is a good worker. Truly he is good.
+
+
+ + +
tl
+
+
bon
+
+
good
+
+
gut
+
+
+
+ + +
tïgatï
+
+ + + + +links, linke Hand +left, left hand +gauche, main gauche + + +
ek
+
+
links, linke Hand
+
+
+
+ + +
kpëngbä
+
+ + +
kpëngbä kôli
+ +
+ + + + + + +solide, hart (sein) +solid, hard (be) +solide, dur (être) + +
Lo yeke dë mbênî kpëngbä këkë.
+ +
He is cutting a hard tree.
+
+
+ + +
ek
+
+
solid, hard
+
+
solide, dur
+
+
solide, hart
+
+ +
1544
+
+
+ + + +grob (sein) +rough (be) +rugueux (être) +
(être) rugueux
+
+
grob (sein)
+
+
rough
+
+ +
1541
+
+
+ + + +stark +strong (be) +fort (être) + +
Tî yô nëngö kûngbâ töngasô, alîngbi kpëngbä kutukutu ayeke daâ.
+ +
To haul such a heavy load, it is necessary to have a strong truck.
+
+
+ + +
ek
+
+
fort
+
+
stark
+
+
strong
+
+ +
1571
+
+
+ + + +ausgewachsen +adult (be) +adulte (être) + +
Kusâla sô alîngbi gï na kpëngbä kôlï wala kpëngbä wâlï.
+ +
This job is only suitable for an adult man or an adult woman.
+
+
+
adult
+
+
adulte
+
+
ausgewachsen
+
+
+ + + +schwierig +difficult (be) +difficile (être) + +
Âla fâ ngbanga na ndö tî mbênî kpëngbä tënë.
+ +
They judged a difficult matter.
+
+
+ + +
ek
+
+
difficile
+
+
difficult
+
+
schwierig
+
+ + +
0320
+
+
+
+ + +
zîa kä na terê tî
+
+ + + + + + + + + + + + + + + + +verwunden (ein Tier) +wound (animal) +blesser (un animal) + + +
tl
+
+
blesser (un animal)
+
+
verwunden (ein Tier)
+
+
wound (animal)
+
+ +
0796
+
+
+
+ + +
ka
+
+ + +
check whether two glosses can be combined as "HAB"
+
+ + + +gewöhnlich, normalerweise +usually +habituellement, d'habitude + +
Genèse 10:9 [SC] Ndani laa, azo ayeke tene ka, atene: “Mo yeke tongana Nemrod, ngangu zo ti gingo nyama na dawa ti KOTA GBIA!”
+ +
For this reason people often say, "You are like Nimrod, a great hunter before the Lord."
+
+
+ + +
tl
+
+
gewöhnlich, normalerweise
+
+
habituellement, d'habitude
+
+
usually
+
+ + +
1362
+
+
+ + + +häufig +often +souvent + + +
tl
+
+
häufig
+
+
often
+
+
souvent
+
+ + +
1361
+
+
+
+ + +
ndangba
+
+ + + + +letzter +last (be) +dernier (être) + +
Lo sïgî ndângbâ na kizamä.
+ +
He came out last on the exam.
+
+
+ + +
ek
+
+
dernier
+
+
last
+
+
letzter
+
+ +
1626
+
+
+
+ + +
söngö
+
+ + +
so.ngo
+ +
2.2
+
+
+ + + +Verwandtschaft +kinship +parenté + + + + +
ek
+
+
kinship
+
+
parenté
+
+
Verwandtschaft
+
+
+ + + +Bruderschaft +brotherhood +fraternité + + +
ek
+
+
brotherhood
+
+
Bruderschaft
+
+
fraternité
+
+
+
+ + +
ndâmbo
+
+ + +
nda.mbo
+ +
3.1
+
+
+ + + +Hälfte +half +moitié + + +
tl
+
+
half
+
+
Hälfte
+
+
moitié
+
+ +
1641
+
+
+ + + +halb +half +demi + + +
ek
+
+
demi
+
+
halb
+
+
half
+
+
+
+ + +
sanzê
+
+ + + + +wechseln, ändern +alter, change +changer + + +
ek
+
+
change
+
+
changer
+
+
wechseln, ändern
+
+ + +
1459
+
+
+
+ + +
bi tombôka
+
+ + + + + + + + + + + +jemanden verrückt machen +drive someone crazy +troubler + + +
ek
+
+
jemanden verrückt machen
+
+
+
+ + +
sêterê
+
+ + + + +gute Gesundheit +good health +bonne santé + + +
ek
+
+
gute Gesundheit
+
+
+
+ + +
mabôko na mabôko
+
+ + + + + + + + +gemeinsam, miteinander +hand in hand, together +en coopération + +
Zîa ë sâra kua mabôko na mabôko.
+ +
Let us work together hand in hand.
+
Laisse nous travailler main dans la main.
+
+
+ + +
ek
+
+
gemeinsam, miteinander
+
+
+
+ + +
Yapakara
+
+ + + + +Frau +Mrs. +Madame + + +
ek
+
+
Frau
+
+
Madame
+
+
Mrs.
+
+
+
+ + +
bê tî ... alöndö
+
+ + + + + + + + +übel (sein) +feel nauseous +avoir la nausée + + +
ek
+
+
übel (sein)
+
+
+
+ + +
fi
+
+ + + + +roh +raw, uncooked (be) +cru (être) + +
Lo gä na fi nyama.
+ +
He came with uncooked meat.
+
Il a apporté de la viande crue.
+
+
+ +
i-262
+
+
+
+ + +
sûru pöpö tî âkubû tî finî da na ndö tî sêse
+
+ + + + + + + + + + + + + + + + + + + + + + + + +markieren, abstecken +mark out, peg out (ground) +délimiter, piqueter + + +
tl
+
+
délimiter, piqueter
+
+
mark out, peg out (ground)
+
+
markieren, abstecken
+
+ + +
0686
+
+
+
+ + +
tambêla na ndö tî gerê ôko
+
+ + + + + + + + + + + + + + + + + + + + +hinken +limp +boiter + + +
tl
+
+
boiter
+
+
hinken
+
+
limp
+
+ +
0157
+
+
+
+ + +
längö nzara
+
+ + + + + + + + + + + +hungrig ins Bett gehen +to go to bed hungry +dormir sans avoir mangé + + + + +
ek
+
+
hungrig ins Bett gehen
+
+
+
+ + +
wagôsînga
+
+ + + + +Radioansager +radio announcer, disk-jockey +annonceur + + +
ek
+
+
annonceur
+
+
Radioansager
+
+
+ + + +Journalist +reporter +journaliste + + +
ek
+
+
Journalist
+
+
journaliste
+
+
reporter
+
+
+
+ + +
adû
+
+ + + + +geboren werden +born (be) +naître + + +
tl
+
+
born
+
+
geboren werden
+
+
naître
+
+ +
0245
+
+
+
+ + +
hôle
+
+ + +
o.lɛ / u.lɛ
+ +
3.1
+
+
+ + + +verwelken +wither (plant) +se flétrir, se faner + + +
tl
+
+
se flétrir, se faner
+
+
verwelken
+
+
wither (plant)
+
+ +
1252
+
+
+ + + +austrocknen, verdunsten +dry up, evaporate +tarir, évaporer + + +
ek
+
+
austrocknen, verdunsten
+
+
dry up, evaporate
+
+
tarir, évaporer
+
+ +
1340
+
+
+
+ + +
ndüzü
+
+ + + + +Himmel +sky +ciel + + + + +
tl
+
+
ciel
+
+
Himmel
+
+
sky
+
+ +
1313
+
+
+
+ + +
tumbûka
+
+ + + + + + + + +rebellieren +rebel +se révolter + + +
ek
+
+
rebel
+
+
rebellieren
+
+
+ + + +Tumult, Wahnsinn +tumult, madness +tumulte, folie + + +
ek
+
+
Tumult, Wahnsinn
+
+
+
+ + +
fâ küä tî li
+
+ + + + + + + + + + + + + + + + +Haare schneiden, +cut (hair) +se faire couper les cheveux, + + +
tl
+
+
cut (hair)
+
+
Haare schneiden,
+
+
se faire couper les cheveux,
+
+ + +
0564
+
+
+ + + +rasieren +shave head +se raser la tête, le crâne + + +
ek
+
+
rasieren
+
+
se raser
+
+
shave
+
+ + +
0565
+
+
+
+ + +
gitäre
+
+ + + + +Harfe +harp +harpe, cithare + + +
tl
+
+
Harfe
+
+
harp
+
+
harpe, cithare
+
+ +
0890
+
+
+
+ + +
zo kûê
+
+ + + + + + + + + + + + +alle, jedermann +everybody +tout le monde + + +
tl
+
+
alle, jedermann
+
+
everybody
+
+
tout le monde
+
+ +
1643
+
+
+
+ + +
taâ tî sô
+
+ + + + + + + + + + + + + + +dieses Mal +this time +cette fois + +
Taâ tî sô, kobêla nî sô agä ndurü tî fâ mbï.
+ +
This time, the disease came close to killing me.
+
Cette fois, la maladie a failli me tuer.
+
+
+
+
+ + +
yongôro
+
+ + +
yɔ.ngɔ.ɾɔ
+ +
1.3.1
+
+
+ + + +weit, weit weg +far, far away (be) +loin, lointain, éloigné (être) + +
Lo mû lapärä tî gue na mbênî yongôro ködörö.
+ +
He took a plane to go to a far away country.
+
+
+ + +
tl
+
+
far, far away
+
+
loin, lointain, éloigné
+
+
weit, weit weg
+
+ +
1656
+
+
+ + + +lang (sein) +long (be) +long (être) + +
Lêgë nî ayeke yongôro mîngi pëpe. Fadë ï sï hîo.
+ +
The road is not long. We'll arrive quickly.
+
+
+ + +
tl
+
+
(être) long
+
+
lang (sein)
+
+
long
+
+ +
1513
+
+
+ +groß (Mensch) +tall (person) (be) +élancé (être) + +
Âzo tî pïkängö ndembö tî nzângi ayeke âyongôro zo.
+ +
Those who play basketball are tall people.
+
+
+ + +
ek
+
+
élancé
+
+
groß (Mensch)
+
+
+
+ + +
bâda tî halëzo
+
+ + + + + + + + +Nationalversammlung, Nationalrat +national assembly +assemblée nationale + + +
ek
+
+
Nationalversammlung, Nationalrat
+
+
+
+ + +
kpoto
+
+ + +
kpɔ.tɔ
+ +
1.1
+
+
+ + + +Hut, Mütze +hat +chapeau + + +
ek
+
+
chapeau
+
+
hat
+
+
Hut, Mütze
+
+ +
0541
+
+
+ + + +Frisur +hairstyle +coiffure + + +
ek
+
+
coiffure
+
+
Frisur
+
+
hairstyle
+
+
+
+ + +
mêtere
+
+ + + + +Meter +meter +mètre + + +
ek
+
+
meter
+
+
Meter
+
+
mètre
+
+
+
+ + +
kêtê mabôko
+
+ + + + + + + + + + + + +Finger +finger +doigt + + + + +
tl
+
+
doigt
+
+
finger
+
+
Finger
+
+ +
0059
+
+
+
+ + +
kâya
+
+ + + + +Webervogel +village weaverbird +tisserin + + +
tl
+
+
tisserin
+
+
Webervogel
+
+ + +
1044
+
+
+
+ + +
bäkoyä
+
+ + +
ba.ko.ya
+ +
2.1.2
+
+
+ + + +Pavian +baboon +cynocéphale, babouin + +
Affenart, Pavian
+
(dog-faced) baboon
+
cynocéphale, babouin
+
+ + +
Papio cynocephalus
+
+ +
tl
+
+
baboon
+
+
cynocéphale, babouin
+
+
Pavian
+
+ +
1002
+
+
+
+ + +
lê tî nzö
+
+ + + + + + + + + + + + +(Mais-)Korn +kernel (of corn, maize) +grain (de maïs) + + +
tl
+
+
(Mais-)Korn
+
+
grain (de maïs)
+
+
kernel (of corn, maize)
+
+ +
1201
+
+
+
+ + +
bïkua usïö
+
+ + + + + + + + +Donnerstag +Thursday +jeudi + + +
ek
+
+
Donnerstag
+
+
jeudi
+
+
Thursday
+
+ + + + + +
+
+ + +
na gbe tî
+
+ + + + + + + + +unter +under, below +sous, en dessous + +
Âgündâ tî këkë ayeke na gbe tî këkë nî.
+ +
Tree roots are under the tree.
+
+
+ +
sous, en dessous
+
+
under, below
+
+
unter
+
+ +
1669
+
+
+
+ + +
balëomenë
+
+ + +
ba.le.o.mɛ.nɛ
+ +
1.2.1.1.2 / 1.2.1.2.2
+
+
+ + + +sechzig (60) +sixty (60) +soixante (60) + + +
tl
+
+
sechzig (60)
+
+
sixty (60)
+
+
soixante (60)
+
+ +
1615
+
+
+
+ + +
bîrö
+
+ + +
bi.ɾo
+ +
3.2 / 3.3
+
+
+ + + +Kopfpolster +head pad +coussinet de portage + + +
tl
+
+
coussinet de portage
+
+
head pad
+
+
Kopfpolster
+
+ + +
0862
+
+
+
+ + +
kangi
+
+ + + + + + + +Termite +termite +termite + + +
tl
+
+
termite
+
+
termite
+
+
Termite
+
+ +
1126
+
+
+
+ + +
fondo
+
+ + +
fɔ.ndɔ
+ +
1.1
+
+
+ + + +Banane +banana +banane + + +
tl
+
+
banana
+
+
banane
+
+
Banane
+
+ +
1208
+
+
+ + + +Kochbanane +plantain +plantain + + +
Musa spp.
+
+ +
tl
+
+
Kochbanane
+
+
plantain
+
+
plantain
+
+ +
1209
+
+
+
+ + +
meambe
+
+ + + + + + + +acht (8) +eight (8) +huit (8) + + +
ek
+
+
acht (8)
+
+
eight (8)
+
+
huit (8)
+
+ + +
1597
+
+
+
+ + +
mîterê
+
+ + + + +Muskel +muscle +muscle + + +
ek
+
+
muscle
+
+
muscle
+
+
Muskel
+
+ + +
0089
+
+
+ +fleischlich +carnal +charnel + + +
ek
+
+
carnal
+
+
charnel
+
+
fleischlich
+
+
+
+ + +
mânga
+
+ + + + +Tabak +tobacco +tabac + + +
tl
+
+
tabac
+
+
Tabak
+
+
tobacco
+
+ +
0904
+
+
+
+ + +
kazâka
+
+ + + + +Anzug +suit +costume + + +
ek
+
+
Anzug
+
+
costume
+
+
suit
+
+
+
+ + +
mafüta tî mbûrü
+
+ + + + + + + + +Palm-Öl +palm oil +huile de palme + + + + +
ek
+
+
Palm-Öl
+
+
+
+ + +
mokondö
+
+ + +
mɔ.ko.ndo
+ +
1.1.2
+
+
+ + + +gerecht +righteous (be) +juste (être) + + +
ek
+
+
gerecht
+
+
juste
+
+
righteous
+
+
+ + + +Heiligkeit,Reinheit +holiness, purity +sainteté, pureté +
Heiligkeit,Reinheit
+
+
+ +heilig +holy (be) +saint (être) + + +
ek
+
+
heilig
+
+
holy
+
+
saint
+
+
+ +rein +pure (be) +pur (être) + + +
ek
+
+
pur
+
+
pure
+
+
rein
+
+
+
+ + +
nïväkîni
+
+ + + + +Chloroquin, Chlorochin +chloroquine +nivaquine + + +
ek
+
+
Chloroquin, Chlorochin
+
+
chloroquine
+
+
nivaquine
+
+
+
+ + +
balëûse na mbârâmbârâ
+
+ + + + +siebenundzwanzig (27) +twenty-seven (27) +vingt-sept (27) + +
chan_07
+
+
+
+ + +
sû kpê
+
+ + + + +komm angerannt +come running +venir en courant + +
+ + +
yê tî âkötarä
+
+ + + + + + + + + + + + +Tradition, Brauch +tradition, custom +tradition, coutume + + +
tl
+
+
Tradition, Brauch
+
+
tradition, coutume
+
+
tradition, custom
+
+ +
0932
+
+
+
+ + +
??
+
+ + + + +Zügel +rein +guide + + +
ex-01
+
+
+
+ + +
mä yângâ
+
+ + + + + + + + + + + +gehorchen +obey +obéir + + +
tl
+
+
gehorchen
+
+
obéir
+
+
obey
+
+ +
0504
+
+
+
+ + +
vokö lê
+
+ + + + + + + + + + + + +Pupille +pupil (of eye) +pupille + + +
tl
+
+
pupil (of eye)
+
+
pupille
+
+
Pupille
+
+ +
0010
+
+
+
+ + +
ngo
+
+ + +
ngɔ
+ +
1
+
+
+ + + +Trommel +drum +tambour + +
Sanduhrtrommel
+
drum (in the shape of an hour glass)
+
tambour (en forme de sablier)
+
+ + +
tl
+
+
drum
+
+
tambour
+
+
Trommel
+
+ +
0888
+
+
+ + + +Sanduhrtrommel +hourglass drum +tambour en forme de sablier +
Sanduhrtrommel
+
+
tambour en forme de sablier
+
+ +
0888
+
+
+
+ + +
mû kôbe na (ânyama)
+
+ + + + + + + + + + + + + + + + +füttern +feed (animals) +donner à manger (aux animaux) + + +
tl
+
+
donner à manger (aux animaux)
+
+
feed (animals)
+
+
füttern
+
+ +
0772
+
+
+
+ + +
matânga tî batême
+
+ + + + + + + + + + + + +Namensgebungsfeier +naming ceremony (baby) +cérémonie de "baptême" (donner le + + +
tl
+
+
cérémonie de "baptême" (donner le
+
+
Namensgebungsfeier
+
+
naming ceremony (baby)
+
+ +
0934
+
+
+
+ + +
ndurü tî
+
+ + + + + +bereit zu +ready to +prêt à + + +
ek
+
+
bereit zu
+
+
+
+ + +
kombâ
+
+ + +
ko.mba
+ +
1.3
+
+
+ + + +Perlhuhn +guinea fowl +pintade + + +
Numida meleagris
+
+ +
tl
+
+
guinea fowl
+
+
Perlhuhn
+
+
pintade
+
+ +
0979
+
+
+
+ + +
gbätä
+
+ + + + +Stadt +city +ville + + +
tl
+
+
city
+
+
Stadt
+
+
ville
+
+ + +
0532
+
+
+ + + +Dorf +village +village + + +
ek
+
+
Dorf
+
+
village
+
+
village
+
+ +
0533
+
+
+ + + +Gemeinde +community +localité + + +
ek
+
+
community
+
+
Gemeinde
+
+
localité
+
+
+
+ + +
kpälë sô asungba
+
+ + + + + + + + + + + + + + +Aufstand +riot +émeute + +
+ + +
dasêndâgî
+
+ + + + +Universität +university +université + + +
ek
+
+
Universität
+
+
université
+
+
university
+
+
+
+ + +
gbe
+
+ + + + +Unterseite +underside +dessous + + + + +
tl
+
+
dessous
+
+
underside
+
+
Unterseite
+
+
+ + + +Doden +bottom +fond +
bottom
+
+
Doden
+
+
fond
+
+ +
1388
+
+
+
+ + +
ï
+
+ + + + + + + +wir +we +nous + + +
ek
+
+ +
1651
+
+
+ + + +ihr (Mehrzahl) +you (PL) +vous (PL) + + +
ek
+
+
ihr (Mehrzahl)
+
+ + +
1652
+
+
+
+ + +
ta tî sêse
+
+ + + + + + + + + + + + +Kochtopf (Steingut) +cooking pot (earthenware) +marmite (en terre) + + +
tl
+
+
cooking pot (earthenware)
+
+
Kochtopf (Steingut)
+
+
marmite (en terre)
+
+ +
0610
+
+
+
+ + +
zo tî likundû
+
+ + + + + + + + + + + +Zauberer +sorcerer +sorcier + + +
ek
+
+
sorcerer
+
+
sorcier
+
+
Zauberer
+
+ + +
0411
+
+
+ + + +Hexe +witch, sorceress +sorcière + + +
0412
+
+
+
+ + +
wâlï sô ayê tî mû kôlï
+
+ + + + + + + + + + + + + + + + + + + + +Verlobte +fiancée (betrothed girlfriend) +fiancée + + +
tl
+
+
fiancée
+
+
fiancée (betrothed girlfriend)
+
+
Verlobte
+
+ +
0375
+
+
+
+ + +
kanga na ndö tî terê
+
+ + + + + + + + + + + + + + + + +aufwickeln (Seil) +coil (rope) +enrouler + + +
tl
+
+
aufwickeln (Seil)
+
+
coil (rope)
+
+
enrouler
+
+ + +
1442
+
+
+
+ + +
zîngo
+
+ + + + +wecken, aufwachen +wake up +réveiller + + +
ek
+
+
réveiller
+
+
wecken, aufwachen
+
+
+ +wach/wachsam (sein) +awake, alert (be) +réveillé, vigilant (être) + + +
tl
+
+
(être) réveillé, vigilant
+
+
awake, alert
+
+
se reposer
+
+
wach/wachsam (sein)
+
+ +
0186
+
+
+
+ + +
mbênî lâ
+
+ + + + + + + + +eines Tages +one day +un jour + +
Mbênî lâ, fadë ï kûi.
+ +
One day, we will die.
+
+
+ + +
ek
+
+
eines Tages
+
+
+ + + +manchmal +sometimes +des fois, parfois + +
Mbêni lâ, lo yeke gi tënë!
+ +
Sometimes, he causes trouble.
+
+ + +
+
des fois, parfois
+
+
manchmal
+
+
sometimes
+
+ +
1360
+
+
+
+ + +
îngö tî sêse atîa
+
+ + + + + + + + + + + + + + + + +unfruchtbarer Boden +barren (of land) (be) +stérile, improductif (terre) + +
Yäkä nî alë pëpe ngbanga tî îngö tî sêse atîa.
+ +
The garden didn't produce much because the land was barren.
+
+
+ + +
tl
+
+
barren (of land)
+
+
stérile, improductif (terre)
+
+
unfruchtbarer Boden
+
+ +
0746
+
+
+
+ + +
zî (bongö)
+
+ + + + + + + + + + + + +sich auskleiden +undress +se déshabiller + + +
tl
+
+
se déshabiller
+
+
sich auskleiden
+
+
undress
+
+ +
0539
+
+
+
+ + +
so
+
+ + +
+ +
1
+
+
+ + + +schmerzen +hurt +faire mal + +
aso
+ +
schmerzen
+
it hurts
+
cela me fait mal
+
+
+ + +
ek
+
+
faire mal
+
+
hurt
+
+
schmerzen
+
+ + +
0231
+
+
+
+ + +
sisi
+
+ + + + +Dorn +thorn +épine + + +
ek
+
+
Dorn
+
+
épine
+
+
thorn
+
+ +
1193
+
+
+
+ + +
gi
+
+ + + + +suchen +look for +chercher, essayer de trouver + + + + +
tl
+
+
chercher, essayer de trouver
+
+
look for
+
+
suchen
+
+ +
1474
+
+
+ + + +jagen +hunt +chasser + + +
ek
+
+
chasser
+
+
hunt
+
+
jagen
+
+ +
0775
+
+
+
+ + +
duma
+
+ + + + +Honigwein +mead +hydromel + + +
tl
+
+
Honigwein
+
+
hydromel
+
+
mead
+
+ +
0589
+
+
+
+ + +
ngadï
+
+ + + + +Grashüpfer +grasshopper +sauterelle + + +
tl
+
+
Grashüpfer
+
+
grasshopper
+
+
sauterelle
+
+ +
1132
+
+
+
+ + +
me
+
+ + + + +aber +but +mais + +
ek
+
+
aber
+
+
but
+
+
mais
+
+
+
+ + +
hônzi
+
+ + + + + +
ho.nzi / o.nzi / wo.nzi / hu.nzi / u.nzi / wu.nzi
+ +
3.1
+
+
+ + + +beenden +finish +finir + + +
ek
+
+
beenden
+
+
finir
+
+
finish
+
+ +
1506
+
+
+ + + +aufbrauchen +use up +tout utiliser + + +
ek
+
+
aufbrauchen
+
+
+ + + +aufgebraucht +run out +épuisé + + +
ek
+
+
aufgebraucht
+
+
épuisé
+
+
+
+ + +
baminga
+
+ + + + +Pygmäe +pygmy +pygmée + + +
ek
+
+
Pygmäe
+
+
pygmée
+
+
pygmy
+
+
+
+ + +
ndêngê na ndêngê
+
+ + +
fr lingala: lolêngê (kc)
+
+ +ganz viele, ein Schwarm +diverse, of all kinds, lots +divers, de toute sorte, une ribambelle + + +
ek
+
+
ganz viele, ein Schwarm
+
+ +
+
+ + +
kpângi
+
+ + + + +Flügel +wing +aile + + +
tl
+
+
aile
+
+
Flügel
+
+
wing
+
+ +
1059
+
+
+
+ + +
fa terê
+
+ + + + + + + + + + + +(sich/jemand) vorstellen +introduce +se présenter, présenter une autre personne + + +
ek
+
+
(sich/jemand) vorstellen
+
+
introduce
+
+
+ + + +sich aufspielen +show off +se donner des airs + + +
ek
+
+
sich aufspielen
+
+
+
+ + +
fün
+
+ + + + +riechen +smell +sentir + + +
ek
+
+
riechen
+
+
sentir
+
+
smell
+
+ +
0136
+
+
+ + + +faulen; verwesen +rot +pourrir + + +
tl
+
+
faulen
+
+
pourrir
+
+
rot
+
+
verwesen
+
+ +
0583
+
+
+ +verfault (sein) +rotten (be) +pourri, gâté (être) + + +
tl
+
+
(être) pourri, gâté
+
+
rotten
+
+
verfault (sein)
+
+ +
1250
+
+
+ + + +sich zersetzen, verfallen +decay +se décomposer, pourrir + +
mle-1254
+
+
+
+ + +
yeke dû
+
+ + + + + + + + + + +hohl (sein) +hollow (be) +creux (être) + +
Ngangü pupu akinda këkë nî. Ayeke dû.
+ +
A hard wind blew down the tree. It was hollow.
+
+
+ + +
tl
+
+
(être) creux
+
+
hohl (sein)
+
+
hollow
+
+ +
1527
+
+
+
+ + +
nguru terê tî
+
+ + + + + + + + + + + + +um herum gehen +go round, detour +contourner + + +
tl
+
+
contourner
+
+
go round, detour
+
+
um herum gehen
+
+ +
1406
+
+
+
+ + +
kêü
+
+ + + + +Fischreiher +heron +héron + + +
tl
+
+
Fischreiher
+
+
heron
+
+
héron
+
+ +
1048
+
+
+
+ + +
sâra söngö
+
+ + + + + + + + + + + +eine Beziehung eingehen +enter into a relationship +entrer en relation + + +
ek
+
+
eine Beziehung eingehen
+
+
+ + + +eine Familie gründen +become a family +s'unir + + +
ek
+
+
eine Familie gründen
+
+
s'unir
+
+
+
+ + +
rulêe
+
+ + + + + + + +rollen +roll +rouler + + +
tl
+
+
roll
+
+
rollen
+
+
rouler
+
+ + +
1414
+
+
+
+ + +
bongö tî ngû
+
+ + + + + + + + +Regenmantel +raincoat +imperméable + + + + +
ek
+
+
imperméable
+
+
raincoat
+
+
Regenmantel
+
+
+
+ + +
pûsu
+
+ + + + +schieben, stoßen +push +pousser + + +
tl
+
+
pousser
+
+
push
+
+
schieben, stoßen
+
+ +
1436
+
+
+ + + +aus dem Weg gehen +move over +se pousser + + +
ek
+
+
aus dem Weg gehen
+
+
+
+ + +
mbo tî ngonda
+
+ + + + + + + + + + + + +Schakal +jackal +chacal + + +
Canis aureus
+
+ +
tl
+
+
chacal
+
+
jackal
+
+
Schakal
+
+ +
1004
+
+
+
+ + +
âyê tî dödö tî ködörö
+
+ + + + + + + +Instrumente, traditionelle Kleidung, Tracht +instruments, traditional outfits +instruments, costumes (traditionnels) + + +
ek
+
+
Instrumente, traditionelle Kleidung, Tracht
+
+
+
+ + +
fenêtere
+
+ + + + +Fenster +window +fenêtre + + +
tl
+
+
fenêtre
+
+
Fenster
+
+
window
+
+ +
0667
+
+
+
+ + +
anînga kêtê
+
+ + + + + + + + +kurz darauf +shortly after, be a short while +peu après + +
Lo te füngö nyama nî, anînga kêtê, yâ tî lo aso.
+ +
He ate the rotten meat and shortly after, his stomach hurt.
+
+
+ + +
ek
+
+
kurz darauf
+
+
+
+ + +
linda
+
+ + + + + + + +ertrinken +drown (intr) +se noyer + + +
tl
+
+
drown (intr)
+
+
ertrinken
+
+
se noyer
+
+ +
1491
+
+
+
+ + +
sâra wûlûwûlû
+
+ + + + + + + + + + + + +rascheln +rustle (leaves) +bruire + + +
tl
+
+
bruire
+
+
rascheln
+
+
rustle (leaves)
+
+ +
1328
+
+
+
+ + +
mbâgë tî wâlï
+
+ + + + + + + + +linke Seite +left side +côté gauche + + + + +
ek
+
+
linke Seite
+
+
+
+ + +
birä
+
+ + + + +Kampf, Schlacht +battle +combat + + +
ek
+
+
battle
+
+
combat
+
+
Kampf, Schlacht
+
+
+ + + +Krieg +war +guerre + + +
tl
+
+
guerre
+
+
Krieg
+
+
war
+
+ +
0866
+
+
+
+ + +
votêe
+
+ + + + +wählen +vote, elect +voter, élire + + +
ek
+
+
wählen
+
+
+
+ + +
kpu
+
+ + + + +Mörser +mortar +mortier + + +
tl
+
+
Mörser
+
+
mortar
+
+
mortier
+
+ +
0619
+
+
+
+ + +
eskalie
+
+ + + + +Stufe +step +marche + + +
+ + +
koro
+
+ + +
kɔ.ɾɔ
+
+ + + +husten +cough +tousser + + +
ek
+
+
cough
+
+
husten
+
+
tousser
+
+ +
0112
+
+
+
+ + +
so li tî
+
+ + + + + + + + + + + + +ärgern, stören +annoy, disturb +embêter, déranger + + +
& mle-1444
+
+ +
tl
+
+
annoy, disturb
+
+
ärgern, stören
+
+
embêter, déranger
+
+ +
0506
+
+
+
+ + +
lêgë tî gô
+
+ + + + + + + + + + + + +Kehlkopf, Adamsapfel +voice box, larynx, Adam's apple +larynx, pomme d'Adam + + +
tl
+
+
Kehlkopf, Adamsapfel
+
+
larynx, pomme d'Adam
+
+
voice box, larynx, Adam's apple
+
+ +
0026
+
+
+
+ + +
zo tî gügümä
+
+ + + + +Stotterer +stammerer, stutterer +bègue + +
i-79
+
+
+
+ + +
na yânî
+
+ + + + + + + + + + + +in, drinnen +inside +dedans + +
Lo nguru da nî tî bâa ndo na yânî.
+ +
He walked around the house to look inside.
+
Il a fait le tour de la maison pour regarder dedans.
+
+
+
dedans
+
+
in, drinnen
+
+
inside
+
+
+
+ + +
turûgu
+
+ + + + +Soldat +soldier +soldat + + +
tl
+
+
soldat
+
+
Soldat
+
+
soldier
+
+ +
0406
+
+
+
+ + +
döngö terê
+
+ + + + + + + + + + + + +Eile, Hast +haste +précipitation + + +
ek
+
+
Eile, Hast
+
+
haste
+
+
précipitation
+
+
+
+ + +
gbarabübä
+
+ + + + +Bratpfanne +skillet +poêle à griller + + +
ek
+
+
Bratpfanne
+
+
skillet
+
+
+
+ + +
lê nî akono mîngi pëpe
+
+ + + + + + + + + + +eng (sein) +narrow (be) +étroit (être) + + +
tl
+
+
(être) étroit
+
+
eng (sein)
+
+
narrow
+
+ +
1521
+
+
+
+ + +
gïngö-susu
+
+ + + + + + + + +Fischen, Fischerei +fishing +pêche + + +
ek
+
+
Fischen, Fischerei
+
+
fishing
+
+
pêche
+
+
+
+ + +
sürüngö terê tî sâra nzorôko
+
+ + + + + + + + + + + + + + + + + + + + +Gesichtsschnitt(e), Tätowierung(en) +(facial) incision(s), tattoo(s) +scarification(s), tatouage(s) + + +
tl
+
+
Gesichtsschnitt(e), Tätowierung(en)
+
+
Noun
+
+
scarification(s), tatouage(s)
+
+ +
0559
+
+
+
+ + +
kôya
+
+ + +
??? maternal uncle for sure
+
+ +
ko.ya
+ +
3.1
+
+
+ + + +Onkel mütterlicherseits +maternal uncle +oncle maternel + + +
tl
+
+
oncle maternel
+
+
Onkel mütterlicherseits
+
+
uncle (maternal)
+
+ + +
0349
+
+
+ + + +Neffe +nephew +neveu + + +
ek
+
+
Neffe
+
+
nephew
+
+
neveu
+
+ +
0358
+
+
+ + + +Nichte +niece +nièce + + +
ek
+
+
Nichte
+
+
niece
+
+
nièce
+
+
+ + + +Cousin(e) +cousin +cousin + + +
tl
+
+
cousin
+
+
cousin
+
+
Cousin(e)
+
+ +
0352
+
+
+
+ + +
zo sô ahînga ânzönî yê sô a sâra na lo pëpe
+
+ + + + +undankbare Person +ungrateful person +ingrat + +
i-531
+
+
+
+ + +
zî yâ nî
+
+ + + + + + + + + + + + +lösen, loslassen +loosen +desserrer, relâcher + + +
tl
+
+
desserrer, relâcher
+
+
loosen
+
+
lösen, loslassen
+
+ +
0660
+
+
+
+ + +
makünzi
+
+ + + + + +
ma.ku.nzi
+ +
1.2.1 / 1.1.1 (lb)
+
+
+ + + +Chef, Führer +chief, boss, headman +chef + + +
tl
+
+
chef
+
+
Chef, Führer
+
+
chief, boss, headman
+
+ + +
0392
+
+
+
+ + +
yângâ tî ködörö
+
+ + + + + + + + +Nationalsprache +national language +langue nationale + + + + +
ek
+
+
Nationalsprache
+
+
+ + + +Muttersprache +mother tongue +langue maternelle + + +
ek
+
+
Muttersprache
+
+
+
+ + +
torôtorô
+
+ + +
tɔ.ɾɔ.tɔ.ɾɔ
+ +
1.3.1.3
+
+
+ + + +häufig, oft +frequently +fréquemment + + +
ek
+
+
fréquemment
+
+
frequently
+
+
häufig, oft
+
+
+ + + +übertrieben +excessively +exagérément + + +
ek
+
+
exagérément
+
+
excessively
+
+
übertrieben
+
+
+
+ + +
pöpö
+
+ + +
po.po
+ +
2.2
+
+
+ + + +Mitte +middle +milieu + + + + +
tl
+
+
middle
+
+
milieu
+
+
Mitte
+
+ +
1392
+
+
+ + + +Intervall +interval +intervalle + + +
ek
+
+
interval
+
+
Intervall
+
+
intervalle
+
+
+
+ + +
gue gîgî ague yongôro
+
+ + + + + + + + + + + +lange leben, gut leben +have a long life, a good life +vivre longtemps, bien vivre + + + + +
ek
+
+
lange leben, gut leben
+
+
+
+ + +
mängö-terê
+
+ + + + +gutes Verhältnis, Verständnis +good relationship, understanding +bonnes relations, entente + + +
ek
+
+
gutes Verhältnis, Verständnis
+
+
+ + + +Kompromiss +compromise +compromis + + +
tl
+
+
compromis
+
+
compromise
+
+
Kompromiss
+
+ +
0515
+
+
+
+ + +
na zïngö nî
+
+ + + + + + +offen (sein) +open (be) +ouvert (être) + +
Yângâ tî da angbâ na zïngö nî.
+ +
The door of the house is open.
+
+
+ + +
tl
+
+
(être) ouvert
+
+
offen (sein)
+
+
open
+
+ +
0638
+
+
+
+ + +
vovoro
+
+ + + + +Rohrstock, Rattan +rattan +rotin + + +
ek
+
+
rattan
+
+
Rohrstock, Rattan
+
+
rotin
+
+
+
+ + +
wagbötöngö kutukutu
+
+ + + + +Fahrer +driver +chauffeur + + +
ek
+
+
chauffeur
+
+
driver
+
+
Fahrer
+
+
+
+ + +
sêse tî potopôto
+
+ + + + + + + + + + + + +Schlamm +mud +boue + + +
tl
+
+
boue
+
+
mud
+
+
Schlamm
+
+ +
1278
+
+
+
+ + +
bê tî ... afâ
+
+ + + + + + + + + + + + +beunruhigt (sein) +troubled (be) +agité (être) + + +
ek
+
+
(être) agité
+
+
beunruhigt (sein)
+
+
troubled
+
+ +
0316
+
+
+ +Angst haben +afraid (be) +avoir peur + +
Ngbä agä ngangû. Tëtî so, bê tî lo afâ.
+ +
The buffalo charged. Because of this, he was afraid.
+
+
+ + +
ek
+
+
Angst haben
+
+
+
+ + +
kêkerêke
+
+ + + + +morgen +tomorrow +demain + +
Kêkerêke, fadë mamâ ague na garâ tî vo kôbe.
+ +
Tomorrow, mother will go to the market to buy food.
+
+
+ + +
tl
+
+
demain
+
+
morgen
+
+
tomorrow
+
+ +
1373
+
+
+ + + +am nächsten Tag +tomorrow, next day +lendemain + +
Alîngbi âpendere apenzê na ndo tî âkêkerêke tî âla.
+ +
The youth need to think about their tomorrows.
+
+
+ + +
ek
+
+
am nächsten Tag
+
+
lendemain
+
+
+
+ + +
kôbe tî gozo
+
+ + + + + + + + + + + +Maniokknödel +ball of prepared manioc +boule de manioc + + +
ek
+
+
Maniokknödel
+
+
+
+ + +
wa
+
+ + + + +welche(r)? wer? +which? +quel ? + +
I mû lêgë wa?
+ +
Which road do we take?
+
+
+ + +
ek
+
+
quel ?
+
+
welcher? wer?
+
+
who?, which?
+
+ + +
1685
+
+
+
+ + +
kua
+
+ + +
kua sô zo alîngbi tî sâra nî
+ +
+ + + + + + + + + + + + + + + +Arbeit +work +travail + + + + +
tl
+
+
Arbeit
+
+
travail
+
+
work
+
+ +
0703
+
+
+ + + +domainspecialty +occupation, trade +métier + +
i-644
+
+
+ + + +Aufgabe, Pflicht, Verpflichtung +duty, obligation +devoir, obligation + + +
tl
+
+
Aufgabe, Pflicht, Verpflichtung
+
+
devoir, obligation
+
+
duty, obligation
+
+ + +
0499
+
+
+
+ + +
zo
+
+ + + + +Person +person, human being +personne, être humain + + +
tl
+
+
Person
+
+
person, human being
+
+
personne, être humain
+
+ +
0326
+
+
+
+ + +
nzara (tî bê)
+
+ + + + +Leidenschaft +passion +passion + +
lb, sc
+
+ +
i-751
+
+
+
+ + +
Bêafrîka
+
+ + + + +Zentral Afrika +Central Africa +Centrafrique + + +
ek
+
+
Centrafrique
+
+
Zentral Afrika
+
+
+
+ + +
wên na wên
+
+ + + + + + + + +ausgeglichene Konfrontation, Zweikampf +equal confrontation +force égale, confrontation + + +
ek
+
+
ausgeglichene Konfrontation, Zweikampf
+
+
+
+ + +
fadë fadësô
+
+ + + + + + + + + + + +jetzt sofort +right away +tout de suite + +
Mo gä, fadë fadësô!
+ +
Come, right away!
+
Viens, tout de suite!
+
+
+ + +
ek
+
+
jetzt sofort
+
+
+
+ + +
na ndüzü
+
+ + + + + + + + +hoch +high +vers le haut + +
Lapärä ahuru na ndüzü kâ.
+ +
The airplane flies high above.
+
+
+ + +
ek
+
+
high
+
+
hoch
+
+
+ + + +oben +up +en haut + + +
tl
+
+
en haut
+
+
oben
+
+
up
+
+ +
1662
+
+
+
+ + +
âta tî kôlï
+
+ + + + + + + + +Enkel +grandson +petit-fils + + +
tl
+
+
Enkel
+
+
grandson
+
+
petit-fils
+
+ +
0357
+
+
+ + + +Großvater +grandfather +grand-père +
grandfather
+
+
grand-père
+
+
Großvater
+
+ +
i-484
+
+
+
+ + +
wara ndao
+
+ + + + + + + + + + + +einen Unfall haben oder machen +have an accident +faire ou avoir un accident + + +
ek
+
+
einen Unfall haben oder machen
+
+
+
+ + +
këkë tî kokö
+
+ + + + + + + + + + + + +Kokospalme +coconut palm +cocotier + + +
Cocos nucifera
+
+ +
tl
+
+
coconut palm
+
+
cocotier
+
+
Kokospalme
+
+ +
1169
+
+
+
+ + +
tiri
+
+ + + + +sich schlagen, kämpfen +struggle, fight +se battre, lutter + + +
tl
+
+
se battre, lutter
+
+
sich schlagen, kämpfen
+
+
struggle, fight
+
+ +
0509
+
+
+ + + +Kampf, Schlacht +struggle +lutte, bataille + + +
ek
+
+
Kampf, Schlacht
+
+
struggle
+
+ +
i-588
+
+
+
+ + +
dü mvene
+
+ + + + + + + + + + + +lügen +lie +mentir + + +
ek
+
+
lügen
+
+
mentir
+
+ +
i-636
+
+
+
+ + +
löndö na
+
+ + + + + + + + +von ... her kommen +come from +venir de + + +
ek
+
+
von ... her kommen
+
+
+ + + +entspringen +spring from, gush from +jaillir + +
i-539
+
+
+
+ + +
îtä
+
+ + + + +Geschwister +sibling +frère, sœur + + +
ek
+
+
frère, sœur
+
+
Geschwister
+
+
sibling
+
+ + +
0346
+
+
+ + + +Cousin(e) +cousin +cousin(e) +
cousin
+
+
cousin(e)
+
+
Cousin(e)
+
+
+
+ + +
gängö
+
+ + +
ga.ngɔ
+ +
2.2
+
+
+ + + +Ankunft +arrival +arrivée + + +
ek
+
+
Ankunft
+
+
arrival
+
+
arrivée
+
+
+
+ + +
kânga bê
+
+ + + + + + + + + + + + +ertragen +endure +supporter + + + + +
ek
+
+
endure
+
+
ertragen
+
+
supporter
+
+
+ + + +dulden +tolerate +tolérer + +
i-1012
+
+
+ + + +durchhalten +take courage +prendre courage + + +
ek
+
+
durchhalten
+
+
+ +geduldig (sein) +patient (be) +patient (être) + + +
tl
+
+
(être) patient
+
+
geduldig (sein)
+
+
patient
+
+ +
0314
+
+
+
+ + +
gbôto ngû
+
+ + + + + + + + +Wasser vom Brunnen, von der Quelle schöpfen +draw water from a well +puiser de l'eau du puits + + +
tl
+
+
draw water from a well
+
+
puiser de l'eau du puits
+
+
Wasser vom Brunnen, von der Quelle schöpfen
+
+ +
0738
+
+
+
+ + +
ndeko
+
+ + +
nde.ko
+ +
1.1
+
+
+ + + +Freund +friend +ami + + +
tl
+
+
ami
+
+
Freund
+
+
friend
+
+ +
0380
+
+
+ + + +Geliebter +lover (male) +amant + + +
ek
+
+
amant(e)
+
+
Geliebter
+
+
lover
+
+ +
i-11
+
+
+ + + +Geliebter +lover (female) +amante + + + +
i-12
+
+
+
+ + +
+
+ + + + +weben +weave +tisser + + +
tl
+
+
tisser
+
+
weave
+
+
weben
+
+ +
0731
+
+
+ + + +fächern, worfeln +fan, winnow +éventer, vanner +
éventer
+
+
fächern
+
+
fan
+
+
+
+ + +
tö ngû
+
+ + + + +(Wasser) schöpfen +draw (water) +puiser (de l'eau) ; prendre quelque chose de liquide + + +
tl
+
+
(Wasser) schöpfen
+
+
draw (water)
+
+
prendre quelque chose de liquide
+
+
puiser (de l'eau)
+
+ +
0738
+
+
+
+ + +
zîa mbito na bê tî zo
+
+ + + + + + + + + + + + + + + +erschrecken +frighten +effrayer + + +
tl
+
+
effrayer
+
+
erschrecken
+
+
frighten
+
+ +
0277
+
+
+
+ + +
yingö tî kûâ
+
+ + + + + + + + + + + + +Geist (eines Toten) (unsichtbar) +spirit (of dead person) (invisible) +esprit (invisible) d'un mort + + +
tl
+
+
esprit (invisible) d'un mort
+
+
Geist (eines Toten) (unsichtbar)
+
+
spirit (of dead person) (invisible)
+
+ + +
0911
+
+
+
+ + +
martoo
+
+ + +
maɾ.to ???
+ +
1.1
+
+
+ + + +Hammer +hammer +marteau + + +
tl
+
+
hammer
+
+
Hammer
+
+
marteau
+
+ +
0706
+
+
+
+ + +
kêlêlê
+
+ + + + + + + +Schlüssel +key +clé + + +
ek
+
+
clé
+
+
key
+
+
Schlüssel
+
+
+
+ + +
tumba yingö sïönî
+
+ + + + + + + + + + + + +austreiben, exorzieren +exorcise +exorciser + + +
tl
+
+
austreiben, exorzieren
+
+
exorcise
+
+
exorciser
+
+ +
0928
+
+
+
+ + +
îtä tî kôlï wala wâlï tî ... tî kôlï
+
+ + + + + + + + + + + + + + + + + + + + +Schwager +brother-in-law +beau-frère + + +
tl
+
+
beau-frère
+
+
brother-in-law
+
+
Schwager
+
+ +
0367
+
+
+
+ + +
gbugburu terê
+
+ + + + + + + + +sich beeilen +rush +se précipiter + + +
ek
+
+
rush
+
+
sich beeilen
+
+
+ + + +anrempeln, drängeln +jostle +bousculer + + +
ek
+
+
anrempeln, drängeln
+
+
bousculer
+
+
jostle
+
+
+
+ + +
li sô aso
+
+ + + + + + + + + + + + +Kopfschmerzen +headache +maux de tête + + +
tl
+
+
headache
+
+
Kopfschmerzen
+
+
maux de tête
+
+ +
0235
+
+
+
+ + +
ûse ûse
+
+ + + + + + + + +zu zweit +two by two +deux par deux + +
Âla lï ûse ûse na yâ tî yângâ-da nî.
+ +
Gehen Sie zu zweit durch die Tür.
+
Enter the doorway two by two.
+
Franchissez la porte deux par deux.
+
+
+ + +
ek
+
+
zu zweit
+
+
+
+ + +
mafüta tî wôtoro
+
+ + + + + + + + +Honig +honey +miel + + +
tl
+
+
honey
+
+
Honig
+
+
miel
+
+ +
1156
+
+
+
+ + +
kêtê
+
+ + + + +klein +small (be) +petit (être) + +
Âbaoule ayeke mbênî marä tî kêtê bâgara.
+ +
Dahomey cattle are a breed of little cattle.
+
+
+ + +
tl
+
+
klein
+
+
petit
+
+
small
+
+ +
1509
+
+
+ + + +ein wenig +a little +un peu + +
A yeke tî nyön gï kêtê ngbâko.
+ +
One should only drink a little distilled alcohol.
+
+
+ + +
ek
+
+
ein wenig
+
+
+ + + +wenige +few +peu de + +
Mbï yeke na kêtê pâta sêngê.
+ +
I only have a few coins.
+
+
+ + +
tl
+
+
few
+
+
peu de
+
+
wenige
+
+ +
1640
+
+
+
+ + +
kamâ
+
+ + + + +Partei +party +parti + + + + +
ek
+
+
Partei
+
+
parti
+
+
party
+
+
+ + + +Seite +side +coté + + +
ek
+
+
coté
+
+
Seite
+
+
side
+
+
+
+ + +
ngôi
+
+ + +
ngoi
+ +
31
+
+
+ + + +Moment +moment +moment + + +
ek
+
+
moment
+
+
moment
+
+
Moment
+
+ +
i-658
+
+
+ + + +Saison, Jahreszeit +season +saison + + +
tl
+
+
saison
+
+
Saison, Jahreszeit
+
+
season
+
+ +
1342
+
+
+ + + +Epoche +time, era +époque + + +
ek
+
+
Epoche
+
+
époque
+
+
+ + + +Zeit +time +temps + + +
tl
+
+
temps
+
+
time
+
+
Zeit
+
+ +
1352
+
+
+
+ + +
tene na kürü gô
+
+ + + + + + + + + + + +schroff reden +speak harshly +parler avec dureté + + +
ek
+
+
schroff reden
+
+
+
+ + +
atâa
+
+ + + + +trotz, selbst wenn +although, even if +malgré, même si + + +
ek
+
+
trotz, selbst wenn
+
+
+
+ + +
vôko
+
+ + +
vɔ.kɔ
+ +
3.1
+
+
+ + + +schwarz (sein) +black (be) +noir (être) + + +
ek
+
+
(être) noir
+
+
black
+
+
schwarz (sein)
+
+ + +
1556
+
+
+ + + +dunkel +dark (be) +foncé, sombre (être) + + +
tl
+
+
(être) foncé, sombre
+
+
dark
+
+
dunkel
+
+ +
1562
+
+
+ + + +schmutzig +dirty (be) +sale + + +
ek
+
+
dirty
+
+
sale
+
+
schmutzig
+
+ +
1585
+
+
+
+ + +
fâ (gerê, mabôko, etc.)
+
+ + + + +amputieren +amputate +amputer + +
mle-0258
+
+
+
+ + +
wagïngö nyama
+
+ + + + + + + + + + + + + + + + +Jäger +hunter +chasseur + + +
tl
+
+
chasseur
+
+
hunter
+
+
Jäger
+
+ +
0398
+
+
+
+ + +
sisongo
+
+ + + + + +
si.so.ngo
+ +
1.1.1
+
+
+ + + +Schilfrohr +reed +roseau + + +
ek
+
+
reed
+
+
roseau
+
+
Schilfrohr
+
+ +
1175
+
+
+
+ + +
kôgarä tî kôlï
+
+ + + + + + + + + + + + +Schwiegervater +father-in-law +beau-père + + +
tl
+
+
beau-père
+
+
father-in-law
+
+
Schwiegervater
+
+ +
0365
+
+
+
+ + +
yê sô angbâ na höndëngö nî
+
+ + +
& i-211
+
+ + + +Geheimnis +secret +secret + +
sc
+
+ +
mle-4198
+
+
+
+ + +
gbara
+
+ + + + +verbreiten, verteilen +spread out, separate +étaler, écarter + + +
ek
+
+
étaler, écarter
+
+
spread out, separate
+
+
verbreiten, verteilen
+
+ +
1444
+
+
+
+ + +
koli
+
+ + +
ko.li
+ +
1.1
+
+
+ + + +Kissen +cushion +coussin + + +
ek
+
+
coussin
+
+
cushion
+
+
Kissen
+
+
+
+ + +
na lêgë tî yê tî kpêne
+
+ + + + + + + + + + + + + + + + + + + + +auf wundersame Weise +miraculously +miraculeusement + +
Nzapâ asâra sêse sô na lêgë tî yê tî kpêne.
+ +
God created this earth miraculously.
+
Dieu a créé cette terre miraculeusement.
+
+
+ +
sc
+
+ +
mle-3058
+
+
+ + + +wunderbar +marvelously +merveilleusement + +
Ndao asâra âyângâ tî âlê tî kokora na lêgë tî yê tî kpêne.
+ +
The blacksmith made arrowheads marvelously.
+
Le forgeron a fait des pointes de flèches merveilleusement.
+
+
+
+ + + +komplex, schwierig +complex, complicated +complexe, compliqué + + +
mle-1002
+
+
+
+ + +
tanga
+
+ + + + +Rest +rest, others +reste + + +
ek
+
+
Rest
+
+
reste
+
+
+ +übrige, letzte +last one +dernier + + +
ek
+
+
dernier
+
+
übrige, letzte
+
+
+
+ + +
füngö yê
+
+ + + + + + + + + + + + +Schimmel +mould +moisissure +
moisissure
+
+
mould
+
+
Schimmel
+
+
+
+ + +
gbâ tî küä tî li
+
+ + + + + +
Kim - these are phrases that can probably vary
+
+
+ + + + +
Kim - these are phrases that can probably vary
+
+
+ + + +voller Haarschopf +full head of hair +une tête pleine de cheveux + + +
tl
+
+
voller Haarschopf
+
+
+
+ + +
ndäpêrêrê
+
+ + + + +Morgen +morning +matin + + +
tl
+
+
matin
+
+
Morgen
+
+
morning
+
+ + +
1378
+
+
+
+ + +
walimo
+
+ + + + +Künstler +artist +artiste + + +
ek
+
+
artist
+
+
artiste
+
+
Künstler
+
+
+
+ + +
zîa ... na yâ nî asï
+
+ + + + + + + + + + + + + + + + +füllen +fill +remplir + + +
tl
+
+
fill
+
+
füllen
+
+
remplir
+
+ + +
0635
+
+
+
+ + +
pîtîpîtî
+
+ + + + + + + +sehr schwarz +very black (be) +très noir (être) + + +
ek
+
+
(être) très noir
+
+
sehr schwarz
+
+ +
1556
+
+
+
+ + +
kôlökôtö
+
+ + +
kɔ.lɔ.kɔ.tɔ
+ +
3.2.3.2
+
+
+ + + +Wildtaube +wild pigeon +tourterelle + + +
ek
+
+
tourterelle
+
+
Wildtaube
+
+
+
+ + +
didi
+
+ + + + +Horn, Geweih +horn, antler +corne + + +
tl
+
+
corne
+
+
horn, antler
+
+
Horn, Geweih
+
+ +
1028
+
+
+
+ + +
mêlengê
+
+ + + + + + + +Kind +child +enfant + + +
ek
+
+
child
+
+
enfant
+
+
Kind
+
+ + +
0334
+
+
+
+ + +
nzönî sêse
+
+ + + + + + + + + + + + +fruchtbarer Boden +fertile soil +sol fertile + + +
tl
+
+
fertile soil
+
+
fruchtbarer Boden
+
+
sol fertile
+
+ + +
0745
+
+
+
+ + +
+
+ + + + +aussprechen, sagen +pronounce, say +prononcer, dire + + +
ek
+
+
aussprechen, sagen
+
+
+ + + +sich übergeben +vomit +vomir + + +
tl
+
+
sich übergeben
+
+
vomir
+
+
vomit
+
+ +
0233
+
+
+
+ + +
ndü
+
+ + + + +berühren +touch, feel +toucher + + +
tl
+
+
berühren
+
+
touch, feel
+
+
toucher
+
+ +
0138
+
+
+
+ + +
yamba
+
+ + + + +beiseite, abseits +apart, separate +à l'écart, à part + +
Lo dutï tî lo yamba.
+ +
Er saß abseits.
+
He sat apart.
+
Il s'est assis à part.
+
+
+ + +
ek
+
+
beiseite, abseits
+
+
+ + + +frei +free, en liberté. +libre + +
A zî ângbâa nî yamba.
+ +
Sie ließen die Sklaven frei.
+
They let the slaves go free.
+
Ils ont laissé les esclaves en liberté.
+
+
+
+
+ + +
tângo tî dê
+
+ + + + + + + + + + + + +kaltes Wetter +cold weather +temps froid + + +
tl
+
+
kaltes Wetter
+
+
temps froid
+
+ +
1346
+
+
+
+ + +
+
+ + + + +von, zu, für +from, to, for +de, à, pour + +
ek
+
+
von, zu, für
+
+
+ + + +von +of +de + +
mbëtï tî mo.
+ +
dein Buch
+
your book
+
ton livre
+
+
+
de
+
+
of
+
+
von
+
+
+
+ + +
yändä
+
+ + + + +Fetisch, Götze +fetish, idol, god +fétiche, idole ; dieu + + +
tl
+
+
dieu
+
+
fétiche, idole
+
+
Fetisch, Götze
+
+
fetish, idol, god
+
+ + +
0907
+
+
+ + + +Hexerei, Zauberei +sorcery, witchcraft +sorcellerie + + +
ek
+
+
Hexerei, Zauberei
+
+
sorcellerie
+
+
sorcery, witchcraft
+
+ +
0918
+
+
+
+ + +
sâra yê na yäpüngö terê
+
+ + +
Originally: zo sô asâra yê na yäpüngö terê
+
+ + + + + + + + + + + + + +begierig, gespannt (sein) +eager, zealous (be) +zélé (être) + +
Zo tî kusâla sô, lo sâra yê na yäpüngö terê. Lo sâra kusâla hîo mîngi.
+ +
That workman is zealous. He works very fast.
+
+
+ + +
tl
+
+
(être) zélé
+
+
begierig, gespannt (sein)
+
+
eager, zealous
+
+ +
0312
+
+
+
+ + +
bïkua okü
+
+ + + + + + + + +Freitag +Friday +vendredi + + +
ek
+
+
Freitag
+
+
Friday
+
+
vendredi
+
+ + + + + +
+
+ + +
fûru
+
+ + + + +brauen +brew +brasser + +
mle-0639
+
+
+
+ + +
sô a hînga nî awe
+
+ + + + +eindeutig +definite (be) +défini, connu (être) + +
mle-1283
+
+
+
+ + +
molongö
+
+ + +
mo.lo.ngo / mo.lɔ.ngɔ
+ +
1.1.2
+
+
+ + + +Reihe, Linie +line +rangée, ligne + + +
ek
+
+
line
+
+
Reihe, Linie
+
+
+ + + +Rang +rank +classement, rang + + +
ek
+
+
Rang
+
+
rank
+
+
+ + + +Paragraph, Abschnitt +paragraph +paragraphe + + +
ek
+
+
paragraph
+
+
Paragraph, Abschnitt
+
+
paragraphe
+
+
+ + + +Liedstrophe +song verse +verset d'une chanson + + +
ek
+
+
Liedstrophe
+
+
+
+ + +
uga
+
+ + + + + + + +Ducker ( Antilopenart) +duiker (kind of antelope) +céphalophe (espèce d'antilope) + + +
ek
+
+
Ducker ( Antilopenart)
+
+
+
+ + +
zovokö
+
+ + + + + + + +Afrikaner +African +Africain + + +
ek
+
+
Africain
+
+
African
+
+
Afrikaner
+
+
+
+ + +
karavâti
+
+ + + + +Krawatte +necktie +cravate + + +
ek
+
+
cravate
+
+
Krawatte
+
+
necktie
+
+
+
+ + +
tîkö
+
+ + +
ti.kɔ
+ +
3.2
+
+
+ + + +Husten +cough +toux + + +
ek
+
+
cough
+
+
Husten
+
+
toux
+
+
+ + + +Erkältung +cold +rhume + + +
ek
+
+
cold
+
+
Erkältung
+
+
rhume
+
+
+
+ + +
na bê tî ...
+
+ + + + + + + + +(meiner, deiner, ...) Meinung nach +in (my, your, ...) opinion +à (mon, ton, ...) avis + +
Na bê tî mo särängö yê tî lo akpa pëpe.
+ +
In your opinion, his way of acting isn't appropriate.
+
+
+ + +
ek
+
+
(meiner, deiner, ...) Meinung nach
+
+
+
+ + +
zâbalo
+
+ + + + + + + +Dämon +demon +démon + + +
ek
+
+
Dämon
+
+
demon
+
+
démon
+
+ + +
0908
+
+
+ + + +Satan, Teufel +satan +diable + + +
ek
+
+
diable
+
+
satan
+
+
Satan, Teufel
+
+
+
+ + +
yingö tî hînga tî lo akîri
+
+ + + + + + + + + + + + + + + + +wiederbeleben, aufleben +revive +reprendre connaissance + + +
tl
+
+
reprendre connaissance
+
+
revive
+
+
wiederbeleben, aufleben
+
+ +
0211
+
+
+
+ + +
ke (kôlï, wâlï, terê)
+
+ + + + + + +
+ +
1
+
+
+ + + +sich scheiden +divorce, send back, send away +divorcer, renvoyer (une femme) + +
sich scheiden
+
divorce (each other, a wife, a husband)
+
se divorcer
+
+ + +
ek
+
+
divorce
+
+
divorcer
+
+
sich scheiden
+
+ +
0948
+
+
+ + + +sich hassen +hate each other +être méchant l'un envers l'autre + + +
& i-868
+
+ +
ek
+
+
être méchant l'un envers l'autre
+
+
hate each other
+
+
sich hassen
+
+ + +
0285
+
+
+
+ + +
mû na ngangü
+
+ + + + + + + + +mit Gewalt nehmen +take by force +prendre de force + + +
ek
+
+
mit Gewalt nehmen
+
+
prendre de force
+
+
take by force
+
+ +
1423
+
+
+
+ + +
töngana nyen
+
+ + + + + + +Wie geht's? +How are you? +Comment ça va ? + +
Âla yeke töngana nyen?
+ +
How are you?
+
+
+ +
ek
+
+
Wie geht's?
+
+
+ + + +wie? +how? +comment + + +
ek
+
+
comment
+
+
how?
+
+
wie?
+
+ +
1689
+
+
+
+ + +
bengbä yê tî li tî (kôndo)
+
+ + + + + + + + + + + + + + + + + + + + +Striegel; Kamm(eines Hahns) +comb (of rooster) +crête (de coq) + + +
tl
+
+
comb (of rooster)
+
+
crête (de coq)
+
+
Kamm(eines Hahns)
+
+
Striegel
+
+ +
1062
+
+
+
+ + +
kaoya
+
+ + + + + +
ka.o.ya
+ +
1.1.1
+
+
+ + + +Kürbis +squash, pumpkin (oftenː Cucurbita moschcata) +courge, courgette, potiron, "melon" + +
+ + +
sënë tî yâ
+
+ + + + + + + + + + + + +Bandwurm +intestinal worm +ver intestinal + + +
tl
+
+
Bandwurm
+
+
ver intestinal
+
+
worm (intestinal)
+
+ +
0223
+
+
+
+ + +
mbanda
+
+ + + + +Eifersucht +jealousy +jalousie + + +
ek
+
+
Eifersucht
+
+
jalousie
+
+
jealousy
+
+
+
+ + +
yo kïlömêtere ... na
+
+ + + + + + + + + + +,,, km entfernt +... km away +à une distance de ... km + +
Yaka nî ayo mîngi pëpe. A yo kïlömêtere okü na ï ge.
+ +
My house is five kilometers from Gamboula Centre.
+
+
+ + +
ek
+
+
,,, km entfernt
+
+
+
+ + +
tï na ngû
+
+ + + + +fehlschlagen +fail +échouer + +
+ + +
yângâ tî bongö
+
+ + + + + + + + +Saum +hem +ourlet, bord + + +
tl
+
+
hem
+
+
ourlet, bord
+
+
Saum
+
+ +
0728
+
+
+
+ + +
tö kôbe
+
+ + + + + + + + + + + + + + +zubereiten (Essen, Mahlzeit) +prepare (food to cook) +préparer (la nourriture) + + +
tl
+
+
prepare (food to cook)
+
+
préparer (la nourriture)
+
+
zubereiten (Essen, Mahlzeit)
+
+ +
0591
+
+
+
+ + +
sâra töngana sï
+
+ + + + + + + + + + + + + + + + +vorgeben, so tun als ob +pretend, act as if +faire semblant +
vorgeben, so tun als ob
+
+
+
+ + +
pete gôro na ...
+
+ + +
zo sô apete gôro na lo
+
+ + + + + + + + + + + +korrupt (sein) +corrupt (be) +corrompu (être) + + + + + + +
& mle
+
+ +
tl
+
+
(être) corrompu
+
+
corrupt, bribe
+
+
korrupt (sein)
+
+ +
0304
+
+
+ + + +bestechen, schmieren +bribe +soudoyer, verser un pot-de-vin à + +
Zo sô apete gôro na lo tîtene lo dü mvene na li tî mbâ tî lo.
+ +
That person bribed him to lie about his colleague.
+
+
+ + +
mle-0642
+
+
+
+ + +
sobêle
+
+ + +
???
+
+ + + +Defekt +fault, flaw +défaut + +
i-282
+
+
+ + + +Bosheit +wickedness +méchanceté + + + + +Schuld +guilty +agissement coupable + +
+ + +
yorö
+
+ + + + +Medikament +medicine, medication +médicament + + +
tl
+
+
médicament
+
+
medication
+
+
Medikament
+
+ + +
0209
+
+
+ + + +Amulett, Fetisch +amulet, charm, fetish +fétiche, amulette + + +
tl
+
+
amulet, charm, fetish
+
+
Amulett, Fetisch
+
+
fétiche, amulette
+
+ +
0924
+
+
+
+ + +
yê ôko (ayeke daä) pëpe
+
+ + + + + + + + + + + + +nichts +nothing +ne...rien + + + + +
ek
+
+
ne...rien
+
+
nichts
+
+
nothing
+
+ + +
1647
+
+
+
+ + +
bembe
+
+ + +
bɛ.mbɛ
+ +
1.1
+
+
+ + + +spionieren, achten Sie auf +spy, watch, watch out for +épier, guetter +
spionieren, achten Sie auf
+
+
+
+ + +
wûlûwûlû
+
+ + + + +Lärm, Ton +noise, sound +bruit, son + + +
tl
+
+
bruit, son
+
+
Lärm, Ton
+
+
noise, sound
+
+ +
1327
+
+
+
+ + +
yäkä tî âkugbë tî kâsa
+
+ + + + + + + + + + + + + + + + +Garten +garden +jardin + + +
tl
+
+
garden
+
+
Garten
+
+
jardin
+
+ +
0683
+
+
+
+ + +
kolôfîâ
+
+ + +
ko.lo.fi.a
+ +
1.3.3.3
+
+
+ + + +Spitzmaus +shrew +musaraigne + + +
ek
+
+
musaraigne
+
+
shrew
+
+
Spitzmaus
+
+ +
1013
+
+
+
+ + +
tîri birä na
+
+ + + + +kampf gegen +fight against +se battre contre + +
i-221
+
+
+
+ + +
bämarä
+
+ + + + +Löwe +lion +lion + + +
Panthera leo
+
+ +
tl
+
+
lion
+
+
lion
+
+
Löwe
+
+ +
1025
+
+
+
+ + +
kömändâ
+
+ + + + +
kɔ.ma.nda
+ +
2.2.3
+
+
+ + + +Kommandant, Verwalter +commander, administrator +commandant, administrateur + + + + +
ek
+
+
Kommandant, Verwalter
+
+
+
+ + +
marä nî ûse pëpe
+
+ + + + +wie kein anderer +like no other +pas comme les autres + +
Sô pendere zeme marä nî ûse pëpe!
+ +
That's a knife like no other!
+
C'est un couteau pas comme les autres.
+
+
+
+
+ + +
lê tî yangö
+
+ + + + + + + + + + + + +Haken +fishhook +hameçon + + +
tl
+
+
fishhook
+
+
Haken
+
+
hameçon
+
+ + +
0804
+
+
+
+ + +
bêtâ zo
+
+ + + + + +vertrauenswürdig Person +trustworthy person +personne digne de confiance + + +
ek
+
+
vertrauenswürdig Person
+
+
+ +treu Person +faithful person +personne fidèle + + +
ek
+
+
treu Person
+
+
+
+ + +
ngendë
+
+ + + + +Sessel, Stuhl +armchair, chair +fauteuil, chaise + + +
tl
+
+
armchair, chair
+
+
fauteuil, chaise
+
+
Sessel, Stuhl
+
+ +
0693
+
+
+
+ + +
kötä ngû sô asua pëpe
+
+ + + + + + + + + + + + + + + + +See +lake +lac + + +
tl
+
+
lac
+
+
lake
+
+
See
+
+ +
1286
+
+
+
+ + +
mbômbô li
+
+ + + + + + + + +Glatze +baldness +calvitie + + +
ek
+
+
baldness
+
+
calvitie
+
+
Glatze
+
+
+
+ + +
dîngi
+
+ + + + + + + +verbeugen, sich neigen +incline +incliner + + +
ek
+
+
incline
+
+
incliner
+
+
verbeugen, sich neigen
+
+
+
+ + +
purû tî wôtoro
+
+ + + + +Bienenwachs +beeswax, bee-bread +cire d'abeilles + + + +
1155
+
+
+
+ + +
gündâ tî këkë
+
+ + + + + + + + +Wurzeln +roots +racine + + + + +
tl
+
+
racine
+
+
roots
+
+
Wurzeln
+
+ +
1183
+
+
+ + + +unterer Teil des Stamms +base of the trunk +base de l'arbre + + +
ek
+
+
unterer Teil des Stamms
+
+
+
+ + +
wamoyayäa
+
+ + + + +stolze Person +proud person +personne orgueilleuse + +
i-720
+
+
+
+ + +
bübä zo
+
+ + + + + + + + +Dummkopf +fool, stupid person +imbécile, idiot + + +
tl
+
+
Dummkopf
+
+
fool, stupid person
+
+
imbécile, idiot
+
+ + +
0202
+
+
+
+ + +
+
+ + + + +schlagen +hit +frapper + + +
ek
+
+
frapper
+
+
hit
+
+
schlagen
+
+
+ + + +zusammenstoßen, treffen auf +bump, knock against +heurter, cogner + + +
tl
+
+
bump, knock against
+
+
heurter, cogner
+
+
zusammenstoßen, treffen auf
+
+ +
1448
+
+
+
+ + +
kôzo nî
+
+ + + + + + + + +der Erste +firstly +premièrement, tout d'abord + + + + +
ek
+
+
der Erste
+
+
firstly
+
+
+ +zuerst (sein), der Erste (sein) +first (be) +premier (être) + + +
tl
+
+
(être) premier
+
+
first
+
+
zuerst (sein), der Erste (sein)
+
+ +
1623
+
+
+
+ + +
wüngö
+
+ + + + +Zahl +number +nombre + + +
ek
+
+
nombre
+
+
number
+
+
Zahl
+
+
+
+ + +
löndö na kötä ndäpêrêrê
+
+ + + + +früh aufstehen +early riser (be) +matinal (être) + +
i-628
+
+
+
+ + +
fâa
+
+ + + + +Beweis, Zeichen +proof, sign, evidence +preuve, signe + + +
ek
+
+
Beweis, Zeichen
+
+ +
mle-1681
+
+
+
+ + +
li ayeke daä äpe
+
+ + + + + + +unsinnig +have no sense +insensé + + + +
ek
+
+
insensé
+
+
unsinnig
+
+
+
+ + +
terê
+
+ + + + + + + + +Körper +body +corps + + + + +
tl
+
+
body
+
+
corps
+
+
Körper
+
+ +
0001
+
+
+ +selbst +self +soi + + +
ek
+
+
selbst
+
+
self
+
+
soi
+
+ +
0327
+
+
+
+ + +
yô lê
+
+ + + + + + + + +aufschauen +look up +lever la tête + + +
ek
+
+
aufschauen
+
+
+
+ + +
ndadë
+
+ + + + +am Tag darauf +next day +lendemain + +
Âla längö, na ndadë nî, âla löndö ti gue.
+ +
They slept, the next day, they got up to go.
+
Ils dormaient, le lendemain, ils se levaient pour partir.
+
+
+ + +
ek
+
+
am Tag darauf
+
+
lendemain
+
+
+
+ + +
tüküngö tî ngo
+
+ + + + + + + + + + + + +Fehlgeburt +miscarriage +fausse couche + + +
tl
+
+
fausse couche
+
+
Fehlgeburt
+
+
miscarriage
+
+ + +
0242
+
+
+
+ + +
lapôo
+
+ + +
la.poo
+ +
1.31 / 1.21
+
+
+ + + +Steuern +taxes +impôt + + +
tl
+
+
impôt
+
+
Steuern
+
+
taxes
+
+ +
0838
+
+
+ + + +Tribut +tribute +tribut + + +
ek
+
+
tribut
+
+
Tribut
+
+
tribute
+
+ +
0839
+
+
+
+ + +
gï töngana sô
+
+ + + + +ebenso +just as +de même que + +
Lo nyön yorö nî gï töngana sô a fa na lo tî sâra.
+ +
He took the medicine just as he was told to do.
+
Il a pris les médicaments de même qu'on les lui a montré.
+
+
+
+
+ + +
kôzonî sï
+
+ + + + + + + + +bevor +before +avant de + +
Kôzonî sï mo te kôbe, sambêla Nzapä.
+ +
Before you eat, pray to God.
+
+
+ + +
ek
+
+
before
+
+
bevor
+
+ + +
1354
+
+
+
+ + +
+
+ + + + +schreiben +write +écrire + + +
ek
+
+
écrire
+
+
schreiben
+
+
write
+
+
+ + + +nachzeichnen +copy, trace +tracer + + +
ek
+
+
nachzeichnen
+
+
tracer
+
+
+
+ + +
kôlï-likundû
+
+ + + + + + + + + + + + +Zauberer +sorcerer (male) +sorcier (mâle) + + +
tl
+
+
sorcerer (male)
+
+
sorcier (male)
+
+
Zauberer
+
+ + +
0411
+
+
+
+ + +
kûtu
+
+ + + + +Million (1,000,000) +million (1,000,000) +million (1,000,000) + + +
ek
+
+
Million (1,000,000)
+
+
+
+ + +
li tî ... ayeke daä pëpe
+
+ + +
originally: zo sô asâra yê töngana zo sô li tî lo ayeke daä pëpe
+
+ + + + + + + + + + + +unüberlegt (unreflecting), dumm (stupid) +stupid person +personne stupide + + +
tl
+
+
personne stupide
+
+
stupid person
+
+
unüberlegt (unreflecting), dumm (stupid
+
+ + +
0202
+
+
+
+ + +
yê sô afa atene
+
+ + + + +Beweis +evidence, proof +preuve + +
mle-1681
+
+
+
+ + +
këkë tî wäsâ
+
+ + + + + + + + +Tamarindenbaum +tamarind tree +tamarinier + + +
Tamarindus indica
+
+ +
ek
+
+
tamarind tree
+
+
Tamarindenbaum
+
+
tamarinier
+
+ +
1167
+
+
+
+ + +
liködörö
+
+ + +
li.kɔ.dɔ.ɾɔ
+ +
1.2.2.2
+
+
+ + + +Hauptstadt +capital city +capitale + + +
ek
+
+
capitale
+
+
Hauptstadt
+
+
+
+ + +
kä tî yâ tî këkë
+
+ + + + + + + + + + + + + + + + +Knoten (im Holz) +knot (in wood) +nœud (dans le bois) + + +
tl
+
+
knot (in wood)
+
+
Knoten (im Holz)
+
+
nœud (dans le bois)
+
+ +
0721
+
+
+
+ + +
tîsa
+
+ + + + +einladen +invite +inviter + + +
tl
+
+
einladen
+
+
invite
+
+
inviter
+
+ +
0418
+
+
+ + + +herbeirufen, vorladen +summon +convoquer + + +
ek
+
+
convoquer
+
+
herbeirufen, vorladen
+
+
summon
+
+
+
+ + +
mbïö
+
+ + +
mbi.ɔ
+ +
2.2
+
+
+ + + +Mahagonibaum +mahogany tree +acajou + + +
tl
+
+
acajou
+
+
Mahagonibaum
+
+
mahogany tree
+
+ +
1160
+
+
+
+ + +
këngë
+
+ + + + +Glied, Penis +penis +pénis + + +
tl
+
+
Glied, Penis
+
+
penis
+
+
pénis
+
+ +
0046
+
+
+
+ + +
kuasînga
+
+ + + + +Radio- oder Fernsehsendung +radio or television program +émission radiophonique ou télévisée + + +
ek
+
+
Radio- oder Fernsehsendung
+
+
+
+ + +
otâ nî
+
+ + + + + + + + + +dritter (sein) +third (be) +troisième (être) + +
Adü âla otâ. Sô otâ nî laâ.
+ +
3 were born. That is the third one.
+
+
+ + +
tl
+
+
(être) troisième
+
+
dritter (sein)
+
+
third
+
+ +
1625
+
+
+
+ + +
gbagbara
+
+ + + + +jemanden schubsen, schütteln +jostle, shake someone +bousculer, secouer quelqu'un +
jemanden schubsen, schütteln
+
+
+
+ + +
ahön gbüngö-li
+
+ + + + + + + + +erstaunlich +amazingly +étonnamment + +
Könöngö tî doli ahön gbüngö-li!
+
+
+
+ + +
kêtê këkë sô akpa kî
+
+ + + + + + + + + + + + + + + + + + + + +Splitter +splinter, sliver +écharde, éclat + + +
tl
+
+
écharde, éclat
+
+
splinter, sliver
+
+
Splitter
+
+ + +
0722
+
+
+
+ + +
na ndo tî lo
+
+ + + + + + + + + + + + + + +zu Hause +at home +chez lui + +
Lo yeke dutï na ndo tî lo.
+ +
He lives at home.
+
Il habite chez lui.
+
+
+ + +
ek
+
+
zu Hause
+
+
+
+ + +
kugbë tî mbûrü
+
+ + + + + + + + + + + + +Öl-Palme Palmwedel +branche, frond of oil palm +palme du palmier à huile + +
branche, frond of oil palm
+
+
Öl-Palme Palmwedel
+
+
palme du palmier à huile
+
+
+
+ + +
sibisïi
+
+ + + + +Rohrratte +giant cane rat +aulacode + +
+ + +
wato
+
+ + + + +Feind +enemy +ennemi + + +
tl
+
+
enemy
+
+
ennemi
+
+
Feind
+
+ +
0386
+
+
+
+ + +
iriyâ-yâ
+
+ + +Hau ruck! +heave-ho + +
+ + +
këkë tî bâlâwâ
+
+ + + + + + + + + + + + +Karité-Baum +shea butter tree, shea nut tree +karité + + +
Buterospermum paradoxum, subsp. parkii
+
+ +
tl
+
+
karité
+
+
Karité-Baum
+
+
shea butter tree, shea nut tree
+
+ +
1164
+
+
+
+ + +
+
+ + + + +Feuer +fire +feu + + +
tl
+
+
feu
+
+
Feuer
+
+
fire
+
+ +
1305
+
+
+ + + +Hitze +heat +chaleur + +
ndo amû wâ mîngi.
+ +
es ist heiß
+
it`s hot
+
il fait chaud
+
+
+ +
ndo ayeke wâ
+ +
es ist heiß
+
it's hot
+
il fait chaud
+
+
+ + +
ek
+
+
chaleur
+
+
heat
+
+
Hitze
+
+ +
i-156
+
+
+ + + +extrem heiß +scorching hot (be) +brûlant (en parlant d'un plat au feu) (être) + +
i-118
+
+
+
+ + +
papa
+
+ + + + +Streit +argument +dispute + + +
tl
+
+
argument
+
+
dispute
+
+
Streit
+
+ + +
0466
+
+
+ + + +Streit +quarrel +querelle + + +
tl
+
+
quarrel
+
+
querelle
+
+
Streit
+
+ + +
0508
+
+
+ + + +sich streiten +argue +se disputer + + +
tl
+
+
argue
+
+
se disputer
+
+
sich streiten
+
+ +
0465
+
+
+
+ + +
balëôko na osïö
+
+ + + + + + + + + + + + +vierzehn (14) +fourteen (14) +quatorze (14) + + +
tl
+
+
fourteen (14)
+
+
quatorze (14)
+
+
vierzehn (14)
+
+ +
1603
+
+
+
+ + +
ya na yâ tî pupu
+
+ + + + + + + + + + + + +hochfliegen, schweben +soar in the air +planer dans l'air + + +
tl
+
+
hochfliegen, schweben
+
+
planer dans l'air
+
+
soar in the air
+
+ +
1073
+
+
+
+ + +
chêze
+
+ + + + +Stuhl +chair +chaise + + +
tl
+
+
chair
+
+
chaise
+
+
Stuhl
+
+ +
0693
+
+
+
+ + +
wayämbängö âgene
+
+ + + + + + + + + + + + + + + + +Gastgeber(in) +host +hôte (qui accueille) + + +
tl
+
+
Gastgeber(in)
+
+
host
+
+
hôte (qui accueille)
+
+ +
0383
+
+
+
+ + +
makala
+
+ + + + + + + +fritierter Krapfen +deep fried dough ball, fritter +beignet + + +
ek
+
+
beignet
+
+
fritierter Krapfen
+
+
+
+ + +
zî bê
+
+ + + + + + + + +nicht mehr daran denken +not longer think about +ne plus penser à + + + + +
ek
+
+
nicht mehr daran denken
+
+
+
+ + +
lê tî mbûrü
+
+ + + + + + + + + + + + +Palmnuss +palm nut +noix de palme + + +
Elaeis guineensis
+
+ +
tl
+
+
noix de palme
+
+
palm nut
+
+
Palmnuss
+
+ +
1240
+
+
+
+ + +
ananä
+
+ + + + +Ananas +pineapple +ananas + + +
tl
+
+
ananas
+
+
Ananas
+
+
pineapple
+
+ +
1214
+
+
+
+ + +
ngû tî yânga
+
+ + + + + + + + +Speichel +saliva +salive + + +
tl
+
+
saliva
+
+
salive
+
+
Speichel
+
+ +
0093
+
+
+
+ + +
ndoyî
+
+ + +
ndo.yi
+ +
1.3
+
+
+ + + +Namensvetter +namesake +homonyme + + +
tl
+
+
homonyme
+
+
Namensvetter
+
+
namesake
+
+ +
0360
+
+
+
+ + +
midïi
+
+ + + + +Mittag +noon +midi + + +
ek
+
+
midi
+
+
Mittag
+
+
noon
+
+ +
1379
+
+
+
+ + +
na bê ûse
+
+ + + + + + + + +nicht ganz einig +not entirely in agreement +pas tout à fait d'accord + +
Âla leke tënë nî na bê ûse.
+ +
They solved the problem without being entirely in agreement [with the result].
+
+
+ + +
ek
+
+
nicht ganz einig
+
+
+
+ + +
sûru
+
+ + + + +zerreissen +rip, tear (tr) +déchirer + + +
tl
+
+
déchirer
+
+
rip, tear (tr)
+
+
zerreissen
+
+ +
1453
+
+
+
+ + +
kua tî ködörö
+
+ + + + + + + + +Freiwilligen dienst +voluntary service +travail volontaire + + + + +
ek
+
+
Freiwilligen dienst
+
+
+ + + +politische Aufgabe +political work +devoir politique + + +
ek
+
+
politische Aufgabe
+
+
+
+ + +
kânga terê
+
+ + + + + + + + +dem Ehepartner treu bleiben +remain faithful to one's partner +rester fidèle à son époux + + +
ek
+
+
dem Ehepartner treu bleiben
+
+
+
+ + +
ndo tî âwakînda
+
+ + + + + + + + + + + + +Wohnort der Toten (geistlich) +dwelling place of the dead (spiritual) +séjour des morts (spirituel) + + +
tl
+
+
dwelling place of the dead (spiritual)
+
+
séjour des morts (spirituel)
+
+
Wohnort der Toten (geistlich)
+
+ +
0931
+
+
+
+ + +
kötä kömändâ
+
+ + + + + + + + +Präfekt +governor +préfet + + +
ek
+
+
governor
+
+
Präfekt
+
+
préfet
+
+
+
+ + +
pâsi tî dûnîa
+
+ + + + + + + + + + + +Alltagsprobleme +life's sufferings +souffrances de la vie + + +
ek
+
+
Alltagsprobleme
+
+
+
+ + +
yôo (yê)
+
+ + + + + +
check tone: ö for Georgette Florence Koyt-Deballe
+
+
+ + + +betteln +beg (for money) +mendier + + +
tl
+
+
beg (for money)
+
+
betteln
+
+
mendier
+
+ + +
0831
+
+
+
+ + +
tôndôrô
+
+ + +
tɔ.ndɔ.ɾɔ
+ +
3.3.3
+
+
+ +eng (sein) +narrow (be) +étroit (être) + + + +
1521
+
+
+
+ + +
suîya
+
+ + + + +Grillfleisch +grilled meat +brochette, viande grillée + + +
ek
+
+
Grillfleisch
+
+
+
+ + +
li mbômbô
+
+ + + + + + + + +Glatzkopf +bald person +personne chauve + + +
ek
+
+
Glatzkopf
+
+
+
+ + +
deku
+
+ + + + +Maus +mouse +souris + + +
ek
+
+
Maus
+
+
mouse
+
+
souris
+
+ +
1009
+
+
+ + + +Ratte +rat +rat + + +
ek
+
+
rat
+
+
rat
+
+
Ratte
+
+ +
1010
+
+
+
+ + +
kpasa
+
+ + + + +Garnele +crawfish +crevette + + +
tl
+
+
crawfish
+
+
crevette
+
+
Garnele
+
+ +
1092
+
+
+
+ + +
da tî âwôtoro
+
+ + + + + + + + + + + + +Bienenstock +beehive +ruche + + +
tl
+
+
beehive
+
+
Bienenstock
+
+
ruche
+
+ + +
1154
+
+
+
+ + +
zî ngû na yâ tî (ngö, mangbökö)
+
+ + + + + + + + + + + + + + + + + + + + + + + + +ausschöpfen (Kanu, Boot) +bail out (canoe, boat) +écoper (pirogue, bateau) + + +
tl
+
+
ausschöpfen (Kanu, Boot)
+
+
bail out (canoe, boat)
+
+
écoper (pirogue, bateau)
+
+ + +
0854
+
+
+
+ + +
+
+ + + + +schmutzig, schmutzig werden +dirty, get dirty +salir, se salir + +
i-914
+
+
+
+ + +
andâa
+
+ + + + +jedoch, obwohl +however, although +or, pourtant + +
ek
+
+
jedoch, obwohl
+
+
+
+ + +
yeke daä
+
+ + + + + + + + + + +be there, be present + +
Kôkôkô! Mo yeke daä?
+ +
Knock, knock! Are you there?
+
+
+
be present
+
+
+ +Wie geht es ...? +How are ...? +Ça va ? + +
Wie geht es ...?
+
How is/are ...? (used as a greeting formula)
+
Ça va ? (employé en tant que formule de salutation)
+
+ +
Balaô. Mo yeke daä?
+ +
Hi. How are you?
+
+
+ +
ek
+
+
Wie geht es ...?
+
+
+
+ + +
sâra kua na...
+
+ + + + + + + + + + + + +dienen +serve +servir + + +
tl
+
+
dienen
+
+
serve
+
+
servir
+
+ +
0501
+
+
+
+ + +
vene
+
+ + + + + + + +Lüge +lie +mensonge + +
lie
+
+
Lüge
+
+
mensonge
+
+ + +
0452
+
+
+
+ + +
zo tî sopo
+
+ + + + + + + + + + + +Faulenzer +lazy bum +fainéant + + +
ek
+
+
fainéant
+
+
Faulenzer
+
+
+
+ + +
kângbi
+
+ + + + +trennen, aufteilen +divide, split up +diviser, séparer + + + + +
tl
+
+
divide, split up
+
+
diviser, séparer
+
+
trennen, aufteilen
+
+ +
1466
+
+
+ + + +Spaltung, Trennun +division +division + + +
ek
+
+
division
+
+
division
+
+
Spaltung, Trennun
+
+
+ + + +Part +portion, share +part + +
i-749
+
+
+ + + +teilen, austeilen +share, hand out, give out +partager, distribuer + + +
ek
+
+
partager
+
+
share
+
+
teilen
+
+ +
i-317
+
+
+
+ + +
gbôkolobô
+
+ + +
gbo.ko.lo.bo
+ +
3.1.1.3
+
+
+ + + +Nabelbruch +hernia (umbilical) +hernie + +
+ + +
pîka yângâ
+
+ + + + + + + + + + + + +schreien (vor Freude) +whoop +crier (de joie) + + +
ek
+
+
schreien (vor Freude)
+
+
whoop
+
+
+ + + +gackern (wie Huhn) +cackle (as of chicken), ululate +caqueter (p. ex. poule) + + +
tl
+
+
cackle (as of chicken), ululate
+
+
caqueter (p. ex. poule)
+
+
gackern (wie Huhn)
+
+ +
1077
+
+
+
+ + +
sâra purû
+
+ + + + + + + + + + + + +koten, scheißen +defecate +déféquer, chier + + +
tl
+
+
defecate
+
+
déféquer, chier
+
+
koten, scheißen
+
+ +
0121
+
+
+
+ + +
kötä dongi
+
+ + + + + + + + + + + + +Flughund, Obstfledermaus +fruit bat +roussette (grande chauve-souris) + + +
tl
+
+
Flughund, Obstfledermaus
+
+
fruit bat
+
+
roussette (grande chauve-souris)
+
+ +
1020
+
+
+
+ + +
kpangba
+
+ + + + +hut + +
+ + +
dîngi terê tî kpë mbênî yê
+
+ + + + + + + + + + + + + + + + + + + + +vermeiden, ausweichen +evade +esquiver, éviter + + +
tl
+
+
esquiver, éviter
+
+
evade
+
+
vermeiden, ausweichen
+
+ +
0794
+
+
+
+ + +
doroko
+
+ + +
dɔ.ɾɔ.kɔ
+ +
1.1.1
+
+
+ + + +Ein großes Tier häuten, ausnehmen und in Stücke zerteilen +cut a large animal into pieces +dépecer un animal de grande taille + + +
ek; bmm; sam; lb
+
+
cut a large animal into pieces
+
+
dépecer un animal de grande taille
+
+
Ein großes Tier häuten, ausnehmen und in Stücke zerteilen
+
+ +
0798
+
+
+ + + +auszunehmen +gut +étriper, vider + +
mle-2208
+
+
+
+ + +
kpêe
+
+ + + + + + + +sauer (sein) +sour (be) +acide, aigre (être) + +
Vinaigre akpêe mîngi!
+ +
Vinegar is very sour!
+
+
+ + +
tl
+
+
(être) acide, aigre
+
+
sauer (sein)
+
+
sour
+
+ + +
1566
+
+
+
+ + +
bênyämä
+
+ + + + +unbewohnte Gegend +wilderness +campagne inhabitée + + +
ek
+
+
unbewohnte Gegend
+
+
wilderness
+
+
+
+ + +
+
+ + +
so
+ +
1
+
+
+ + + +Furz +fart +pet + + + + + +furzen +fart +péter + + +
0120
+
+
+
+ + +
sâra dödö
+
+ + + + + + +
sa.ɾa dɔ.dɔ
+ +
3.1 2.2
+
+
+ + + +tanzen +dance +danser + + + + +
ek
+
+
dance
+
+
danser
+
+
tanzen
+
+ +
0884
+
+
+
+ + +
miombe
+
+ + +
mi.ɔ.mbe
+ +
1.1.1
+
+
+ + + +acht (8) +eight (8) +huit (8) + + +
tl
+
+
acht (8)
+
+
eight (8)
+
+
huit (8)
+
+ + +
1597
+
+
+
+ + +
kâlângbâ
+
+ + + + + + + +afrikanisches Xylophon +African xylophone +balafon + + +
tl
+
+
afrikanisches Xylophon
+
+
balafon
+
+ +
0891
+
+
+
+ + +
ngonzo asâra ...
+
+ + + + + + + + + +wütend (sein) +angry (be) +fâché, en colère (être) + +
Ngonzo asâra lo sî lo pîka wâli tî lo.
+ +
He was angry and so he hit his wife.
+
+
+ + +
tl
+
+
(être) fâché, en colère
+
+
angry
+
+
wütend (sein)
+
+ + +
0279
+
+
+
+ + +
kêtê gerê
+
+ + + + + + + + + + + + +Zehe +toe +orteil + + +
tl
+
+
orteil
+
+
toe
+
+
Zehe
+
+ +
0073
+
+
+
+ + +
ngbâ
+
+ + + + +bleiben +stay, remain +rester, demeurer + + +
tl
+
+
bleiben
+
+
rester, demeurer
+
+
stay, remain
+
+ +
1403
+
+
+
+ + +
nyama tî terê
+
+ + + + + + + + + + + + +Muskel +muscle +muscle + + +
tl
+
+
muscle
+
+
muscle
+
+
Muskel
+
+ + +
0089
+
+
+
+ + +
na mbänä
+
+ + + + + + + + + + + +absichtlich, gemein +on purpose +exprès, méchamment + +
Lo dëköngö na mbänä töngana âla yeke hë bîâ.
+ +
He shouted out on purpose while they were singing.
+
Il a crié exprès pendant qu'ils chantent.
+
+
+ + +
ek
+
+
absichtlich, gemein
+
+
+ + + +unvorsichtig +carelessly +avec négligence + +
Lo sâra na mbänä si nginza nî atûku na lêgë.
+ +
He carelessly let the money fall on the road.
+
Il était négligent si l'argent est tombé sur la route.
+
+
+ +
mle-0754
+
+
+ + + +absichtlich +deliberately +intentionnellement + +
mle-1291
+
+
+
+ + +
gbari
+
+ + + + +Bohnen +bean +haricot + +
i-504
+
+
+
+ + +
ariköo
+
+ + +
a.ɾi.koo
+ +
1.1.21
+
+
+ + + +Bohnen +bean +haricot + + +
ek
+
+
beans
+
+
Bohnen
+
+
haricots
+
+ +
i-504
+
+
+
+ + +
zî yângâ
+
+ + + + + + + + + + + +etwas sagen +say something +dire quelque chose + + + + +
ek
+
+
etwas sagen
+
+
+ + + +gähnen +yawn +bâiller + + +
tl
+
+
bâiller
+
+
gähnen
+
+
yawn
+
+ +
0107
+
+
+
+ + +
sûpu
+
+ + + + +Soße +sauce +sauce + +
i-921
+
+
+
+ + +
kête nyama sô ahara na sêse
+
+ + + + + + + + + + + + + + + + + + + + +Ameise +ant +fourmi + + +
tl
+
+
Ameise
+
+
ant
+
+
fourmi
+
+ +
1123
+
+
+
+ + +
popôto (simän) tî kpaka na terê tî da
+
+ + + + + + + + + + + + + + + + + + + + +Putz, Verputz +plaster +crépissage, plâtre + + +
tl
+
+
crépissage, plâtre
+
+
plaster
+
+
Putz, Verputz
+
+ + +
0689
+
+
+
+ + +
ngäsangbaga
+
+ + + + + + + +Schaf +sheep +mouton + + +
tl
+
+
mouton
+
+
Schaf
+
+
sheep
+
+ + +
0969
+
+
+
+ + +
tüküngö ngo
+
+ + + + + + + + +Abtreibung +abortion +avortement + + +
ek
+
+
abortion
+
+
Abtreibung
+
+
avortement
+
+
+
+ + +
kpu na kpu
+
+ + + + +für immer, ewiglich +forever, eternally +à jamais, éternellement + +
Âwamäbê ayeke dutï na yäyû kpu na kpu.
+ + +
+
für immer, ewiglich
+
+
+
+ + +
pïkängö lê-kôbe
+
+ + + + + + + + + + + + + + + + +dreschen +thresh, beat (grain) +battre (la céréale) + +
battre (la céréale)
+
+
dreschen
+
+
thresh, beat (grain)
+
+ +
0762
+
+
+
+ + +
gbâ tî sêse
+
+ + + + +hügel +mound of soil (for plants) +butte + + +
i-120
+
+
+
+ + +
yongôro kâmba tî li tî angadî
+
+ + + + + + + + + + + + + + + + + + + + +Fühler (Fauna) +antenna +antenne + + +
tl
+
+
antenna
+
+
antenne
+
+
Fühler (Fauna)
+
+ +
1148
+
+
+
+ + +
kinda-gozo
+
+ + +
ki.nda.gɔ.zɔ
+ +
1.1.1.1
+
+
+ + + +green grasshopper +sauterelle verte + + +
ek
+
+
green grasshopper
+
+
sauterelle verte
+
+ +
1132
+
+
+
+ + +
ngbanga
+
+ + + + +Urteil, Gericht +judgment +jugement + + + + +
ek
+
+
judgment
+
+
jugement
+
+
Urteil, Gericht
+
+ +
i-552
+
+
+ + + +Strafe +penalty, punishment +pénalité, punition + + +
tl
+
+
pénalité, punition
+
+
penalty, punishment
+
+
Strafe
+
+ +
0525
+
+
+
+ + +
radïo
+
+ + +
ɾa.dio
+ +
1.21
+
+
+ + + +Radio +radio +radio + + +
ek
+
+
radio
+
+
radio
+
+
Radio
+
+
+
+ + +
küä (tî terê)
+
+ + + + +Haar, Fell +hair, fur +poil, cheveux, fourrure + + + + +
tl
+
+
Haar, Fell
+
+
hair, fur
+
+
poil, cheveux, fourrure
+
+ +
0029
+
+
+
+ + +
kanivöo
+
+ + + + + + + + + + +
ka.ni.voo
+ +
1.1.21
+
+
+ + + +GosseGraben +gutter, ditch +caniveau, fossé, rigole + + +
tl
+
+
ditch
+
+
fossé, rigole
+
+
Graben
+
+ +
1266
+
+
+
+ + +
fuku
+
+ + + + +Mehl +flour +farine + + + + +
tl
+
+
farine
+
+
flour
+
+
Mehl
+
+ +
0577
+
+
+ + + +pulver +powder +poudre + +
i-802
+
+
+
+ + +
ngû tî me
+
+ + + + + + + + + + + + +Milch +milk +lait + + +
tl
+
+
lait
+
+
Milch
+
+
milk
+
+ + +
0585
+
+
+
+ + +
zî yâ tî tënë
+
+ + + + + + + + + + + + + + + + +erklären +explain +expliquer + + +
tl
+
+
erklären
+
+
explain
+
+
expliquer
+
+ +
0449
+
+
+
+ + +
gba
+
+ + + + +Geschlechtsverkehr haben (menschlich) +have sex with (for humans) +s'accoupler (réservés aux êtres humains) + + +
ek
+
+ + +
0487
+
+
+
+ + +
finî
+
+ + + + +Leben +life +vie + + +
tl
+
+
Leben
+
+
life
+
+
vie
+
+ +
0238
+
+
+ +am Leben (sein), lebendig (sein) +alive (be) +vivant, en vie (être) + + +
tl
+
+
(être) vivant, en vie
+
+
alive
+
+
am Leben (sein), lebendig (sein)
+
+ +
0239
+
+
+
+ + +
nzönî ahön
+
+ + + + +besser +better (be) +mieux (être) + +
Ngombe afâ nyama nzönî ahön kokora.
+ + +
+ +
i-649
+
+
+
+ + +
pîka ... na yâ tî kpu
+
+ + + + + + + + + + + + + + + + +stampfen +pound (food) +piler + + +
tl
+
+
piler
+
+
pound (food)
+
+
stampfen
+
+ + +
0599
+
+
+
+ + +
ndäpêrê
+
+ + + + + + + +Morgen +morning +matin + + + + +
ek
+
+
matin
+
+
Morgen
+
+
morning
+
+ + +
1378
+
+
+
+ + +
walëkëngö sakpä
+
+ + + + + + + + + + + + + + + + +Weber +weaver +tisserand + + +
tl
+
+
tisserand
+
+
weaver
+
+
Weber
+
+ +
0401
+
+
+
+ + +
nyön mênë
+
+ + + + + + + + + + + +einen Pakt abschließen +make a pact +faire un pacte + + +
ek
+
+
einen Pakt abschließen
+
+
+
+ + +
gi li
+
+ + + + + + + + + + + +versuchen zu verstehen +try to understand +tenter de comprendre + +
Mbï gi li tî mbï na tënë sô gbâ.
+ +
Es ist mir unbegreiflich
+
It's beyond me
+
Cela me dépasse
+
+
+ + +
ek
+
+
versuchen zu verstehen
+
+
+
+ + +
ngangü pëpe
+
+ + + + + + + +leicht +easy (be) +facile (être) + +
Lüngö kârâkö ayeke ngangû pëpe.
+ +
Planting peanuts is easy.
+
Semer des arachides est facile.
+
+
+ +
i-391
+
+
+
+ + +
derê
+
+ + + + +Wand, Mauer +wall +mur + + +
tl
+
+
mur
+
+
wall
+
+
Wand, Mauer
+
+ + +
0664
+
+
+
+ + +
bakarî
+
+ + + + +Wörterbuch +dictionary +dictionnaire + + +
ek
+
+
dictionary
+
+
dictionnaire
+
+
Wörterbuch
+
+
+
+ + +
dambâ
+
+ + + + +Schwanz +tail +queue + + +
tl
+
+
queue
+
+
Schwanz
+
+
tail
+
+ +
1031
+
+
+
+ + +
te gîgî
+
+ + + + + + + + + + + +lange leben +live a long life +vivre longtemps + + +
ek
+
+
lange leben
+
+
+
+ + +
âmetë
+
+ + + + +Mädchenhüpfspiel +hopping game for girls +jeu des filles + + +
ek
+
+
Mädchenhüpfspiel
+
+
+
+ + +
söngö tî yâ tî terê
+
+ + + + + + + + + + + + + + + + +Schmerz +pain +douleur + + +
tl
+
+
douleur
+
+
pain
+
+
Schmerz
+
+ + +
0230
+
+
+
+ + +
atâa sô
+
+ + + + + + + + +obwohl, obgleich, trotz +even though +malgré que, bien que + + +
ek
+
+
obwohl, obgleich, trotz
+
+
+
+ + +
gerê tî këkë
+
+ + + + + + + + + + + + +Baumstamm +trunk (of tree) +tronc (d'arbre) + + +
tl
+
+
Baumstamm
+
+
tronc (d'arbre)
+
+
trunk (of tree)
+
+ +
1179
+
+
+
+ + +
sêse
+
+ + +
sɛ.sɛ / se.se / si.si
+ +
3.1
+
+
+ + + +Boden, Erde +ground, earth +sol, terre + + + + +
tl
+
+
Boden, Erde
+
+
ground, earth
+
+
sol, terre
+
+ +
1261
+
+
+ + + +Erde, Boden +dirt, soil +terre (sol) + + +
tl
+
+
dirt, soil
+
+
Erde, Boden
+
+
terre (sol)
+
+ +
1276
+
+
+ + + +Land +country +pays + + +
ek
+
+
country
+
+
Land
+
+
pays
+
+
+
+ + +
längö na (kôli, wâli)
+
+ + + + + + + + + + + + + + + + +Geschlechtsverk ehr haben +copulate +faire l'amour + +
copulate
+
+
faire l'amour
+
+
Geschlechtsverk ehr haben
+
+ + +
0487
+
+
+
+ + +
li tî ... aso
+
+ + + + + + + + + + + + +Kopfschmerzen +headache +maux de tête + + +
tl
+
+
headache
+
+
Kopfschmerzen
+
+
maux de tête
+
+ +
0235
+
+
+
+ + +
mbëlä
+
+ + + + +Schrei +shout +cri + + +
ek
+
+
cri
+
+
Schrei
+
+
shout
+
+
+ + + +Verordnung +decree +décret + + +
ek
+
+
decree
+
+
décret
+
+
Verordnung
+
+
+
+ + +
malînga
+
+ + + + +Tanz +dance +danse + + +
ek
+
+
dance
+
+
danse
+
+
Tanz
+
+ +
0883
+
+
+
+ + +
sûmbû
+
+ + + + +Schwanz im traditionellen Tanz +tail used in traditional dancing +queue d'animal (dans la danse traditionnelle) + +
Schwanz im traditionellen Tanz
+
animal tail used in traditional dancing
+
queue d'animal utilisée dans la danse traditionnelle
+
+ + +
ek
+
+
Schwanz im traditionellen Tanz
+
+
+
+ + +
balëôko na miombe
+
+ + + + + + + + + + + + +achtzehn (18) +eighteen (18) +dix-huit (18) + + +
tl
+
+
achtzehn (18)
+
+
dix-huit (18)
+
+
eighteen (18)
+
+ +
1607
+
+
+
+ + +
gä wên
+
+ + + + + + + + + + + +unerträglich werden +become difficult, unbearable +devenir difficile, insupportable + + +
ek
+
+
unerträglich werden
+
+
+
+ + +
balëôko na ôko
+
+ + + + + + + + + + + + +elf (11) +eleven (11) +onze (11) + + +
tl
+
+
eleven (11)
+
+
elf (11)
+
+
onze (11)
+
+ +
1600
+
+
+
+ + +
mvenî
+
+ + + + +Besitzer +owner +propriétaire, maître + + +
ek
+
+
Besitzer
+
+
owner
+
+
propriétaire, maître
+
+ +
0812
+
+
+
+ + +
kûi awe
+
+ + + + + + + + + + +tot (sein) +dead (be) +mort (être) + +
Mbï gue na danganga tî bâa lo me lo kûi awe.
+ +
I went to the hospital to see him but he was dead.
+
+
+ + +
tl
+
+
(être) mort
+
+
dead
+
+
tot (sein)
+
+ +
0251
+
+
+
+ + +
vurü
+
+ + + + +weiß (sein) +white (be) +blanc (être) + +
Neige ayeke vurü töngana kotöon.
+ +
Snow is white like cotton.
+
+
+ + +
tl
+
+
blanc
+
+
weiß (sein)
+
+
white
+
+ + +
1555
+
+
+ + + +hell (sein) +clear (be) +clair (être) + +
Ngû nî ayeke vurü ahön. Ï lîngbi tî bâa âsusu mîngi.
+ +
The water is very clear. We can see many fish.
+
+
+
clair
+
+
clear
+
+
hell (sein)
+
+
+ + + +sauber (sein) +clean (be) +propre (être) + +
Bongö nî ayeke vurü mîngi tëti lo sukûla nî na savöno.
+ +
The clothes are very clean because he washed them with soap.
+
+
+
clean
+
+
propre
+
+
sauber (sein)
+
+
+
+ + +
zîa lêgë ti
+
+ + + + +verlassen +forsake +abandonner, délaisser + +
mle-1975
+
+
+
+ + +
vurü mê
+
+ + + + +weißer Mann +white man +homme blanc + + + +
0330
+
+
+
+ + +
kânga kä
+
+ + + + + + + + +Wunde verbinden +bind up a wound +soigner une plaie + + +
ek
+
+
Wunde verbinden
+
+
+
+ + +
ndümbü
+
+ + +
Not known by all. May have come from Lingala: bolûmbû. kc
+
+ + + +Nacktheit +nakedness +nudité +
Nacktheit
+
+
nakedness
+
+
nudité
+
+
+
+ + +
lündü
+
+ + + + + + + +aufstehen +get up, rise up +se mettre debout, se lever + + + + +einen Ort verlassen; +leave a place +quitter un endroit, partir + + + + +starten (mit einem Flugzeug), abfahren +take off +décoller, démarrer + +
+ + +
dë gapa
+
+ + + + + + + + + + + +Werbung +publicity +publicité + + +
ek
+
+
publicity
+
+
Werbung
+
+
+ + + +Wahlkampf +electoral campaign +campagne électorale + + +
ek
+
+
Wahlkampf
+
+
+
+ + +
mosoro
+
+ + +
mɔ.sɔ.ɾɔ
+ +
1.1.1
+
+
+ + + +Reichtum +wealth +richesse + + +
ek
+
+
Reichtum
+
+
richesse
+
+
wealth
+
+
+
+ + +
bîrï
+
+ + + + +gestern +yesterday +hier + + + + +
tl
+
+
gestern
+
+
hier
+
+
yesterday
+
+ +
1371
+
+
+
+ + +
hara
+
+ + + + +kriechen +crawl +ramper, marcher à quatre pattes + + +
tl
+
+
crawl
+
+
kriechen
+
+
ramper, marcher à quatre pattes
+
+ +
0158
+
+
+ + + +krabbeln, kriechen (Eidechse) +crawl (lizard) +ramper (lézard) + + +
tl
+
+
crawl (lizard)
+
+
krabbeln, kriechen (Eidechse)
+
+
ramper (lézard)
+
+ +
1115
+
+
+ + + +auf der Pirsch sein, sich (an)schleichen +stalk +chasser à l'affût + + +
ek
+
+
auf der Pirsch sein, sich (an)schleichen
+
+
chasser à l'affût
+
+
stalk
+
+ +
0776
+
+
+
+ + +
ngbangbo ûse
+
+ + + + + + + + + + + + +zweihundert (200) +two hundred (200) +deux cents (200) + + +
tl
+
+
deux cents (200)
+
+
two hundred (200)
+
+
zweihundert (200)
+
+ +
1620
+
+
+
+ + +
ngûru
+
+ + + +
fr. Lingala
+
+
+ + + +Schwein +pig +cochon, porc + + +
ek
+
+
cochon, porc
+
+
pig
+
+
Schwein
+
+ +
0987
+
+
+
+ + +
kpë
+
+ + + + +Paste +paste +pâte +
paste
+
+
Paste
+
+
pâte
+
+
+
+ + +
zï dû
+
+ + + + + + + + + + + + +graben +dig +creuser + + +
tl
+
+
creuser
+
+
dig
+
+
graben
+
+ +
0740
+
+
+ + + +aushöhlen (einen Baumstamm) +hollow out (log) +creuser, évider (rondin) + + +
tl
+
+
aushöhlen (einen Baumstamm)
+
+
creuser, évider (rondin)
+
+
hollow out (log)
+
+ +
0715
+
+
+
+ + +
wandarä
+
+ + + + +Weise(r) +wise person +sage + + +
ek
+
+
sage
+
+
Weise(r)
+
+
+ + + +Philosoph +philosopher +philosophe + + +
ek
+
+
Philosoph
+
+
philosopher
+
+
+
+ + +
töngö ndâ
+
+ + +
Word break follows Sango Courant
+
+ + + +Anfang +beginning +commencement, début + + +
tl
+
+
Anfang
+
+
beginning
+
+
commencement, début
+
+ +
1502
+
+
+
+ + +
kperekpere
+
+ + + + +geschwätzig, redselig +too talkative, chattering +verbeusement, bavardage + +
Lo tene tënë kperekpere. [lb]
+ +
He speaks unguardedly, without controle.
+
Il parle sans retenue, sans contrôle, il dit n'importe quoi.
+
+
+ + +
ek
+
+
geschwätzig, redselig
+
+
+
+ + +
wakua
+
+ + + + +Angestellter +employee +employé + + +
ek
+
+
Angestellter
+
+
employé
+
+
employee
+
+
+
+ + +
sïökpärï
+
+ + +
siɔ.kpa.ɾi
+ +
22.2.2
+
+
+ + + +Sünde +sin +péché + + +
ek
+
+
péché
+
+
sin
+
+
Sünde
+
+
+
+ + +
wöngö
+
+ + + + +Atemung +breathing +respiration + + + + +
ek
+
+
Atemung
+
+
breathing
+
+
respiration
+
+
+
+ + +
ngö
+
+ + +
ngɔ
+ +
2
+
+
+ + + +Kanu +canoe +pirogue + + +
tl
+
+
canoe
+
+
Kanu
+
+
pirogue
+
+ +
0851
+
+
+
+ + +
basënzi
+
+ + +
fr lingala (kc)
+
+ + + +traditionell, einheimisch +traditional, indigenous (be) +traditionnel, indigène (être) + +
îngö basënzi [lb]
+ +
einheimisches Salz
+
indigenous salt
+
sel indigène
+
+
+ + +
ek
+
+
traditionell, einheimisch
+
+
+ + + +Wilder, unzivilisiert +savage, uncivilized (be) +sauvage, non-civilisé (être) + +
Basënzi sô ate füngö nyama!
+ +
Er ist ein Wilder
+
He's a savage.
+
C'est un sauvage.
+
+
+
Wilder, unzivilisiert
+
+
+
+ + +
kobêla tî süküngö gerê
+
+ + + + + + + + + + + + + + + + +Elephantiase +elephantiasis +éléphantiasis + + +
tl
+
+
Elephantiase
+
+
elephantiasis
+
+
éléphantiasis
+
+ +
0225
+
+
+
+ + +
fânî ôko
+
+ + + + + + + + +einmal +once +une fois + +
Fadë ï kûi gï fânî ôko.
+ +
We will only die once.
+
+
+ + +
tl
+
+
einmal
+
+
once
+
+
une fois
+
+ +
1358
+
+
+
+ + +
hasa yâ tî tënë
+
+ + + + + + + + + + + + + + + + +erklären +explain +expliquer + + +
tl
+
+
erklären
+
+
explain
+
+
expliquer
+
+ +
0449
+
+
+
+ + +
sâra sï
+
+ + + + +CAUS +CAUS +CAUS + + +
+ + +
yeke zo tî ndarä
+
+ + + + + + + + + + + + + + +weise (sein) +wise (be) +sage (être) + +
Âzo agä na âtënë tî âla na lo tëtî lo yeke zo tî ndarä.
+ +
People come to him with their problems because he is a wise person.
+
+
+ + +
tl
+
+
(être) sage
+
+
weise (sein)
+
+
wise
+
+ +
0258
+
+
+
+ + +
pîka sâko na li tî
+
+ + + + + + + + + + + + + + + + +gratulieren +congratulate +féliciter + + +
tl
+
+
congratulate
+
+
féliciter
+
+
gratulieren
+
+ +
0477
+
+
+
+ + +
da-sînga
+
+ + + + + + + + +Radiosender +radio station +station radiophonique + + + + +
ek
+
+
Radiosender
+
+
+
+ + +
sâra ngonzo
+
+ + + + + + + + + + +wütend (sein) +angry (be) +fâché, en colère (être) + +
Afâ ngäsa tî lo. Lo sâra ngonzo.
+ +
His goat was killed. He is angry.
+
+
+ + +
tl
+
+
(être) fâché, en colère
+
+
angry
+
+
wütend (sein)
+
+ + +
0279
+
+
+
+ + +
kôlï-ngäsa
+
+ + + + + + + + + + + + +Ziegenbock +he-goat, billy goat +bouc + + +
tl
+
+
bouc
+
+
he-goat, billy goat
+
+
Ziegenbock
+
+ +
0966
+
+
+
+ + +
kpakpakpa
+
+ + + + +schnell, hastig +hastily +rapidement + + +
ek
+
+
hastily
+
+
rapidement
+
+
schnell, hastig
+
+
+
+ + +
kokôro
+
+ + +
???
+ +
1.3.1
+
+
+ + + +Schuppentier +pangolin, scaly anteater +pangolin + + +
Manis tricuspis
+
+ +
1008
+
+
+
+ + +
kpo molongö
+
+ + + + + + + + + + + + +in Reihe stehen oder marschieren +standing in a row, marching in line +être ou marcher en rang + + +
ek
+
+
in Reihe stehen oder marschieren
+
+
+
+ + +
küä tî terê tî nyama
+
+ + + + + + + + + + + + + + + + +Pelz, Fell +fur +pelage, fourrure + + +
tl
+
+
fur
+
+
pelage, fourrure
+
+
Pelz, Fell
+
+ +
1027
+
+
+
+ + +
kawoya
+
+ + +
ka.wo.ya
+ +
1.1.1
+
+
+ + + +Kürbis +squash, pumpkin (often: Cucurbita moschcata) +courge, courgette, potiron, "melon" + + + +
ek; pn
+
+
Kürbis
+
+ +
i-238
+
+
+
+ + +
lâpôso
+
+ + +
la.pɔ.sɔ
+ +
3.3.1
+
+
+ + + +Samstag +Saturday +samedi + + +
ek
+
+
samedi
+
+
Samstag
+
+
Saturday
+
+
+
+ + +
kâî
+
+ + + + + +
from Lingala nkâî
+
+
+ + + +Paddel, Ruder +paddle +pagaie + + +
tl
+
+
Paddel, Ruder
+
+
paddle
+
+
pagaie
+
+ +
0852
+
+
+
+ + +
kömë
+
+ + +
Schuppentier, schuppiger Ameisenbär
+
formerly: pangolin, scaly anteater
+
pangolin
+
+ +
???
+ +
2.2
+
+
+ + + +Waran +monitor lizard +varan + + +
Manis spp. / Varanus exanthematicus
+
+ +
tl
+
+
monitor lizard
+
+
varan
+
+
Waran
+
+ +
1104
+
+
+
+ + +
fängö ganzâ tî kôlï
+
+ + + + + + + + + + + + + + + + +Beschneidung (männlich) +circumcision (male) +circoncision (hommes) + + +
tl
+
+
Beschneidung (männlich)
+
+
circoncision (hommes)
+
+
circumcision (male)
+
+ + +
0935
+
+
+
+ + +
mvene
+
+ + + + +Lüge +lie +mensonge + + + + +
tl
+
+
lie
+
+
Lüge
+
+
mensonge
+
+ + +
0452
+
+
+
+ + +
mbumbuse
+
+ + + + +bedeutungslos, wertlos +worthless (be) +négligeable, sans valeur (être) + +
Bâa îtä tî mo töngana mbumbuse zo pëpe.
+ +
Don't treat your sibling as a worthless person.
+
Ne prend pas ton frère (ta sœur) comme quelqu'un sans valeur.
+
+
+ + +
ek
+
+
bedeutungslos, wertlos
+
+
worthless
+
+
+
+ + +
lâkûê ... gï lêgëôko
+
+ + + + +konsistent +consistent (be) +cohérent, concordant (être) + +
Lâkûê da nî ayeke gï lêgëôko.
+ +
The house is always the same.
+
La maison est toujours la même.
+
+
+ +
mle-1058
+
+
+
+ + +
bambü de Chine
+
+ + + + +Bambus +bamboo +bambou + + +
Dendrocalamus spp.
+
+ +
tl; pn; lb
+
+
bamboo
+
+
bambou
+
+
Bambus
+
+ +
1174
+
+
+
+ + +
tênë
+
+ + + + +Fels, Stein +rock, stone +rocher, pierre + + +
tl
+
+
Fels, Stein
+
+
rocher, pierre
+
+
rock, stone
+
+ + +
1271
+
+
+ + + +Kieselstein +pebble +caillou + + +
ek
+
+
caillou
+
+
Kieselstein
+
+
pebble
+
+ +
1272
+
+
+
+ + +
kpëngbä li
+
+ + + + + + + + + +hard-headed +un têtu +
hard-headed
+
+
+
+ + +
wakînda
+
+ + + + +Kadaver, Leiche +cadaver, dead person +cadavre, mort + + +
ek
+
+
cadaver, dead person
+
+
cadavre, mort
+
+
Kadaver, Leiche
+
+ +
0953
+
+
+
+ + +
ngängä
+
+ + + + +Flasche +bottle +bouteille, gourde + + +
ek
+
+
bottle
+
+
bouteille, gourde
+
+
Flasche
+
+ +
0629
+
+
+
+ + +
dûudûu
+
+ + + + + + + +Kuckuck +cuckoo +coucou + + +
ek
+
+
coucou
+
+
cuckoo
+
+
Kuckuck
+
+
+
+ + +
wa
+
+ + + + +(be-)raten, empfehlen +advise +conseiller + + +
tl
+
+
(be-)raten, empfehlen
+
+
advise
+
+
conseiller
+
+ +
0450
+
+
+ + + +warnen +warn +avertir + +
i-51
+
+
+ + + +beschuldigen, vorwurf +blame, take to task for +blâmer, faire des reproches + + +
ek
+
+
beschuldigen
+
+
blame
+
+
blâmer
+
+ +
i-396
+
+
+
+ + +
îringö tënë nzönî
+
+ + + + + + + + + + + + + + + + +Segen +blessing +bénédiction + + +
tl
+
+
bénédiction
+
+
blessing
+
+
Segen
+
+ + +
0913
+
+
+
+ + +
wököngö sêse
+
+ + + + + + + + + + + + +fruchtbarer Boden +fertile soil +sol fertile + + +
tl
+
+
fertile soil
+
+
fruchtbarer Boden
+
+
sol fertile
+
+ + +
0745
+
+
+
+ + +
lâ tî matânga
+
+ + + + + + + + +Feiertag +holiday +jour de fête + + +
ek
+
+
Feiertag
+
+
holiday
+
+
jour de fête
+
+ + +
0581
+
+
+
+ + +
hïngängö (zo)
+
+ + + + + + + + +Bekannte(r), Bekanntschaft +acquaintance +(une) connaissance + + +
tl
+
+
(une) connaissance
+
+
acquaintance
+
+
Bekannte(r), Bekanntschaft
+
+ +
0382
+
+
+
+ + +
tënë ti kïrïngö na nî
+
+ + + + +Entschuldigung +excuse (n) +excuse, prétexte + +
sc
+
+ +
mle-1699
+
+
+
+ + +
dengbe
+
+ + + + +Gazelle +gazelle +antilope + +
Blauducker (Antilopenart)
+
blue duiker (type of antelope)
+
céphalophe bleu (espèce d'antilope)
+
+ + +
ek
+
+
antilope
+
+
gazelle
+
+
Gazelle
+
+
+
+ + +
dîâkere
+
+ + + + +Diakon +deacon +diacre + + +
ek
+
+
deacon
+
+
diacre
+
+
Diakon
+
+
+
+ + +
yîngi
+
+ + + + +schütteln, zittern +shake +secouer + + +
ek
+
+
schütteln, zittern
+
+
secouer
+
+
shake
+
+ +
1455
+
+
+ + + +schwingen, schaukeln +swing, go back and forth +balancer + + +
tl
+
+
balancer
+
+
schwingen, schaukeln
+
+
swing, go back and forth
+
+ +
1412
+
+
+ + + +Bewegung +movement +mouvement + + +
tl
+
+
Bewegung
+
+
mouvement
+
+
movement
+
+ +
1398
+
+
+
+ + +
fâ ngbanga
+
+ + + + + + + + + + + + +verurteilen +judge +juger + + + + +
tl
+
+
judge
+
+
juger
+
+
verurteilen
+
+ +
0519
+
+
+
+ + +
ndânî nyen
+
+ + + + + + + + +warum? weswegen? +why? +pourquoi ? + +
Mbï yê tî hînga ndânî nyen?
+ +
I want to know why?
+
+
+ + +
ek
+
+
pourquoi ?
+
+
warum? weswegen?
+
+
why?
+
+ +
1688
+
+
+
+ + +
mamâ tî taba
+
+ + + + + + + + + + + + +Mutterschaf +ewe +brebis + + +
tl
+
+
brebis
+
+
ewe
+
+
Mutterschaf
+
+ +
0971
+
+
+
+ + +
yê tî kamënë
+
+ + + + + + + + + + + +Schande +disgrace +déshonneur + +
Schande, Skandal
+
disgrace, scandal
+
déshonneur, scandale
+
+ + +
ek
+
+
déshonneur
+
+
disgrace
+
+
Schande
+
+
+
+ + +
mû ... na kua
+
+ + + + + + + + + + + + + + + + +anstellen +hire +louer, embaucher + + +
tl
+
+
anstellen
+
+
hire
+
+
louer, embaucher
+
+ + +
0830
+
+
+
+ + +
gbïä
+
+ + + + +König, Herr, Präsident +king, lord, president +roi, seigneur, président + + +
ek
+
+
König, Herr, Präsident
+
+
+
+ + +
bâa
+
+ + + + +sehen, ansehen, schauen +look at, watch +regarder + + + + +
tl
+
+
look at, watch
+
+
regarder
+
+
sehen, ansehen, schauen
+
+ + +
0133
+
+
+ + + +sehen +see +voir + + +
tl
+
+
see
+
+
sehen
+
+
voir
+
+ +
0131
+
+
+ + + +bemerken +notice +remarquer, s'apercevoir + + +
tl
+
+
bemerken
+
+
notice
+
+
remarquer, s'apercevoir
+
+ + +
0132
+
+
+
+ + +
awe
+
+ + + + +schon (abgeschlossene Handlung) +finished ... (completive aspect) +fini de ... (aspect accompli) + +
schon (abgeschlossene Handlung)
+
finished ... , completive aspect
+
fini de ... , aspect accompli
+
+ +
Ï gue na danganga tëtî nyen. Lo kûi awe!
+ +
Why should we go to the hospital? He's already dead!
+
Pourquoi devons nous aller à l'hôpital? Il est déjà mort.
+
+
+ + + + +
ek
+
+
schon (abgeschlossene Handlung)
+
+
+
+ + +
gbenyöngbïä
+
+ + +
gbɛ.nyoɔ̰.gbia
+ +
1.2.22
+
+
+ + + +Minister +government minister +ministre + +
+ + +
yê tî hînga ndâ tî yê
+
+ + + + + + + + + + + + + + + + + + +neugierig (sein) +curious (be) +curieux (être) + +
Nganga nî agä lêgë mîngi tî bâa zo tî kobêla nî. Lo yeke marä tî zo sô lo yê tî hînga ndâ tî yê.
+
+ + +
tl
+
+
(être) curieux
+
+
curious
+
+
neugierig (sein)
+
+ +
0311
+
+
+
+ + +
tî pekô sï
+
+ + + + + + + + + + + + + + +nächste +next (be) +suivant(te), prochain(e) (être) + +
Kîri na ngû tî pekô sï.
+ +
Sie kommen nächstes Jahr wieder.
+
Return next year.
+
Reviens l'année prochaine.
+
+
+ + +
ek
+
+
ein anderes Mal, ein andermal
+
+
+
+ + +
+
+ + + + +begraben +bury +enterrer, ensevelir + + +
tl
+
+
begraben
+
+
bury
+
+
enterrer, ensevelir
+
+ +
0954
+
+
+ + + +pflanzen +plant +planter + + +
tl
+
+
pflanzen
+
+
plant
+
+
planter
+
+ +
0748
+
+
+
+ + +
bïngö gerê
+
+ + + + + + + + + + + + +treten +step +faire un pas + + +
tl
+
+
faire un pas
+
+
step
+
+
treten
+
+ +
0155
+
+
+
+ + +
längö na ...
+
+ + + + + + + + +wohnen +dwell, inhabit, live +habiter, vivre + +
längö na Bangui
+ +
live in Bangui
+
+
+ + +
& i-1068
+
+
dwell, inhabit
+
+
habiter
+
+
wohnen
+
+ +
0526
+
+
+
+ + +
ndongere
+
+ + +
ndɔ.ngɛ.ɾɛ
+ +
1.1.1
+
+
+ + + +Hinterhalt +ambush +embuscade, guet-apens + +
mle-0252
+
+
+
+ + +
sâra nî a kpîngba
+
+ + + + + + + + + + + + +härten +harden +durcir + + +
tl
+
+
durcir
+
+
harden
+
+
härten
+
+ +
1545
+
+
+
+ + +
tongoro sô atambûla
+
+ + + + + + + + + + + + +Sternschnuppe, Meteorit +shooting star, meteor +étoile filante, météorite + + +
tl
+
+
étoile filante, météorite
+
+
shooting star, meteor
+
+
Sternschnuppe, Meteorit
+
+ +
1326
+
+
+
+ + +
-ngö
+
+ + +Nominalsuffix +nominalizer +nominalisateur + +
Noël alöndö na düngö tî Jésus. Marie adü Jésus.
+ +
Geburt
+
birth
+
naissance
+
+
+ +
käïngö kobêla. Wanganga akâi kobêla nî.
+ +
Heilung
+
healing
+
guérison
+
+
+ +
ek
+
+
nominalisateur
+
+
nominalizer
+
+
Nominalsuffix
+
+
+ + +
suffix that makes a verb an adjective which can then occur in a noun phrase
+
+ +
Lo kö âmbênî vököngö kugbë tî zîa na yâ tî kâsa nî.
+
+
+
+ + +
kombâ tî ngonda
+
+ + + + + + + + + + +
ko.mba/ku.mba
+ +
1.3
+
+
+ + + +Perlhuhn +guinea fowl +pintade + + +
tl
+
+
guinea fowl
+
+
Perlhuhn
+
+
pintade
+
+ +
0979
+
+
+
+ + +
îtä tî kôlï wala wâlï tî ... tî wâlï
+
+ + + + + + + + + + + + + + + + + + + + +Schwägerin +sister-in-law +belle-sœur + + +
tl
+
+
belle-sœur
+
+
Schwägerin
+
+
sister-in-law
+
+ +
0368
+
+
+
+ + +
pûsu âzëndë
+
+ + + + + + + + + + + + +fegen, kehren +sweep +balayer + + +
tl
+
+
balayer
+
+
fegen, kehren
+
+
sweep
+
+ +
0735
+
+
+
+ + +
gügü
+
+ + + + +Pilz +mushroom +champignon + + +
tl
+
+
champignon
+
+
mushroom
+
+
Pilz
+
+ +
1226
+
+
+
+ + +
zî vundü na bê
+
+ + + + + + + + +trösten +comfort +consoler + + +
ek
+
+
comfort
+
+
consoler
+
+
trösten
+
+ +
0952
+
+
+
+ + +
ndö tî hôn
+
+ + + + + + + + + + + + +Nasenrücken +bridge (of nose) +arête, dos du nez + + +
tl
+
+
arête, dos du nez
+
+
bridge (of nose)
+
+
Nasenrücken
+
+ +
0012
+
+
+
+ + +
pörö tî terê
+
+ + + + + + + + + + + + +Haut (eines Menschen) +skin (of man) +peau (d'homme) + + +
tl
+
+
Haut (eines Menschen)
+
+
peau (d'homme)
+
+
skin (of man)
+
+ +
0002
+
+
+
+ + +
terê tî ... tî kôlï akûi awe
+
+ + + + + + + + + + + + + + +impotent, unfruchtbar, zeugungsunfähig +impotent (be) +impuissant (être) + +
Wâli nî ake kôli tî lo tëtî nye? Tëtî terê tî kôli nî tî kôli akûi awe.
+ + +
+ + +
tl
+
+
(être) impuissant
+
+
impotent
+
+
impotent, unfruchtbar, zeugungsunfähig
+
+ + +
0194
+
+
+
+ + +
fâ (na) ganzâ
+
+ + +
fâ (na) ganzâ
+ +
+ + + + + + + + + + + +beschneiden, ausschneiden +circumcise, excise +circoncire, exciser + + +
ek
+
+
beschneiden, ausschneiden
+
+ +
mle-0866
+
+
+
+ + +
tötöngö tî wâ
+
+ + + + +Knall +pop (fire) +bruit (sec) d'un feu + +
mle-3621
+
+
+
+ + +
kelekpâ
+
+ + + + + + + +Bett aus Raffiapalm-Blattrippen +raffia-palm bed +lit en palmier à raphia + + +
ek
+
+
Bett aus Raffiapalm-Blattrippen
+
+
+
+ + +
sâra ndao
+
+ + + + + + + + + + + +einen Unfall haben oder machen +have an accident +faire ou avoir un accident + + +
ek
+
+
einen Unfall haben oder machen
+
+
+
+ + +
gandâ
+
+ + + + +Hagel +hail +grêle + +
grêle
+
+
Hagel
+
+
hail
+
+ + +
1337
+
+
+
+ + +
balëôko na omenë
+
+ + + + + + + + + + + + +sechzehn (16) +sixteen (16) +seize (16) + + +
tl
+
+
sechzehn (16)
+
+
seize (16)
+
+
sixteen (16)
+
+ +
1605
+
+
+
+ + +
zûku
+
+ + + + +ausleeren, auf den Kopf stellen (Behälter) +spill, turn (a container) upside down +renverser (un récipient) + + + + +
ek
+
+
ausleeren, auf den Kopf stellen (Behälter)
+
+
+
+ + +
wôko
+
+ + + + +schwächen +weaken +affaiblir + + +
ek
+
+
affaiblir
+
+
schwächen
+
+
weaken
+
+
+ + + +schwach (sein) +weak (be) +faible (être) + + +
tl
+
+
(être) faible
+
+
schwach (sein)
+
+
weak
+
+ +
1573
+
+
+ + + +müde (sein) +tired (be) +fatigué (être) + + +
tl
+
+
(être) fatigué
+
+
müde (sein)
+
+
tired
+
+ +
0183
+
+
+ + + +erschöpft (sein) +used up (be) +épuisé (être) + + +
tl
+
+
(être) épuisé
+
+
erschöpft (sein)
+
+
used up
+
+ +
1637
+
+
+ + + +schwach, matt, dämmrig (sein) +dim (be) +faible, pâle, sombre (être) + + +
tl
+
+
(être) faible, pâle, sombre
+
+
dim
+
+
schwach, matt, dämmrig (sein)
+
+ +
1495
+
+
+ + + +schmelzen +melt (intr) +fondre + + +
tl
+
+
fondre
+
+
melt (intr)
+
+
schmelzen
+
+ +
1499
+
+
+ + + +weich (sein) +soft (be) +mou (être) + + +
tl
+
+
(être) mou
+
+
soft
+
+
weich (sein)
+
+ +
1546
+
+
+ + + +nachsichtig +lenient (be) +indulgent (être) + +
mle-2800
+
+
+
+ + +
kpa
+
+ + + + +gleich aussehen, sich ähneln +resemble, look like +ressembler à + + +
ek
+
+
gleich aussehen, sich ähneln
+
+
resemble, look like
+
+
ressembler à
+
+ + +
0426
+
+
+ + + +richtig (sein) +correct, suitable (be) +correcte, convenable (être) + +
+ + +
karagbikï
+
+ + + + +Entschuldigung +excuse (n) +excuse, prétexte + +
jl
+
+ +
mle-1699
+
+
+
+ + +
ôko pëpe
+
+ + + + + + + + + + + + +niemals +never +jamais + +
Âbâgara alîngbi tî te nyama ôko pëpe.
+ +
Cows can never eat meat.
+
+
+ + +
tl
+
+
jamais
+
+
never
+
+
niemals
+
+ +
1364
+
+
+ + + +niemand +nobody +(aucune) personne, nul + +
Zo ôko pëpe alï ge. A kânga yângâ tî da nï.
+ +
Nobody entered here. They had shut the door.
+
+
+ + +
tl
+
+ +
1646
+
+
+ + + +nichts +nothing +rien + +
A wara nyama ôko pëpe.
+ +
They found not a single animal.
+
+
+ + + +
1647
+
+
+
+ + +
kobêla tî makâko
+
+ + + + + + + + + + + +Epilepsie +epilepsy +épilepsie + + +
ek
+
+
Epilepsie
+
+
épilepsie
+
+
epilepsy
+
+
+
+ + +
këkë tî mbëtï
+
+ + + + + + + + + + + + + + + +Bleistift, Kugelschreiber +pencil, pen +crayon, bic + + +
ek
+
+
Bleistift, Kugelschreiber
+
+
+
+ + +
yô kûngbâ
+
+ + + + + + + + + + + + +tragen, transportieren +carry (a load) +porter (quelque chose) + + +
tl
+
+
+
+ + +
pîka gerê
+
+ + + + + + + + + + + + +stolpern +stumble +trébucher, broncher + + +
tl
+
+
stolpern
+
+
stumble
+
+
trébucher, broncher
+
+ +
0156
+
+
+
+ + +
kpaka ... na terê nî
+
+ + + + + + + + + + + + + + + +schmieren +smear +enduire + + +
tl
+
+
enduire
+
+
schmieren
+
+
smear
+
+ + +
1484
+
+
+
+ + +
dû tî papa
+
+ + + + + + + + + + + +Schöpflöffel +ladle +louche + + + + +
ek
+
+
ladle
+
+
louche
+
+
Schöpflöffel
+
+ +
0613
+
+
+
+ + +
dola
+
+ + +
???
+
+ + + +Motte, Falter, Nachtfalter +moth +papillon de nuit, papillon nocturne + + +
1147
+
+
+
+ + +
pizöon
+
+ + +
pi.zɔ̰ɔ̰
+ +
1.21
+
+
+ +haustaube +domestic pigeon +pigeon domestique + +
i-778
+
+
+
+ + +
yüngö-ndo
+
+ + + + +flaw, fault, error +égarement, faute, erreur + +
i-282
+
+
+
+ + +
kûê
+
+ + + + +alles +all +tout + +
Âzo kûê ague tî wara vaccinations.
+ +
All the people went to get vaccinated.
+
+
+ + +
tl
+
+
all
+
+
alles
+
+
tout
+
+ +
1638
+
+
+ + + +alles +everything +tout, toutes choses + +
Mo rô kûê na yâ tî sakpä nî?
+ +
Did you gather everything into the basket?
+
+
+ + +
tl
+
+
alles
+
+
everything
+
+
tout, toutes choses
+
+ +
1644
+
+
+ + + +auch +also +aussi + +
Lo kûê fadë lo gue na ï?
+ +
Will he also go with us?
+
+
+ +
ek
+
+
also
+
+
auch
+
+
aussi
+
+
+
+ + +
wazën
+
+ + +
wa.zɛ̰
+ +
1.2
+
+
+ + + +Behinderte(r) +handicapped person +estropié + + +
tl
+
+
Behinderte(r)
+
+
cripple
+
+
estropié
+
+ + +
0199
+
+
+
+ + +
kûi
+
+ + + + +sterben +die +mourir + + +
tl
+
+
die
+
+
mourir
+
+
sterben
+
+ +
0249
+
+
+ + + +welken +wilt +faner + + +
ek
+
+
faner
+
+
welken
+
+
wilt
+
+
+
+ + +
seko
+
+ + +
se.ko
+ +
1.1
+
+
+ + + +Schimpanse +chimpanzee +chimpanzé + + +
ek
+
+
chimpanzé
+
+
chimpanzee
+
+
Schimpanse
+
+
+
+ + +
li nî ayeke kêtê azä
+
+ + + + + + + + + + + + + + +spitzig, scharf (sein) +pointed (be) +pointu (être) + + +
tl
+
+
(être) pointu
+
+
pointed
+
+
spitzig, scharf (sein)
+
+ +
1537
+
+
+
+ + +
mbâgë
+
+ + + + +Seite +side +côté + + + + +
ek
+
+
côté
+
+
Seite
+
+
side
+
+ +
1391
+
+
+ + + +Richtung +direction +direction + + +
ek
+
+
direction
+
+
direction
+
+
Richtung
+
+
+ + + +Stück +piece +morceau + + +
tl
+
+
morceau
+
+
piece
+
+
Stück
+
+ +
1386
+
+
+
+ + +
yângâ tî lê tî kokora
+
+ + + + + + + + + + + +Pfeilspitze +arrow head +pointe de flèche + + +
tl
+
+
arrow head
+
+
Pfeilspitze
+
+
pointe de flèche
+
+ +
0783
+
+
+
+ + +
lekpa
+
+ + + + +Buschbock +harnessed bush buck +guib harnaché + + +
tl
+
+
Buschbock
+
+
+ + + +Antilopenart +antelope (gen.) +antilope (gén.) +
antelope (gen.)
+
+
antilope (gén.)
+
+
Antilopenart
+
+ + +
1005
+
+
+
+ + +
kafäre
+
+ + + + +Kakerlake +cockroach +cafard + + +
tl
+
+
cafard
+
+
cockroach
+
+
Kakerlake
+
+ +
1122
+
+
+
+ + +
gi tënë
+
+ + + + + + + + + + + +Streit suchen +look for trouble +provoquer des querelles + + + + +
ek
+
+
Streit suchen
+
+
+ + + +sich einmischen +meddle +se mêler de + + +
mle-2995
+
+
+
+ + +
ngöngonö
+
+ + +
check ngöngonön
+
+ +
???
+
+ + + +Tausendfüßler +millipede +mille-pattes + + +
ek
+
+
mille-pattes
+
+
millipede
+
+
Tausendfüßler
+
+ +
1139
+
+
+
+ + +
dörö
+
+ + +
dɔ.ɾɔ
+ +
2.2
+
+
+ + + +heftig schütteln; zittern +shake violently +trembler fortement + +
Koyt-Deballé, G. F.: Illustrated Lexicon Sängö-English
+
+
+
+ + +
dema terê
+
+ + + + + + + + + + + + +sich beschweren, stöhnen +grumble, complain +se plaindre, râler + + +
ek
+
+
complain
+
+
se plaindre
+
+
sich beschweren, stöhnen
+
+ + +
0467
+
+
+
+ + +
kodë
+
+ + +
kɔ.dɛ
+ +
1.2
+
+
+ + + +Methode, Wissen, Vorgehensweise, Art und Weise +method, know-how, way of doing things, manner +technique, méthode d'agir, manière + + + + +
ek
+
+
Methode, Wissen, Vorgehensweise, Art und Weise
+
+
+
+ + +
bängö ndo
+
+ + + + +Einstellung, Stimmung +attitude, mood +attitude, humeur + +
i-522
+
+
+ + + + Standpunkt +viewpoint +point de vue + +
+ + +
ngêli
+
+ + + + +isoliert +lonely, isolated (be) +isolé, peu fréquenté (être) + +
gfk-d, jl, lb
+
+ +
mle-2874
+
+
+
+ + +
kürü
+
+ + + + +trocken +dry, dried (be) +sec, séché (être) + +
Job 38:27 (MNF2010) Zo wa laâ asâra sï ngü apîka sï kürü sêse awôko pendere tîtene pêrë asïgîgî sï akono?
+ +
Who caused the rain to fall so that the dry earth would soften so that grass would sprout and grow?
+
+
+ + +
ek
+
+
dry, dried
+
+
sec, séché
+
+
trocken
+
+ +
1548
+
+
+
+ + +
lê tî bongö
+
+ + + + + + + + + + + +Stoff +cloth +tissu + + +
tl
+
+
cloth
+
+
Stoff
+
+
tissu
+
+ +
0732
+
+
+
+ + +
sâra keremba
+
+ + + + + + + + + + + +Geld in eine Gruppenkasse einzahlen +contribute money to a group +épargner une somme d'argent + + +
ek
+
+
Geld in eine Gruppenkasse einzahlen
+
+
+
+ + +
mû nëngö na
+
+ + + + + + + + + + + + +ehren +honour +honorer + + +
tl
+
+
ehren
+
+
honorer
+
+
honour
+
+ +
0283
+
+
+
+ + +
fängö lê (tî) kôbe
+
+ + + + + + + + + + + + + + + + +Ernte +harvest +moisson, récolte + + +
tl
+
+
Ernte
+
+
harvest
+
+
moisson, récolte
+
+
+
+ + +
mû me na
+
+ + + + + + + + + + + + +stillen +nurse, suckle (baby) (tr) +téter, allaiter + + +
tl
+
+
nurse, suckle (baby) (tr)
+
+
stillen
+
+
téter, allaiter
+
+ +
0488
+
+
+
+ + +
nyenyen
+
+ + + + +Januar +January +janvier + + +
ek
+
+
Januar
+
+
January
+
+
janvier
+
+
+
+ + +
sïgîgî na yâ tî pärä
+
+ + + + + + + + + + + + + + + + +(aus-)schlüpfen +hatch +éclore + + +
tl
+
+
(aus-)schlüpfen
+
+
éclore
+
+
hatch
+
+ + +
1082
+
+
+
+ + +
bûngbi terê
+
+ + + + + + + + +sich versammeln, jemand treffen +assemble, meet together +se rassembler, se réunir + + +
tl
+
+
assemble, meet together
+
+
se rassembler, se réunir
+
+
sich versammeln, jemand treffen
+
+ +
0417
+
+
+
+ + +
bata terê
+
+ + + + + + + + + + + +auf seine Gesundheit, achten +take care of one's health, +prendre soin de soi, + + +
ek
+
+
auf seine Gesundheit, achten
+
+
+ + + +Jungfrau bleiben +stay a virgin +conserver sa virginité + + +
ek
+
+
Jungfrau bleiben
+
+
+
+ + +
kpo
+
+ + +
kpɔ
+ +
1
+
+
+ + + +(er-)stechen +stab +poignarder + + +
tl
+
+
(er-)stechen
+
+
poignarder
+
+
stab
+
+ +
0510
+
+
+ + + +eintreiben +drive in, stick in +planter (un piquet) + +
i-780
+
+
+ + + +stechen (Skorpion, Biene +sting (scorpion, bee) +piquer (scorpion, abeille) + + +
tl
+
+
piquer (scorpion, abeille)
+
+
stechen (Skorpion, Biene
+
+
sting (scorpion, bee)
+
+ +
1149
+
+
+ + + +impfen +give a shot +vacciner + + +
ek
+
+
impfen
+
+
vacciner
+
+
+
+ + +
kânga li
+
+ + + + + + + + +Haare flechten +braid hair +tresser les cheveux + + + + +
ek
+
+
braid hair
+
+
Haare flechten
+
+
tresser les cheveux
+
+ +
0558
+
+
+
+ + +
vârä
+
+ + + + + + + +Schild +shield +bouclier + +
bouclier
+
+
Schild
+
+
shield
+
+ + +
0873
+
+
+
+ + +
sörö
+
+ + +
so.ɾo
+ +
2.2
+
+
+ + + +Speichel +saliva +salive + + + + +
tl
+
+
saliva
+
+
salive
+
+
Speichel
+
+ +
0093
+
+
+
+ + +
dûnîa
+
+ + +
Perhaps from Fulfulde: duniyaaru which in turn is from Arabic. (kc)
+
+ + + + + +Leben +life +vie + + + + +
ek
+
+
Leben
+
+
life
+
+
vie
+
+ +
0238
+
+
+ + + +Welt +world +monde + + +
tl
+
+
monde
+
+
Welt
+
+
world
+
+ +
1254
+
+
+
+ + +
sâra goigôi
+
+ + + + + + + + + + +faul sein, nicht arbeiten wollen +lazy, unwilling to work (be) +paresseux (être) + +
Lo ke tî sâra kusâla. Lo sâra goigôi mîngi.
+ +
He refuses to work. He is very lazy.
+
+
+ + +
ek
+
+
(être) paresseux, ne pas travailler
+
+
faul sein, nicht arbeiten wollen
+
+
lazy, unwilling to work
+
+ +
0313
+
+
+
+ + +
yê tî tëngö na kôbe
+
+ + + + +gerät +utensil +ustensile + + +
i-1047
+
+
+
+ + +
mû singîla
+
+ + + + + + + + + + + + +danken +thank +remercier + + +
tl
+
+
danken
+
+
remercier
+
+
thank
+
+ +
0457
+
+
+
+ + +
kpakpö
+
+ + +
kpa.kpo
+ +
1.2
+
+
+ + + +Krähe +crow +corbeau + + +
tl
+
+
corbeau
+
+
crow
+
+
Krähe
+
+ +
1042
+
+
+
+ + +
ngangü
+
+ + +stark (sein) +strong, powerful (be) +fort, puissant (être) + + +
tl
+
+
fort, puissant
+
+
stark
+
+
strong, powerful
+
+ +
1571
+
+
+ +großartig, mächtig (sein) +great, powerful (be) +grand, puissant (être) + +
Samson ayeke ngangü kôlï.
+ +
Samson was a strong man.
+
Samson était un homme fort.
+
+
+ + +
tl
+
+
(être) grand, puissant
+
+
great, powerful
+
+
großartig, mächtig (sein)
+
+ +
1574
+
+
+ + + +heftig +violent (be) +violent (être) + +
mle-5160
+
+
+ + + +Kraft, Macht +strength, power +force, pouvoir + + + + +
tl
+
+
force, pouvoir
+
+
Kraft, Macht
+
+
strength, power
+
+ +
1572
+
+
+ + + +Gewalt +violence +violence + + + + +heftig +violently +violemment + +
+ + +
fûu
+
+ + + + +Narr/Verrückter, Wahnsinn/Verrücktheit +fool, insanity +fou, folie + + +
ek
+
+
Narr/Verrückter, Wahnsinn/Verrücktheit
+
+
+
+ + +
buruma
+
+ + + + +Lepra +leprosy +lèpre + + +
tl
+
+
Lepra
+
+
lèpre
+
+
leprosy
+
+ +
0227
+
+
+
+ + +
ge
+
+ + + + +hier +here +ici + + +
tl
+
+
here
+
+
hier
+
+
ici
+
+ +
1654
+
+
+
+ + +
zo tî sârango ngangü na âzo
+
+ + + + +Tyrann +bully, tyrant +brute, tyran + +
mle-0680
+
+
+
+ + +
kôlô
+
+ + +
ko.lo
+ +
3.3 / 3.1 [lb]
+
+
+ + + +Giraffe +giraffe +girafe + + +
Giraffa caleopardalis
+
+ +
tl
+
+
girafe
+
+
giraffe
+
+
Giraffe
+
+ +
0999
+
+
+
+ + +
bôngbi tî âbâgara
+
+ + + + + + + + + + + + +Herde (Vieh) +herd (of cattle) +troupeau (de bœufs) + + +
tl
+
+
herd (of cattle)
+
+
Herde (Vieh)
+
+
troupeau (de bœufs)
+
+ + +
0964
+
+
+
+ + +
yeke pendere sïönî
+
+ + + + + + +sehr hübsch (sein) +very beautiful (be) +très joli (être) + +
Maseka wâli sô ayeke pendere sïönî! Gbâ tî akôli ayê lo.
+ +
That young girl is very beautiful! Lots of men like her.
+
+
+
sehr hübsch (sein)
+
+
+
+ + +
mangbökö
+
+ + +
ma.ngbo.ko
+ +
1.2.2
+
+
+ + + +Schiff +ship +bateau + + +
ek
+
+
bateau
+
+
Schiff
+
+
ship
+
+
+ + + +Arche +arc +arche + + +
ek
+
+
arc
+
+
arche
+
+
Arche
+
+
+
+ + +
lï kêtê
+
+ + + + + + + + + + + +flach, seicht, oberflächlich (sein) +shallow (be) +peu profond (être) + +
Ngû nî alï kêtê. Fadë ï fa nî sêngê.
+ +
The water is shallow. We will cross easily.
+
+
+ + +
tl
+
+
(être) peu profond
+
+
flach, seicht, oberflächlich (sein)
+
+
shallow
+
+ + +
1524
+
+
+
+ + +
kâsa tî pekô tî gerê
+
+ + + + + + + + + + + + + + + + +Wadenmuskel +calf muscle (of leg) +mollet + + +
tl
+
+
calf muscle (of leg)
+
+
mollet
+
+
Wadenmuskel
+
+ +
0068
+
+
+
+ + +
gobo
+
+ + +
gɔ.bɔ
+ +
1.1
+
+
+ + + +Faustschlag +punch +coup de poing + + +
ek
+
+
Faustschlag
+
+
punch
+
+
+
+ + +
kombo asïgîgî
+
+ + + + + + + + +angeben +show off +se faire montrer + + +
ek
+
+
angeben
+
+
+
+ + +
sû kpë
+
+ + + + + + + + + + + + +losrennen +start to run +se mettre à courir + + +
ek
+
+
losrennen
+
+
+ + + +schnell weggehen +leave quickly +partir à la hâte + + +
ek
+
+
schnell weggehen
+
+
+
+ + +
kalesön
+
+ + +
ka.le.sɔ̰
+ +
1.1.2
+
+
+ + + +Schlüpfer, Unterhosen +underpants +slip + + +
ek
+
+
Schlüpfer, Unterhosen
+
+
slip
+
+
underpants
+
+
+
+ + +
gba
+
+ + + + +Personengruppe +group of people +groupe de personnes + + +
ek
+
+
Personengruppe
+
+
+ + + +church members, church group +
church members
+
+
+
+ + +
wêen
+
+ + + + +gewinnen +put to flight, win +gagner + +
i-456
+
+
+
+ + +
saratë
+
+ + + + + + + +Schmutz +dirt +saleté + + +
ek
+
+
dirt
+
+
saleté
+
+
Schmutz
+
+
+
+ + +
yângâ tî
+
+ + + + + + + + +Rand, Ufer +edge of +bord de, marge de + +
Ï tambêla na yângâ tî mbênî kötä gbakô.
+ +
We walked at the edge of a large forest.
+
+
+ + +
ek
+
+
bord de, marge de
+
+
edge of
+
+
Rand, Ufer
+
+ + +
1393
+
+
+
+ + +
zêe
+
+ + + + +warnen +warn +avertir + +
gfk-d, jl
+
+ +
i-51
+
+
+
+ + +
bôon
+
+ + +
bɔ̰ɔ̰
+ +
31
+
+
+ + + +Schulden, Darlehen +debt, loan, favour to be repaid +dette, prêt + + +
ek
+
+
Schulden, Darlehen
+
+
+ + + +Schulden +debt +dette + +
ek
+
+
debt
+
+
dette
+
+
Schulden
+
+
+
+ + +
sêngbondö
+
+ + +
sɛ.ngbo.ndo
+ +
3.1.2
+
+
+ + + +Wert +value +valeur + + +
ek
+
+
valeur
+
+
value
+
+
Wert
+
+
+
+ + +
doro
+
+ + +
???
+
+ + + +zertreten, zerstampfen +tread, crush underfoot +fouler, écraser + + +
ek
+
+
fouler, écraser
+
+
tread, crush underfoot
+
+
zertreten, zerstampfen
+
+ +
0163
+
+
+
+ + +
futîi
+
+ + +kaputt +ruined +abîmé + + +
ek
+
+
abîmé
+
+
kaputt
+
+
ruined
+
+ +
1462
+
+
+ + + +zerstören +wreck +abîmer + + +
ek
+
+
abîmer
+
+
wreck
+
+
zerstören
+
+ +
1461
+
+
+ + + +verschwenden +waste +gaspiller + + +
ek
+
+
gaspiller
+
+
verschwenden
+
+
+
+ + +
gîgî
+
+ + + + +draußen +outside +dehors + + +
ek
+
+
dehors
+
+
draußen
+
+
outside
+
+
+ + + +außerhalb (des Hauses) +outside (of house), exterior +dehors (de la maison) + +
mle-1738
+
+
+ + + +Welt +world +monde + + +
ek
+
+
monde
+
+
Welt
+
+
world
+
+ +
1254
+
+
+ + + +Natur +nature +nature +
Natur
+
+
nature
+
+
nature
+
+
+ + + +Leben +life +vie + +
Sô gîgî laâ!
+ +
So ist das Leben!
+
That's life!
+
C'est la vie!
+
+
+ + +
ek
+
+
Leben
+
+
life
+
+
vie
+
+ +
0238
+
+
+
+ + +
ngbongbôro
+
+ + +
ngbo.ngbo.ɾo
+ +
1.3.1
+
+
+ + + +riesig ganz +very large +gigantesque + + +
ek
+
+
+ + + +Größe, Vollständigkeit, Ganze +comprehensiveness, whole +grosseur, globalité, entièreté + + +
ek
+
+
Größe, Vollständigkeit, Ganze
+
+
+ + + +das Ganze +the whole thing +le tout (entier) + +
+ + +
sîtâ
+
+ + +
Check kamba ti ya and kete ya
+
+ + + + + + +Därm, Eingeweide +intestines +intestins + + +
ek
+
+
Därm, Eingeweide
+
+
intestines
+
+
intestins
+
+ + +
0086
+
+
+
+ + +
gbâgba
+
+ + + + +Mädchen-Kreisspiel +girl's circle game +jeu des filles + +
Mädchenkreisspiel, in dem jedes Mädchen sich in die Arme der anderen Spieler werfen läßt
+
girl's circle game played by tossing oneself into the arms of the others
+
jeu des filles, qui se jettent dans les mains les unes après les autres
+
+ + +
ek
+
+
Mädchen-Kreisspiel
+
+
+
+ + +
lütï kpô
+
+ + + + + + + + +still stehen +stand still +ne pas bouger + + +
ek
+
+
still stehen
+
+
+
+ + +
môlengê sô ahînga babâ tî lo pëpe
+
+ + + + + + + + + + + + + + + + +uneheliches Kind +bastard, illegitimate child +bâtard, enfant illégitime + + +
tl
+
+
bastard, illegitimate child
+
+
bâtard, enfant illégitime
+
+
uneheliches Kind
+
+ + +
0376
+
+
+
+ + +
bê tî ... anzere
+
+ + + + + + + + + +fröhlich (sein), zufrieden (sein) +happy, glad (be) +heureux, content (être) + +
Lo wara kötä diamäa. Bê tî lo anzere mîngi!
+ +
He found a big diamond. He is very glad!
+
+
+ + +
ek
+
+
(être) heureux, content
+
+
fröhlich (sein), zufrieden (sein)
+
+
happy, glad
+
+ + +
0267
+
+
+
+ + +
lâkûi
+
+ + + + +Nachmittag +afternoon +soir + + +
ek
+
+
afternoon
+
+
Nachmittag
+
+
soir
+
+
+ + + +Abenddämmerung +dusk, twilight (after sunset) +crépuscule + + +
tl
+
+
Abenddämmerung
+
+
crépuscule
+
+
dusk, twilight (after sunset)
+
+ +
1382
+
+
+
+ + +
zîa kûkû
+
+ + + + + + + + + + + + +(eine Falle) stellen +set (trap) +tendre (un piège) + + +
tl
+
+
(eine Falle) stellen
+
+
set (trap)
+
+
tendre (un piège)
+
+ +
0792
+
+
+
+ + +
bängö-li
+
+ + +
bängö li
+ +
+ + + + + + + + + +
ba.ngɔ.li
+ +
2.2.1
+
+
+ + + +Traum +dream +rêve + + +
ek
+
+
dream
+
+
rêve
+
+
Traum
+
+ +
0129
+
+
+ + + +Vision (übernatürlich); Traum +vision (supernatural); dream +vision (surnaturelle); rêve + + +
tl
+
+
dream
+
+
rêve
+
+
Traum
+
+
vision (supernatural)
+
+
vision (surnaturelle)
+
+
Vision (übernatürlich)
+
+ + +
0916
+
+
+
+ + +
bïkua ôko
+
+ + + + + + + + +Montag +Monday +lundi + + +
ek
+
+
lundi
+
+
Monday
+
+
Montag
+
+ + + + + +
+
+ + +
zëndë
+
+ + + + +Schmutz, Dreck +dirt +saleté + + + + +
ek
+
+
dirt
+
+
saleté
+
+
Schmutz, Dreck
+
+
+ + + +Abfall, Müll +trash, rubbish +ordures + + +
tl
+
+
Abfall, Müll
+
+
ordures
+
+
trash, rubbish
+
+ +
0741
+
+
+ + + +Fleck (en) +spot +tache, tacheture + + +
tl
+
+
Fleck (en)
+
+
spot
+
+
tache, tacheture
+
+ +
1396
+
+
+ +schmutzig (sein) +dirty (be) +sale (être) + + +
tl
+
+
(être) sale
+
+
dirty
+
+
schmutzig (sein)
+
+ +
1585
+
+
+
+ + +
balë-
+
+ + + + + +Markierer für Zehner gruppen +marker of groups of ten +marqueur des unités de dix + + + + +
ek
+
+
Markierer für Zehner gruppen
+
+
+
+ + +
mbongo
+
+ + +
mbo.ngo
+ +
1.1
+
+
+ + + +Süden +south +sud + + +
tl
+
+
south
+
+
sud
+
+
Süden
+
+ +
1659
+
+
+
+ + +
nzö
+
+ + + + +Mais +corn, maize +maïs + + +
Zea mays
+
+ +
tl
+
+
corn, maize
+
+
Mais
+
+
maïs
+
+ +
1232
+
+
+ + + +Maiskolben +corn cob +épi (de maïs) + + +
tl
+
+
corn cob
+
+
épi (de maïs)
+
+
Maiskolben
+
+ +
1200
+
+
+
+ + +
fa mbëtï
+
+ + + + + + + + +unterrichten, lehren +teach, instruct +enseigner + + + + +
ek
+
+
enseigner
+
+
teach, instruct
+
+
unterrichten, lehren
+
+ +
0263
+
+
+
+ + +
ngböngö
+
+ + +
ngbɔ.ngɔ
+ +
2.2
+
+
+ + + +Windpocken +chickenpox +varicelle + + +
i-1054
+
+
+
+ + +
karakânzi
+
+ + + + +Soßengemüse +vegetable in a sauce +légume à sauce + + +
ek
+
+
Soßengemüse
+
+
+
+ + +
ïrï
+
+ + + + +Name +name +nom + + + + +
tl
+
+
name
+
+
Name
+
+
nom
+
+ +
0359
+
+
+ + + +Titel +title +titre + + +
ek
+
+
Titel
+
+
title
+
+
titre
+
+
+
+ + +
sâra ôke
+
+ + + + + + + + +den Schluckauf haben +hiccough +hoqueter + + +
tl
+
+
den Schluckauf haben
+
+
hiccough
+
+
hoqueter
+
+ +
0114
+
+
+
+ + +
+
+ + +
+ +
2
+
+
+ + + +Ziel +target +cible + +
gfk-d, jl, lb
+
+ +
mle-4767
+
+
+
+ + +
fâ lë-kôbe
+
+ + + + + + + + + + + + + + + + +ernten (Mais) +harvest (maize) +récolter (le maïs) + + +
tl
+
+
ernten (Mais)
+
+
harvest (maize)
+
+
récolter (le maïs)
+
+ +
0757
+
+
+
+ + +
kâmba tî pörö
+
+ + + + + + + + + + + + +Lederriemen, Ledergürtel, Schnürsenkel, Lederseil +leather strap, belt, rope, shoestring +corde, lacet (de soulier), courroie, sangle en cuir + + +
tl
+
+
corde, lacet (de soulier), courroie ou sangle en cuir
+
+
leather strap, belt, rope or shoestring
+
+
Lederriemen, Ledergürtel, Schnürsenkel, Lederseil
+
+
+
+ + +
ahön ...
+
+ + + + + + +
a.hɔ / a.hɔ̰
+
+ + + +mehr als +more than +plus que + + + + +
ek
+
+
mehr als
+
+
+
+ + +
wamosoro
+
+ + + + +reiche Person +rich person +un riche + + +
tl
+
+
reiche Person
+
+
rich person
+
+
un riche
+
+ +
0813
+
+
+ +reich (sein) +rich (be) +riche (être) + + +
tl
+
+
(être) riche
+
+
reich (sein)
+
+ +
0815
+
+
+
+ + +
da
+
+ + + + + + + + +Haus +house +maison + + + + +
ek
+
+
Haus
+
+
house
+
+
maison
+
+ +
0662
+
+
+ + + +Gebäude, Bauwerk +building +bâtiment + + +
+ + +
bobo
+
+ + +
bo.bo
+ +
1.1
+
+
+ + + +fliegende Termite +flying termite +termite ailée + + +
ek
+
+
fliegende Termite
+
+
+ + + +fliegende Ameise +flying ant +fourmi volante + + +
tl
+
+
fliegende Ameise
+
+
flying ant
+
+
fourmi volante
+
+ +
1125
+
+
+
+ + +
nînga mîngi
+
+ + + + +for a long time +longtemps +
longtemps
+
+
+
+ + +
zo sô alängö ndurü na mbâ tî lo
+
+ + + + + + + + + + + + + + + + + + + + +Nachbar(in) +neighbor +voisin + + +
tl
+
+
Nachbar(in)
+
+
neighbor
+
+
voisin
+
+ +
0381
+
+
+
+ + +
töngbïngö (yê)
+
+ + + + + + +
to.ngbi.ngɔ
+ +
2.2.2
+
+
+ + + +tauschen (Güter) +barter, exchange (of goods) +échanger (de marchandises) + + +
tl
+
+
barter, exchange (of goods)
+
+
échanger (de marchandises)
+
+
tauschen (Güter)
+
+ + +
0819
+
+
+
+ + +
hölëngö ndo
+
+ + + + + + + + + + + + +Dürre, Trockenheit, Hungersnot +drought, famine +sécheresse, famine, disette + + +
tl
+
+
drought, famine
+
+
Dürre, Trockenheit, Hungersnot
+
+
sécheresse, famine, disette
+
+ +
1341
+
+
+
+ + +
ngû sô asûku amû ndo kûê
+
+ + + + + + + + + + + + + + + + + + + + +Flute, Überschwemmung +flood +inondation + + +
tl
+
+
flood
+
+
Flute, Überschwemmung
+
+
inondation
+
+ +
1339
+
+
+
+ + +
na lêgë tî bübängö yê
+
+ + + + + + + + + + + + + + + + + + + + + + + +destruktiv +destructively +de manière destructrice + +
Lo sâra kua na lêgë tî bübängö yê.
+ +
He worked destructively.
+
Il travaille de manière destructrice.
+
+
+ +
mle-1335
+
+
+
+ + +
+
+ + + + +hacken +chop, hack (with axe or machete) +couper (avec hache ou couteau) + + +
ek
+
+
chop
+
+
couper
+
+
hacken
+
+ +
i-234
+
+
+ + + +pflegen +cultivate (soil) +cultiver (un champs) +
pflegen
+
+
+ + + +fällen (einen Baum) +cut down (a tree) +abattre (un arbre) + + +
tl
+
+
abattre (un arbre)
+
+
cut down (a tree)
+
+
fällen (einen Baum)
+
+ +
0713
+
+
+ + + +beißen +bite (snake) +mordre + +
Ngbö adë gerê môlengê.
+ +
A snake bit the child's foot.
+
+
+ + +
tl
+
+
beißen
+
+
bite (snake)
+
+
mordre
+
+ + +
1114
+
+
+ + + +picken +peck +picorer + + +
tl
+
+
peck
+
+
picken
+
+
picorer
+
+ +
1079
+
+
+
+ + +
kôlï tî …
+
+ + + + + + + + +Ehemann, Gatte +husband +mari, époux + + +
tl
+
+
Ehemann, Gatte
+
+
husband
+
+
mari, époux
+
+ + +
0362
+
+
+
+ + +
govoroma
+
+ + +
go.vo.ɾo.maa
+ +
1.1.1.21
+
+
+ + + +Regierung +government +gouvernement + + +
ek
+
+
gouvernement
+
+
government
+
+
Regierung
+
+
+
+ + +
lê na lê
+
+ + + + + + +persönlich, gegenüber +face to face, one on one +vis-à-vis + + +
ek
+
+
persönlich, gegenüber
+
+
vis-à-vis
+
+
+
+ + +
kokö
+
+ + +
???
+ +
1.2
+
+
+ + + +Kokosnuss +coconut +noix de coco +
coconut
+
+
Kokosnuss
+
+
+
+ + +
kö lê tî kôbe
+
+ + + + + + + + +ernten +harvest +récolter + + +
ek
+
+
ernten
+
+
harvest
+
+
récolter
+
+ +
0758
+
+
+
+ + +
+
+ + + + +Sonne +sun +soleil + + + + +
tl
+
+
soleil
+
+
Sonne
+
+
sun
+
+ +
1317
+
+
+ + + +Tag +day +jour + + +
tl
+
+
day
+
+
jour
+
+
Tag
+
+ +
1367
+
+
+
+ + +
nzara tî nyön
+
+ + + + +Durst +thirst +soif + + + + +
ek
+
+
Durst
+
+
soif
+
+
thirst
+
+
+
+ + +
hînga
+
+ + + + +wissen, kennen +know (something or someone), recognize +savoir, connaître + + + + +
tl
+
+
know (something or someone), recognize
+
+
savoir, connaître
+
+
wissen, kennen
+
+ +
0255
+
+
+
+ + +
bâda
+
+ + + + +Verein nur für Mitglieder +members only club +association réservé aux initiés + + +
ek
+
+
Verein nur für Mitglieder
+
+
+
+ + +
nyâön
+
+ + + + + +
nyaɔ̰
+ +
32
+
+
+ + + +Katze +cat +chat + + +
tl
+
+
cat
+
+
chat
+
+
Katze
+
+ +
0993
+
+
+
+ + +
sêtâ
+
+ + +
Check kamba ti ya and kete ya
+
+ + + +Därm, Eingeweide +intestines +intestins + + +
ek
+
+
Därm, Eingeweide
+
+
intestines
+
+
intestins
+
+ + +
0086
+
+
+
+ + +
zeme tî birä
+
+ + + + + + + + + + + + +Schwert +sword +épée + + +
tl
+
+
épée
+
+
Schwert
+
+
sword
+
+ +
0871
+
+
+
+ + +
yê sô akânga lêgë
+
+ + + + + + + + + + + + + + + + +Hindernis +stumbling block, obstruction +obstruction, pierre d'achoppement + + +
tl
+
+
Hindernis
+
+
obstruction
+
+
stumbling block, obstruction
+
+ +
0323
+
+
+
+ + +
fâ selêka
+
+ + + + + + + + + + + + +heiraten +marry +se marier, épouser + + +
tl
+
+
heiraten
+
+
marry
+
+
se marier, épouser
+
+ +
0939
+
+
+
+ + +
könöngö tî gbe tî yâ
+
+ + + + + + + + + + + + + + +
kɔ.nɔ.ngɔ ti gbe ti ya
+ +
2.2.2 3 1 3 3
+
+
+ + + +Taille, Gürtellinie +waist +taille (ceinture) + + +
tl
+
+
taille (ceinture)
+
+
Taille, Gürtellinie
+
+
waist
+
+ +
0036
+
+
+
+ + +
+
+ + +zahlreich (sein) +numerous (be) +nombreux (être) + + +
ek
+
+
zahlreich (sein)
+
+
+ + + +wuchern +proliferate, run wild +proliférer + +
i-825
+
+
+ + + +sich verbreiten +spread +se répandre + + +
ek
+
+
se répandre
+
+
sich verbreiten
+
+
spread
+
+ +
1415
+
+
+
+ + +
tene mvene
+
+ + + + + + + + + + + +lügen +lie +mentir + + +
ek
+
+
lügen
+
+
mentir
+
+ +
i-636
+
+
+
+ + +
ngoalö
+
+ + +
???
+
+ + + +Adler +eagle +aigle + + +
tl
+
+
Adler
+
+
aigle
+
+
eagle
+
+ + +
1055
+
+
+ + + +Geier +vulture +vautour + +
tl notes tezôon
+
+
Geier
+
+
vautour
+
+
vulture
+
+ + +
1057
+
+
+
+ + +
sukûla
+
+ + + + +waschen, reinigen +wash, clean +laver, nettoyer + + + + +
tl
+
+
laver, nettoyer
+
+
waschen, reinigen
+
+
wash, clean
+
+ +
0737
+
+
+
+ + +
kâwa
+
+ + + + +Kaffee +coffee +café + + +
Saccharum officinarum
+
+ +
tl
+
+
café
+
+
coffee
+
+
Kaffee
+
+ +
1242
+
+
+
+ + +
nyâü
+
+ + + + +Katze +cat +chat + + +
ek
+
+
cat
+
+
chat
+
+
Katze
+
+ +
0993
+
+
+
+ + +
kalaöo
+
+ + +
ka.la.oo
+ +
1.1.21
+
+
+ + + +Nashornvogel +hornbill +calao + + +
tl
+
+
calao
+
+
hornbill
+
+
Nashornvogel
+
+ +
1050
+
+
+
+ + +
yingö-va
+
+ + +
(katholisch)
+
(catholic)
+
(catholique)
+
+ + + +Engel +angel +ange + + +
ek
+
+
ange
+
+
angel
+
+
Engel
+
+
+
+ + +
fütängö
+
+ + +
fu.ta.ngɔ
+ +
2.2.2
+
+
+ + + +Zahlung +payment +paiement, versement + + +
tl
+
+
paiement, versement
+
+
payment
+
+
Zahlung
+
+ +
0827
+
+
+
+ + +
gbegôbîâ
+
+ + +
gbɛ.gɔ.bia
+ +
1.3.33
+
+
+ + + +Melodie +melody +mélodie + + +
ek
+
+
Melodie
+
+
mélodie
+
+
melody
+
+
+
+ + +
fâ terê
+
+ + + + + + + + + + + +Selbstmord begehen +commit suicide +se suicider + + + + +
ek
+
+
Selbstmord begehen
+
+
+
+ + +
tomba
+
+ + +
tumba
+ +
+ +
to.mba
+ +
1.1
+
+
+ + + +verjagen, fortjagen +drive away, expel, kick out +chasser + + +
ek
+
+
chasser
+
+
drive away, expel, kick out
+
+
verjagen, fortjagen
+
+ + +
0422
+
+
+ + + +entlassen +dismiss from a job, relieve of duties, fire +relever (quelqu’un au travail pour qu’il se repose), congédier + +
i-863
+
+
+ + + +verfolgen +pursue, chase +poursuivre + + +
ek
+
+
poursuivre
+
+
pursue
+
+
verfolgen
+
+ +
0777
+
+
+
+ + +
dawä
+
+ + + + +vor +front +devant + + + + +
ek
+
+
devant
+
+
front
+
+
vor
+
+
+
+ + +
böndö
+
+ + +
bo.ndo
+ +
2.2
+
+
+ + + +Hirse, Sorgho +millet +mil + + +
Pennisetum glaucum
+
+ +
tl
+
+
Hirse, Sorgho
+
+
mil
+
+
millet
+
+ +
1233
+
+
+
+ + +
kongö
+
+ + +
kɔ.ngɔ
+ +
1.2
+
+
+ + + +Regenbogen +rainbow +arc-en-ciel + + +
ek
+
+
arc-en-ciel
+
+
rainbow
+
+
Regenbogen
+
+ + +
1316
+
+
+
+ + +
yângâ tî gbägbä
+
+ + + + + + + + + + + + +Eingangstor zum Grundstück +gate for the compound; fence gate +portail de la muraille d'enceinte + + +
tl
+
+
Eingangstor zum Grundstück
+
+
fence gate
+
+
gate for the compound
+
+
portail de la muraille d'enceinte
+
+ +
+
+ + +
mo
+
+ + +
+ +
1
+
+
+ + + +du +you (SG) +tu + + +
tl
+
+
du
+
+
tu
+
+
you (SG)
+
+ +
1649
+
+
+ + + +dir, dich +you (SG) +te, toi + + +
ek
+
+
dir, dich
+
+
+
+ + +
kûkû tî dongô tî gbüngö ndeke
+
+ + + + + + + + + + + + + + + + + + + + +Vogelleim (Kleber um Vögel zu fangen) +birdlime (adhesive to catch birds) +glu (pour prendre les oiseaux) + + +
tl
+
+
birdlime (adhesive to catch birds)
+
+
glu (pour prendre les oiseaux)
+
+
Vogelleim (Kleber um Vögel zu fangen)
+
+ + +
0790
+
+
+
+ + +
pôngô
+
+ + +
po.ngo
+ +
3.3
+
+
+ + + +Ringkampf (Griff) +wrestling (hold) +lutte, prise de catch + + +
ek
+
+
Ringkampf (Griff)
+
+ +
i-588
+
+
+
+ + +
gbï
+
+ + + + +paddeln +paddle +pagayer + + +
ek
+
+
paddeln
+
+
paddle
+
+
pagayer
+
+ +
0853
+
+
+
+ + +
kânga lêgë
+
+ + + + + + + + + + + + +behindern, versperren +obstruct +empêcher (obstruer, bloquer, gêner) + + +
tl
+
+
behindern, versperren
+
+
empêcher (obstruer, bloquer, gêner)
+
+
obstruct
+
+ +
0322
+
+
+
+ + +
gbôkorobö
+
+ + +
gbo.ko.ɾo.bo
+ +
3.1.1.2
+
+
+ + + +Nabelbruch +hernia (umbilical) +hernie + + +
tl
+
+
hernia (umbilical)
+
+
hernie
+
+
Nabelbruch
+
+ +
0218
+
+
+
+ + +
pörö tî pärä
+
+ + + + + + + + + + + + +Eierschale +eggshell +coquille d'œuf + + +
tl
+
+
coquille d'œuf
+
+
eggshell
+
+
Eierschale
+
+ +
1067
+
+
+
+ + +
hümä
+
+ + + + +Stolz +pride +orgueil + + +
ek
+
+
orgueil
+
+
pride
+
+
Stolz
+
+
+
+ + +
nâkö
+
+ + +
na.ko
+ +
3.2
+
+
+ + + +(Wasser-)Schildkröte +turtle +tortue (aquatique) + + +
ek
+
+
(Wasser-)Schildkröte
+
+
tortue (aquatique)
+
+
turtle
+
+ + +
1109
+
+
+
+ + +
kômbe
+
+ + +
kɔ.mbɛ
+ +
3.1
+
+
+ + + +Rivalin +female rival +rivale + + +
ek
+
+
rivale
+
+
Rivalin
+
+
+ + + +schwierige Verwandte +difficult female relative +femme d'un parent + + +
ek
+
+
schwierige Verwandte
+
+
+ + + +Ehebruch +adultery +adultère + +
+ + +
Kötä Urse
+
+ + + + + + + + +Großer Wagen, Großer Bär +Big Dipper, Plough, Great Bear +la Grande Ours, Girafe + + +
tl
+
+
Big Dipper, Plough, Great Bear
+
+
Großer Wagen, Großer Bär
+
+
la Grande Ours, Girafe
+
+ +
1324
+
+
+
+ + +
kondêe
+
+ + +
???
+ +
1.31
+
+
+ + + +sich auf ... verlassen +rely on +compter sur + + +
ek
+
+
sich auf ... verlassen
+
+
+
+ + +
badâ
+
+ + + + +Eichhörnchen, Erdhörnchen +squirrel, ground squirrel +écureuil, écureuil de terre + + +
tl
+
+
écureuil, écureuil de terre
+
+
Eichhörnchen, Erdhörnchen
+
+
squirrel, ground squirrel
+
+ +
1017
+
+
+
+ + +
zîa nzorôko
+
+ + + + + + + + + + + + +schmücken, dekorieren +decorate +décorer + + +
tl
+
+
decorate
+
+
décorer
+
+
schmücken, dekorieren
+
+ +
0898
+
+
+
+ + +
ândö giriri
+
+ + + + + + + + + + + + +vor langer Zeit +a long time ago +jadis + +
Mo laa mo lu gere ti sese ando giriri, yayu ayeke ye so maboko ti mo asara. [BSC2010 - Psa 102:26]
+ +
A long time ago you laid the foundations of the earth, the heavens were made by your hands.
+
+
+ + +
ek
+
+
jadis
+
+
vor langer Zeit
+
+ +
1375
+
+
+
+ + +
ngîâ
+
+ + + + +Freude, Glück +joy, happiness +joie, bonheur + + + + +
ek
+
+
Freude, Glück
+
+ +
i-101
+
+
+ + + +Munterkeit +cheerfulness, playfulness +gaieté + + +
i-457
+
+
+ + + +Spiel +game +jeu + + +
tl
+
+
game
+
+
jeu
+
+
Spiel
+
+ +
0901
+
+
+
+ + +
matânga tî fängö selêka
+
+ + + + + + + + + + + + + + + + +Hochzeit (Feier) +wedding (ceremony) +mariage (cérémonie) + + +
tl
+
+
Hochzeit (Feier)
+
+
mariage (cérémonie)
+
+
wedding (ceremony)
+
+ +
0943
+
+
+
+ + +
kamâ-porosö
+
+ + + + + + +
ka.ma.po.ɾo.so
+ +
1.3.1.1.2
+
+
+ + + +politische Partei +political party +partie politique + + + + +
ek
+
+
politische Partei
+
+
+
+ + +
tôreche
+
+ + +
tɔ.ɾɛ.ʃɛ
+ +
3.1.1
+
+
+ + + +Lampe, Fackel, Taschenlampe +lamp, torch, flashlight +lampe, torche + + +
tl
+
+
lamp, torch, flashlight
+
+
Lampe, Fackel, Taschenlampe
+
+
lampe, torche
+
+ +
0698
+
+
+
+ + +
süä
+
+ + +
su.a
+ +
2.2
+
+
+ + + +Nadel +needle +aiguille + + +
tl
+
+
aiguille
+
+
Nadel
+
+
needle
+
+ +
0726
+
+
+ + + +Stachel +stinger +dard, aiguillon + + +
tl
+
+
dard, aiguillon
+
+
Stachel
+
+
stinger
+
+ +
1150
+
+
+
+ + +
kötä bê
+
+ + + + + + + + + + + +Eifersucht +jealousy +jalousie + + +
ek
+
+
Eifersucht
+
+
jalousie
+
+
jealousy
+
+ +
i-541
+
+
+ + + +Gier +greed +cupidité + +
i-271
+
+
+
+ + +
kôndo
+
+ + +
kɔ.ndɔ
+ +
3.1
+
+
+ + + +Huhn +chicken +poulet + + +
tl
+
+
chicken
+
+
Huhn
+
+
poulet
+
+ +
0974
+
+
+
+ + +
sïgî
+
+ + + + + + + +ausgehen +go out +sortir + + +
ek
+
+
ausgehen
+
+
go out
+
+
sortir
+
+ + +
1408
+
+
+ + + +erscheinen +appear +apparaître + + +
ek
+
+
apparaître
+
+
appear
+
+
erscheinen
+
+
+
+ + +
mäpö
+
+ + +
???
+ +
2.2
+
+
+ + + +Welle +wave +vague + + +
tl
+
+
vague
+
+
wave
+
+
Welle
+
+ +
1301
+
+
+
+ + +
mbîndä
+
+ + + + +Wolke +cloud +nuage + + +
tl
+
+
cloud
+
+
nuage
+
+
Wolke
+
+ +
1315
+
+
+ + + +Nebel +fog +brouillard + + +
ek
+
+
brouillard
+
+
fog
+
+
Nebel
+
+
+
+ + +
pekônî
+
+ + + + + +
pɛ.kɔ.ni
+ +
1.3.3
+
+
+ + + +Rückseite +back (of something) +le dos, l'arrière (de quelque chose) + + +
tl
+
+
back (of something)
+
+
le dos, l'arrière (de quelque chose)
+
+
Rückseite
+
+ +
1390
+
+
+
+ + +
wala
+
+ + + + +oder +or +ou, ou bien, soit + +
ek
+
+
oder
+
+
or
+
+
+
+ + +
ba
+
+ + + + +(ver-) biegen +bend +courber + + + + + + +
ek
+
+
(ver-) biegen
+
+
bend
+
+
courber
+
+
+ +gebogen, verbogen +bent +courbé + + +
ek
+
+
bent
+
+
courbé
+
+
gebogen, verbogen
+
+
+ + + +verdrehen +twist +tordre + + +
tl
+
+
tordre
+
+
twist
+
+
verdrehen
+
+ +
1440
+
+
+
+ + +
mäbê
+
+ + + + +Glaube, Überzeugung +faith, belief +foi, croyance + + +
ek
+
+
Glaube, Überzeugung
+
+
+
+ + +
vököngö ndo
+
+ + + + + + + + + + + + +Dunkelheit +darkness +obscurité + + +
tl
+
+
darkness
+
+
Dunkelheit
+
+
obscurité
+
+ + +
1351
+
+
+
+ + +
yê tî bê
+
+ + + + + + + + +Lieblings-... +favorite thing +chose aimée, préférée + + + + +
ek
+
+
Lieblings-...
+
+
+
+ + +
zöröndö
+
+ + + + +helfen +help, rescue +secourir + +
jl, lb, gfk-d
+
+ +
i-934
+
+
+
+ + +
sa
+
+ + + + +Tier, Tierart +animal +animal + + + + +
ek
+
+
animal
+
+
animal
+
+
Tier, Tierart
+
+ +
0957
+
+
+ + + +Fleisch +meat +viande + + +
ek
+
+
Fleisch
+
+
meat
+
+
viande
+
+ +
0570
+
+
+
+ + +
yeke kötä
+
+ + + + + + +groß, mächtig (sein) +great, powerful (be) +grand, puissant (être) + +
Sô ayeke kötä gbïä bîanî! Âwato tî lo kûê akpë mbito tî lo.
+ +
That was indeed a great king! All his enemies feared him.
+
+
+ + +
tl
+
+
(être) grand, puissant
+
+
great, powerful
+
+
groß, mächtig (sein)
+
+ +
1574
+
+
+
+ + +
fotöo
+
+ + +
fo.too
+ +
1.21
+
+
+ + + +Foto, Bild +photo, picture +photo, image + + +
ek
+
+
Foto, Bild
+
+
+
+ + +
nganga
+
+ + + + +Medikament +medicine, medication +médicament + + +
ek
+
+
médicament
+
+
medication
+
+
Medikament
+
+ + +
0209
+
+
+ + + +Medizinmann +traditional healer +féticheur + + +
ek
+
+
féticheur
+
+
Medizinmann
+
+
traditional healer
+
+ +
0409
+
+
+ + + +Wahrsager(in) +fortune-teller, diviner +devin, diseur + + +
tl
+
+
devin, diseur
+
+
fortune-teller, diviner
+
+
Wahrsager(in)
+
+ +
0413
+
+
+
+ + +
sönsôn
+
+ + + + + +
sɔ̰.sɔ̰
+ +
2.2
+
+
+ + + +furzen +break wind, fart +péter + + +
tl
+
+
break wind, fart
+
+
furzen
+
+
péter
+
+ +
0120
+
+
+
+ + +
gobo
+
+ + +
???
+
+ + + +Bettlerei +begging +mendicité + + +
ek
+
+
begging
+
+
Bettlerei
+
+
mendicité
+
+
+
+ + +
këkë tî kpu
+
+ + + + + + + + +Stößel, Mörser +pestle +pilon + + + + +
tl
+
+
pestle
+
+
pilon
+
+
Stößel, Mörser
+
+ +
0618
+
+
+
+ + +
dë ngii
+
+ + + + +still +silent +silencieux + +
Ndo adë ngii.
+ +
The place is completely silent.
+
+
+ + +
ek
+
+ + +
0442
+
+
+ + + +erstaunt, verblüfft, bestürzt +stupefied +ahuri, stupéfait + + +
+ + +
lêgë tî ngû sô ahôle
+
+ + + + +Flussbett (trocken) +riverbed (dry) +wadi, lit sec de rivière + + + +
1295
+
+
+
+ + +
lïngä
+
+ + + + +traditionelle Trommel +traditional drum +tambour + + +
ek
+
+
tambour
+
+
traditionelle Trommel
+
+
+
+ + +
sïönî
+
+ + +
siɔ.ni
+ +
22.3
+
+
+ + + +schlecht (sein) +bad (be) +mauvais (être) + +
Mbênî sïönî zo anzï yê tî lo.
+ +
A bad person stole his belongings.
+
+
+ + +
tl
+
+
(être) mauvais
+
+
bad
+
+
schlecht (sein)
+
+ +
1577
+
+
+ + + +sehr +very +très + +
Torche amîngo, avûko sïönî
+ +
The flashlight went out, it is very dark.
+
La torche s'est éteinte, il est très sombre.
+
+
+ + +
ek
+
+
sehr
+
+
très
+
+
very
+
+
+ + + +Unfug +wrongdoing +méfait, forfait +
Unfug
+
+
wrongdoing
+
+
+
+ + +
dëbä
+
+ + + + + +
+ + +
fadë tî pekô
+
+ + + + + + + + +bald, demnächst +soon +bientôt + + +
ek
+
+
bald, demnächst
+
+
bientôt
+
+
soon
+
+
+
+ + +
sïönî pêrë
+
+ + + + + + + + + + + + +Unkraut +weeds +mauvaises herbes + + +
tl
+
+
mauvaises herbes
+
+
Unkraut
+
+
weeds
+
+ +
1176
+
+
+
+ + +
gerêmbëtï
+
+ + + + +Buchstabe +letter of the alphabet +lettre de l'alphabet + + +
ek
+
+
Buchstabe
+
+
+
+ + +
tirika
+
+ + + + +anstrengen +exert oneself, strain +se débattre + + +
ek
+
+
anstrengen
+
+
+
+ + +
pusiëre
+
+ + + + +Staub +dust +poussière + + +
tl
+
+
dust
+
+
poussière
+
+
Staub
+
+ +
1275
+
+
+
+ + +
tî löndö na
+
+ + + + + + + + + + + + + + +seit +since +depuis + +
Tî löndö na ndäpêrêrê mbï nyön ngû pëpe.
+ +
Seit dem Morgen habe ich kein Wasser mehr getrunken.
+
Since morning, I haven't drunk any water.
+
Depuis le matin, je n'ai pas bu d'eau.
+
+
+
+
+ + +
zembe
+
+ + + + + + + +Messer +knife +couteau + + +
ek
+
+
couteau
+
+
knife
+
+
Messer
+
+ +
0786
+
+
+
+ + +
gue veke
+
+ + + + + + + + + + + +für die Eltern eines Mädchens arbeiten, um um seine Hand anzuhalten +work for a girl's parents to ask for her hand in marriage +donner ses services aux parents d'une fille pour demander la main + +
sich durch Arbeit bei der Familie eines Mädchens das Recht erwerben, dieses zu heiraten
+
work for a girl's parents to ask for her hand in marriage
+
donner ses services aux parents d'une fille pour demander la main
+
+ + +
ek
+
+
für die Eltern eines Mädchens arbeiten, um um seine Hand anzuhalten
+
+
+
+ + +
ngbangäzâ
+
+ + + + +Windpocken +chickenpox +varicelle + + +
i-1054
+
+
+
+ + +
lâûlâû
+
+ + +
from Fulfulde law-law
+
+ + + +schnell +rapidly +rapidement +
rapidement
+
+
rapidly
+
+
schnell
+
+
+
+ + +
kpaka yângâ nî azä
+
+ + + + + + + + + + + + +spitzen (Pfeil) +sharpen, bring to point (arrow) +aiguiser (flèche) + + +
tl
+
+
aiguiser (flèche)
+
+
sharpen, bring to point (arrow)
+
+
spitzen (Pfeil)
+
+ +
1539
+
+
+
+ + +
bübä
+
+ + + + +Unsinn, Dummheit +foolish action +bêtise + + +
ek
+
+
bêtise
+
+
Unsinn, Dummheit
+
+
+ +dumm (sein) +stupid (be) +stupide, bête (être) + +
Âkângâ ayeke bübä mîngi ahön! Âla nguru gï na ndo ôko.
+ +
Hartebeests are stupid as can be! They just circle around in one place.
+
+
+ + +
tl
+
+
(être) stupide, bête
+
+
dumm (sein)
+
+
stupid
+
+ + +
0260
+
+
+
+ + +
fadë
+
+ + + + +future.marker +marqueur.futur +
future.marker
+
+
marqueur.futur
+
+
+ + + +sofort, gerade eben +immediately +tout de suite, immédiatement + +
short time span between two actions
+
exprime un court delai entre deux actions
+
+ +
Tî kâi kobêla nî, a lîngbi lo gue fadë na danganga.
+ +
To cure the disease, it is necessary that he go immediately to the hospital.
+
+
+ + +
ek
+
+
sofort, gerade eben
+
+ +
mle-2461
+
+
+
+ + +
yeke zo tî kïön
+
+ + + + + + +egoistisch (sein) +selfish (be) +égoïste (être) + +
Wanzï sô ayeke zo tî kïön. Lo kângbi nginza nî na âmbâ tî lo pëpe.
+ +
That thief is selfish. He does not share with his partners.
+
+
+ +
Lo yeke kïön mîngi. Lo ke tî kângbi kâsa nî na âmôlengê tî lo.
+ +
He is very selfish. He refuses to share the meat sauce with his children.
+
+
+ + +
tl
+
+
(être) égoïste
+
+
egoistisch (sein)
+
+
selfish
+
+ +
0302
+
+
+
+ + +
pôlôlô
+
+ + +
???
+
+ + + +Trillerpfeife +whistle +sifflet + + +
ek
+
+
sifflet
+
+
Trillerpfeife
+
+
whistle
+
+
+
+ + +
gbû gô
+
+ + + + + + + + + + + + +ersticken, würgen +choke +s'étrangler + + +
tl
+
+
choke
+
+
ersticken, würgen
+
+
s'étrangler
+
+ +
0146
+
+
+
+ + +
gue tî sâra ködrö na mbênî ndo
+
+ + + + + + + + + + + + + + + + + + +wegziehen, auswandern +move away, migrate +émigrer, déménager + + +
tl
+
+
émigrer, déménager
+
+
move away, migrate
+
+
wegziehen, auswandern
+
+ + +
0529
+
+
+
+ + +
mëngä
+
+ + +
Kim - 2nd sense approved
+
+ + + +Zunge +tongue +langue + + +
tl
+
+
langue
+
+
tongue
+
+
Zunge
+
+ +
0017
+
+
+ + + +Mund +mouth +bouche + + +
ek
+
+
bouche
+
+
mouth
+
+
Mund
+
+ +
0015
+
+
+
+ + +
tî kôzo
+
+ + + + + + + + +vorher, vor, zuvor +before, previously +avant + +
Tî kôzo, ï pîka gozo na yâ tî kpu.
+ +
Before, we pounded manioc in a mortar.
+
+
+ + +
ek
+
+
avant
+
+
before, previously
+
+
vorher, vor, zuvor
+
+ + +
1354
+
+
+
+ + +
pete na terê tî ...
+
+ + + + + + + + + + + + +aufhängen +hang up +accrocher + + +
tl
+
+
accrocher
+
+
aufhängen
+
+
hang up
+
+ +
1443
+
+
+
+ + +
dênge
+
+ + + + +beugen, sich neigen +bend over, bow +pencher, incliner + + + + +
ek
+
+
beugen, sich neigen
+
+
+
+ + +
wätäkä
+
+ + + + +Lüge +lie, falsehood +mensonge + + +
ek
+
+
lie, falsehood
+
+
Lüge
+
+
mensonge
+
+ +
0452
+
+
+
+ + +
foä
+
+ + +
foa
+ +
12
+
+
+ + + +Leber +liver +foie + + +
tl
+
+
foie
+
+
Leber
+
+
liver
+
+ +
0083
+
+
+
+ + +
da tî kängö yorö
+
+ + + + + + + + +Apotheke +pharmacy +pharmacie + + +
ek
+
+
Apotheke
+
+
pharmacie
+
+
pharmacy
+
+
+
+ + +
ndembö
+
+ + +
nde.mbo
+ +
1.2
+
+
+ + + +Ball +ball +ballon + + +
ek
+
+
ball
+
+
Ball
+
+
ballon
+
+
+
+ + +
wa
+
+ + + + +Besitzer +owner +propriétaire + + +
tl
+
+
Besitzer
+
+
owner
+
+
propriétaire
+
+ +
0812
+
+
+ + + +Agent +agent +agent + + +
ek
+
+
agent
+
+
agent
+
+
Agent
+
+
+
+ + +
dö bê
+
+ + + + + + + + +Angst haben +afraid (be) +avoir peur + + +
ek
+
+
Angst haben
+
+
+ +sich Sorgen machen +troubled (be) +troublé (être) + + +
ek
+
+
sich Sorgen machen
+
+
+
+ + +
lungûla sïökpärï
+
+ + + + + + + + + + + + +Sünde wegnehmen +remove sin +enlever le péché + + +
ek
+
+
Sünde wegnehmen
+
+
+
+ + +
tënë ayeke na li tî ... pëpe
+
+ + + + + + + + + + +unschuldig (sein) +innocent (be) +innocent (être) + +
Lo yeke bêtâ zo sô tënë ayeke na li tî lo pëpe.
+ +
He is a trustworthy person who is innocent.
+
+
+ + +
tl
+
+
(être) innocent
+
+
innocent
+
+
unschuldig (sein)
+
+ + +
0523
+
+
+
+ + +
te pëmbë
+
+ + + + + + + + + + + +ertragen, auf die Zähne beißen +bear, grit one's teeth +supporter, être stoïque + + +
ek
+
+
ertragen, auf die Zähne beißen
+
+
+
+ + +
sua
+
+ + + + +kämmen +comb +peigner + + +
ek
+
+
comb
+
+
kämmen
+
+
peigner
+
+
+
+ + +
pîka mabôko
+
+ + + + + + + + +Hände klatschen, applaudieren +clap, applaud +battre des mains, applaudir + +
Hände klatschen
+
clap (hands), applaud
+
battre des mains, applaudir
+
+ + + + +
tl
+
+
battre des mains, applaudir
+
+
clap, applaud
+
+
Hände klatschen, applaudieren
+
+ +
0167
+
+
+ + + +Finger schnippen +snap fingers +claquer les doigts + + +
ek
+
+
Finger schnippen
+
+
+
+ + +
lêgë
+
+ + + + +Straße, Weg +street, path, road +route, chemin + + + + +
tl
+
+
route, chemin
+
+
Straße, Weg
+
+
street, path, road
+
+ +
0847
+
+
+ + + +Gelegenheit +opportunity +possibilité + + +
ek
+
+
Gelegenheit
+
+
opportunity
+
+
possibilité
+
+
+ + + +Weg +way +moyen +
moyen
+
+
way
+
+
Weg
+
+
+
+ + +
koto
+
+ + +
(ngbâkrû tî ngombï) = instrument
+
+ +
kɔ.tɔ
+ +
1.1
+
+
+ + + +kratzen +scratch +gratter + + +
ek
+
+
gratter
+
+
kratzen
+
+
scratch
+
+ +
1450
+
+
+ + + +warnen +to warn +avertir + + + + +(Saitentinstrument) spielen +play (stringed instrument) +jouer (d'un instrument à cordes) + + +
tl
+
+
(Saitentinstrument) spielen
+
+
jouer (d'un instrument à cordes)
+
+
play (stringed instrument)
+
+ +
0895
+
+
+
+ + +
tî kpëngbä lê
+
+ + + + +vorsichtig, wachsam +careful, vigilant (be) +prudent, vigilant (être) + +
Tënë sô ayeke tî kpëngbä lê tî âla.
+ +
This matter is to make you vigilant.
+
Cette affaire doit te rendre vigilant.
+
+
+ +
lb
+
+ +
mle-0753
+
+
+
+ + +
fufû
+
+ + + + + + + +Lunge +lung +poumon + + +
ek
+
+
lung
+
+
Lunge
+
+
poumon
+
+ +
0085
+
+
+
+ + +
tolï
+
+ + + + + + +
to.li
+ +
1.2
+
+
+ + + +Beratung +advice +conseil + +
+ + +
tambêla gï na ndüzü ndüzü
+
+ + + + + + + + + + + + + + + + +herumlaufen, herumwandern +wander +errer + + +
tl
+
+
errer
+
+
herumlaufen, herumwandern
+
+
wander
+
+ +
0845
+
+
+
+ + +
mbûki
+
+ + + + +Bündnis, Pakt +bond, pact +alliance, pacte + + +
ek
+
+
alliance, pacte
+
+
bond, pact
+
+
Bündnis, Pakt
+
+ +
0473
+
+
+
+ + +
keretïen
+
+ + + + +Christ +christian +chrétien + + +
ek
+
+
chrétien
+
+
Christ
+
+
christian
+
+
+
+ + +
yo
+
+ + +
+ +
1
+
+
+ + + +lang (sein) +long (be) +long (être) + +
Lêgë ayo mîngi.
+ +
The road is long.
+
+
+ + +
ek
+
+
(être) long
+
+
lang (sein)
+
+
long
+
+ +
1513
+
+
+ + + +weit weg +far away (be) +loin (être) + +
Zemio ayo mîngi.
+ +
Zemio is far away.
+
+
+ + +
ek
+
+
far away
+
+
loin
+
+
weit weg
+
+ +
1656
+
+
+
+ + +
kânga yângâ (tî) ...
+
+ + +
kânga yângâ tî ...
+ +
+ + + + + + + + + + + + + + + + + + + +(Die Türe) schließen +shut (the door) +fermer (une porte) + + + + +
tl
+
+
(Die Türe) schließen
+
+
fermer (une porte)
+
+
shut (the door)
+
+ + +
0640
+
+
+ + + +verstopfen +stop up +boucher + + +
tl
+
+
boucher
+
+
stop up
+
+
verstopfen
+
+ +
0641
+
+
+ + + +schliessen +close, shut (tr) +fermer (un carton, une porte) + + +
tl
+
+
close, shut (tr)
+
+
fermer (un carton, une porte)
+
+
schliessen
+
+ + +
0640
+
+
+
+ + +
+
+ + + + +Essen, Nahrung +food +nourriture + + +
ek
+
+
Essen, Nahrung
+
+
food
+
+
nourriture
+
+ +
0569
+
+
+
+ + +
ngû sô abûngbi na potopôto
+
+ + + + + + + + + + + + + + + + +Sumpf, Moor +marsh +marais, marécage + + +
tl
+
+
marais, marécage
+
+
marsh
+
+
Sumpf, Moor
+
+ + +
1289
+
+
+
+ + +
ngbäkpä
+
+ + + + +Adler +eagle +aigle + + +
tl
+
+
épervier, faucon
+
+
Falke, Habicht
+
+
hawk
+
+ + +
1055
+
+
+
+ + +
süküngö gô
+
+ + + + + + + + + + + + +Kropf +goiter +goitre + + +
tl
+
+
goiter
+
+
goitre
+
+
Kropf
+
+ +
0217
+
+
+
+ + +
dëngö
+
+ + +
de.ngɔ
+ +
2.2
+
+
+ + + +Erbrochenes +vomit +vomissement + + +
ek
+
+
Erbrochenes
+
+
vomissement
+
+
vomit
+
+
+
+ + +
âsango
+
+ + +
a.sa.ngo
+ +
32
+
+
+ + + +Nachrichten +news +nouvelles + + +
tl
+
+
Nachrichten
+
+
news
+
+
nouvelles
+
+ +
0448
+
+
+
+ + +
tara ngangü
+
+ + +bemühen Sie sich sehr +make an effort to, try hard to +s'efforcer + +
i-336
+
+
+
+ + +
pialö
+
+ + +
???
+
+ + + +Projekt, Plan +project, plan +projet + + +
tl
+
+
project, plan
+
+
Projekt, Plan
+
+
projet
+
+ +
0295
+
+
+
+ + +
sâra lisorö
+
+ + + + + + + + + + + + +plaudern +chat +causer + + +
tl
+
+
causer
+
+
chat
+
+
plaudern
+
+ + +
0438
+
+
+
+ + +
ngurugbïä
+
+ + + + +Regierung +government +gouvernement + +
+ + +
töngana lê tî ndüzü
+
+ + + + + + + + + + +blau (sein) +blue (be) +bleu (être) + +
Nzorôko tî kötä ngû îngö ayeke töngana lê tî ndüzü.
+ +
The color of the ocean is blue.
+
+
+ + +
tl
+
+
(être) bleu
+
+
blau (sein)
+
+
blue
+
+ +
1558
+
+
+
+ + +
kuräan
+
+ + + + +Elektrizität +electricity +électricité + + +
ek
+
+
électricité
+
+
electricity
+
+
Elektrizität
+
+
+
+ + +
yângâ tî (kötä) ngû
+
+ + + + + + + + +Flussufer +river bank +bord (de rivière) + + +
tl
+
+
bord (de rivière)
+
+
Flussufer
+
+
river bank
+
+ + +
1296
+
+
+
+ + +
sizöö
+
+ + +
si.zoo
+ +
1.22
+
+
+ + + +Meißel +chisel +ciseau + + +
tl
+
+
chisel
+
+
ciseau
+
+
Meißel
+
+ +
0723
+
+
+
+ + +
zen
+
+ + + + + + + +Panther +panther +panthère + + +
ek
+
+
panther
+
+
Panther
+
+
panthère
+
+
+ + + +Tiger +tiger +tigre + + +
Tigers do not exist in CAR; however, after seeing a picture of one, a Sango speaker may apply this term by extension.
+
+ +
ek
+
+
tiger
+
+
Tiger
+
+
tigre
+
+
+ + + +Leopard +leopard +léopard + + +
Panthera pardus
+
+ +
ek
+
+
leopard
+
+
Leopard
+
+
léopard
+
+ +
1024
+
+
+
+ + +
yângâ tî ... azä pëpe
+
+ + +stumpf (sein) +blunt, dull (be) +émoussé (être) + + + +
1540
+
+
+
+ + +
susu
+
+ + + + +Fisch +fish +poisson + + +
tl
+
+
Fisch
+
+
fish
+
+
poisson
+
+ +
1083
+
+
+
+ + +
küä-yângâ
+
+ + + + +Bart, Schnurrbart +beard, mustache +barbe, moustache + + +
tl
+
+
barbe, moustache
+
+
Bart, Schnurrbart
+
+
beard, mustache
+
+ +
0028
+
+
+
+ + +
mêse
+
+ + + + +Messe +mass +messe + + +
ek
+
+
mass
+
+
messe
+
+
Messe
+
+
+
+ + +
ndaû
+
+ + + + +Unfall +accident +accident + +
lb, gfk-d
+
+ +
mle-0143
+
+
+
+ + +
nzönî ngêrë
+
+ + + + + + + + + +billig (sein) +inexpensive (be) +bon marché (être) + +
Ngbangbo ôko ayeke nzönî ngêre tëtî pörö sô.
+ +
500 francs is inexpensive for those shoes.
+
+
+ + +
tl
+
+
(être) bon marché
+
+
billig (sein)
+
+
inexpensive
+
+ +
0824
+
+
+
+ + +
yeke na nzara tî ...
+
+ + + + + + + + +begehren +desire +désirer + +
Lâ asu mîngi. Lo yeke na nzara tî ngû.
+ +
The sun is shining brightly. He desires water.
+
+
+ + +
tl
+
+
begehren
+
+
desire
+
+
désirer
+
+ +
0807
+
+
+
+ + +
yeke na
+
+ + + + + + + + +haben, besitzen +have, possess +avoir, posséder + +
Âla yeke na mosôro mîngi.
+ +
They have great wealth.
+
+
+ + +
tl
+
+
avoir, posséder
+
+
haben, besitzen
+
+
have, possess
+
+ +
0806
+
+
+
+ + +
asa
+
+ + +
??? second entry?
+
+ + + +kratzen +scrape +gratter + + +
ek
+
+
gratter
+
+
kratzen
+
+
scrape
+
+ +
1450
+
+
+ + + +suchen +search +fouiller, étaler + + +
ek
+
+
fouiller, étaler
+
+
search
+
+
suchen
+
+ +
1474
+
+
+
+ + +
ma ndo
+
+ + + + + + + + + + + +hören +to hear +entendre + + + + +gehorchen +obey +obéir + +
+ + +
lâkûê lâkûê
+
+ + + + + + + + +für immer, auf ewig +forever +à jamais + +
Fadë lo dutï na yäyû lâkûê lâkûê.
+ +
He will be in heaven forever.
+
+
+ + +
ek
+
+
forever
+
+
für immer, auf ewig
+
+
+
+ + +
dongô
+
+ + +
dɔ.ngɔ
+ +
1.3
+
+
+ + + +schleimige Soße +gooey sauce +sauce longue, gluante + + +
ek
+
+
schleimige Soße
+
+
+ + + +klebrig, pappig (sein) +sticky (be) +gluant, poisseux (être) + +
Yê sô ayeke dongô töngana terê tî susu. [lb]
+ +
This thing is slippery like the body of a fish.
+
Cette chose est visqueuse comme le corps d'un poisson. [lb]
+
+
+ + +
tl
+
+
(être) gluant, poisseux
+
+
klebrig, pappig (sein)
+
+
sticky
+
+ +
1551
+
+
+
+ + +
kobêla tî tombôka
+
+ + + + + + + + + + + +psychische Erkrankung, Geisteskrankheit +mental illness +maladie mentale + + +
ek
+
+
psychische Erkrankung, Geisteskrankheit
+
+
+
+ + +
gbötöngö kutukutu
+
+ + + + + + + + +Auto fahren +driving +conduite d'un véhicule + + + + +
ek
+
+
Auto fahren
+
+
driving
+
+
+
+ + +
fufû
+
+ + + + +Maniokknödel +ball of prepared manioc +boule de manioc + + +
ek
+
+
Maniokknödel
+
+
+
+ + +
ndefi
+
+ + + + +Schnurrbart +moustache +moustache +
moustache
+
+
moustache
+
+
Schnurrbart
+
+
+
+ + +
yângâ tî ta
+
+ + + + + + + + +Topfdeckel +pot lid +couvercle de la marmite + + + + +
ek
+
+
Topfdeckel
+
+
+
+ + +
zî pörö tî terê tî ...
+
+ + +
zî pörö tî terê tî (nyama)
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +schälen +peel +peler, éplucher + + +
tl
+
+
peel
+
+
peler, éplucher
+
+
schälen
+
+ + +
0595
+
+
+ + + +häuten, Haut abziehen +skin (animal) +écorcher (peau d'animal) + + +
tl
+
+
écorcher (peau d'animal)
+
+
häuten, Haut abziehen
+
+
skin (animal)
+
+ +
0798
+
+
+
+ + +
hûnda ndo
+
+ + + + + + + + + + + +sich erkundigen +ask around +demander en recherchant + + +
ek
+
+
sich erkundigen
+
+
+
+ + +
sâra sï zo ayêda na mbênî yê
+
+ + + + + + + + + + + + +überzeugen +persuade +persuader + + +
tl
+
+
persuade
+
+
persuader
+
+
überzeugen
+
+ +
0474
+
+
+
+ + +
walikundû
+
+ + + + +Zauberer +sorcerer +sorcier + + +
ek
+
+
sorcerer
+
+
sorcier
+
+
Zauberer
+
+
+
+ + +
kpa terê
+
+ + + + + + + + + + + + +gleich ausschauen +resemble each other, look alike +se ressembler + + +
tl
+
+
+
+ + +
tîngo wâ
+
+ + + + + + + + +Feuer entfachen +fan a fire +raviver un feu + + +
ek
+
+
Feuer entfachen
+
+
+ + + +Unruhe stiften +stir up trouble +semer la pagaille + + +
ek
+
+
Unruhe stiften
+
+
+
+ + +
gbugburu
+
+ + + + +sich über etwas streiten +dispute +se disputer quelque chose + + + + +
ek
+
+
dispute
+
+
sich über etwas streiten
+
+
+
+ + +
ndê
+
+ + +heilig +holy (be) +saint (être) + +
Âla ga ndê tî sâra na Nzapâ.
+ +
They became holy to serve God.
+
Ils se sont sanctifiés pour servir Dieu.
+
+
+ + +
ek
+
+
heilig
+
+
holy
+
+
saint
+
+
+ + + +anders +different (be) +différent (être) +
anders
+
+
different
+
+
différent
+
+
+ + + +anders +differently +différemment +
anders
+
+
différemment
+
+
differently
+
+
+
+ + +
wamäbê
+
+ + + + +Gläubiger/e +believer +croyant + + +
ek
+
+
believer
+
+
croyant
+
+
Gläubiger/e
+
+
+
+ + +
ngû tî yâ tî këkë
+
+ + + + + + + + + + + + + + + + +Saft (von Pflanzen) +sap +sève + + +
tl
+
+
Saft (von Pflanzen)
+
+
sap
+
+
sève
+
+ +
1181
+
+
+
+ + +
lëkëngö sakpä
+
+ + + + + + + + + + + + +Korbwaren +wickerwork +vannerie + + +
tl
+
+
Korbwaren
+
+
vannerie
+
+
wickerwork
+
+ +
0695
+
+
+
+ + +
+
+ + + + +dort +there +là-bas + + +
ek
+
+
dort
+
+
là-bas
+
+
there
+
+
+
+ + +
mîngi nî
+
+ + + + + + + + + + + +oft +often +souvent + +
Mbênî lo te gozo. Mbênî lo te lôso. Mîngi nî lo te gozo.
+ +
Sometimes he eats manioc. Sometimes he eats rice. Most often, he eats manioc.
+
+
+ + +
ek
+
+
oft
+
+
often
+
+
souvent
+
+ + +
1361
+
+
+
+ + +
gbägbärä bongö (sô asûru, tî mbô na yê)
+
+ + + + + + + + + + + + + + + + +Lappen +rag +chiffon + + +
tl
+
+
chiffon
+
+
Lappen
+
+
rag
+
+ + +
0733
+
+
+
+ + +
pete ... tî tene ngû nî asïgîgî
+
+ + + + + + + + + + + + + + + + +auswringen +wring out +essorer + + +
tl
+
+
auswringen
+
+
essorer
+
+
wring out
+
+ + +
1487
+
+
+
+ + +
bûburû
+
+ + + + +taubstumm +deaf-mute +sourd-muet + + +
& i-677
+
+ +
ek
+
+
deaf-mute
+
+
sourd-muet
+
+
taubstumm
+
+ + +
0197
+
+
+ + + +taubstumm +deaf-mute (be) +sourd-muet (être) + +
"... lo yeke töngana taba sô ayeke bûburû na dawä tî âzo tî fängö küä tî terê tî lo, lo zî yângâ ôko pëpe." [Isa 53:7 sc]
+
+
+ + + +Idiot, Hornochse, Pappnase +stupid person, idiot +imbécile + + +
ek
+
+
idiot
+
+ + +
0202
+
+
+ + + +Dummheit, Blödheit +stupidity +imbécillité + +
+ + +
ke
+
+ + + + +sich weigern +refuse +refuser + + + + +
tl
+
+
refuse
+
+
refuser
+
+
sich weigern
+
+ +
0837
+
+
+ + + +ablehnen +reject +rejeter + + +
mle-3920
+
+
+ + + +sich enthalten +abstain +s'abstenir + + +
tl
+
+
abstain
+
+
s'abstenir
+
+
sich enthalten
+
+ +
0291
+
+
+ + + +nicht mögen, ablehnen +dislike +ne pas aimer + + +
ek
+
+
dislike
+
+
nicht mögen, ablehnen
+
+
+ + + +hassen +hate +haïr, détester + + +
tl
+
+
haïr, détester
+
+
hassen
+
+
hate
+
+ + +
0285
+
+
+ + + +verlassen +forsake +abandonner, délaisser + +
mle-1975
+
+
+
+ + +
mbângi
+
+ + + + +Marihuana +marijuana +chanvre indien + + +
ek
+
+
Marihuana
+
+
marijuana
+
+
+
+ + +
bängö mawa tî zo
+
+ + + + + + + + + + + + + + + + +Mitleid +pity +pitié, compassion + + +
tl
+
+
Mitleid
+
+
pitié, compassion
+
+
pity
+
+ +
0275
+
+
+
+ + +
dë gapa
+
+ + + + + + + + + + + +diskutieren +talk over +discuter + + +
ek
+
+
discuter
+
+
diskutieren
+
+
+ + + +Werbung machen +advertise +faire la publicité + + +
ek
+
+
advertise
+
+
Werbung machen
+
+
+
+ + +
+
+ + + + +treten +kick +donner un coup de pied + + +
ek
+
+
donner un coup de pied
+
+
kick
+
+
treten
+
+ +
0162
+
+
+
+ + +
ngbangbo
+
+ + +
ngba.ngbo
+ +
1.1
+
+
+ + + +hundert (100) +hundred (100) +cent (100) + + + + +
ek
+
+
cent (100)
+
+
hundert (100)
+
+
hundred (100)
+
+ +
1619
+
+
+
+ + +
ndo sô asûru
+
+ + + + + + + + + + + + +Spalte +crevice +fissure, fente + + +
tl
+
+
crevice
+
+
fissure, fente
+
+
Spalte
+
+ + +
1269
+
+
+
+ + +
pörö tî ndö tî kundâ
+
+ + + + + + + + + + + + + + + + +Panzer (einer Schildkröte) +shell (of turtle) +carapace (de tortue) + + +
tl
+
+
carapace (de tortue)
+
+
Panzer (einer Schildkröte)
+
+
shell (of turtle)
+
+ +
1112
+
+
+
+ + +
gbïngö kâî
+
+ + + + + + + + + + + + +paddeln +paddle +pagayer + + +
tl
+
+
paddeln
+
+
paddle
+
+
pagayer
+
+ +
0853
+
+
+
+ + +
gbû
+
+ + + + +halten +hold +tenir + + + + +
tl
+
+
halten
+
+
hold
+
+
tenir
+
+ +
1426
+
+
+ + + +schnappen, ergreifen, fassen +grab +saisir + + +
ek
+
+
grab
+
+
saisir
+
+
schnappen, ergreifen, fassen
+
+
+ + + +(etwas in der Luft) fangen +catch (object in air) +attraper (un objet dans l'air) + + +
tl
+
+
(etwas in der Luft) fangen
+
+
attraper (un objet dans l'air)
+
+
catch (object in air)
+
+ +
1424
+
+
+ + + +ergreifen, schnappen +snatch, seize +saisir, arracher + + +
tl
+
+
ergreifen, schnappen
+
+
saisir, arracher
+
+
snatch, seize
+
+ +
1423
+
+
+
+ + +
tarä
+
+ + + + +Großmutter +grandmother +grand-mère + + +
ek
+
+
grandparent
+
+
Großvater/mutter
+
+
+ + + +Enkel (in) +grandchild +petit-fils, petite-fille + + +
0357
+
+
+ + + +Nachkommen +female descendant +descendante + + +
ek
+
+
descendant (female)
+
+
descendante
+
+
Nachkommen
+
+ +
0354
+
+
+
+ + +
fa lêgë tî nzönî
+
+ + + + + + + + + + + +gut ausbilden/erziehen +train well +bien instruire + +
gut erziehen
+
train someone well
+
bien instruire
+
+ + + + +
ek
+
+
gut ausbilden/erziehen
+
+
+
+ + +
da tî môlengê
+
+ + + + + + + + + + + + +Gebärmutter +womb +utérus + + +
tl
+
+
Gebärmutter
+
+
utérus
+
+
womb
+
+ +
0041
+
+
+
+ + +
okü
+
+ + +
o.ku
+ +
1.2
+
+
+ + + +fünf (5) +five (5) +cinq (5) + + +
tl
+
+
cinq (5)
+
+
five (5)
+
+
fünf (5)
+
+ +
1594
+
+
+
+ + +
këkë tî kî
+
+ + + + + + + + + + + + +Dornbusch +thorn-tree +arbre épineux + + +
tl
+
+
arbre épineux
+
+
Dornbusch
+
+
thorn-tree
+
+ +
1166
+
+
+
+ + +
doli
+
+ + +
do.li
+ +
2.2
+
+
+ + + +Elefant +elephant +éléphant + + +
Loxodonta africana
+
+ +
tl
+
+
Elefant
+
+
elephant
+
+
éléphant
+
+ +
0995
+
+
+
+ + +
sâra nzara tî
+
+ + + + + + + + + + + + +wollen, wünschen +want, desire +vouloir, désirer + + +
tl
+
+
vouloir, désirer
+
+
want, desire
+
+
wollen, wünschen
+
+ +
0287
+
+
+
+ + +
dö terê
+
+ + + + + + + + +sich beeilen +hurry +se précipiter + + +
ek
+
+
hurry
+
+
sich beeilen
+
+
+
+ + +
hôle
+
+ + + + + +
o.lɛ / u.lɛ
+ +
3.1
+
+
+ + + +trocken (sein) +dry (be) +sec (être) + +
Li tî ngû nî ahôle.
+ +
The spring is dry.
+
+
+ + +
tl
+
+
(être) sec
+
+
dry
+
+
trocken (sein)
+
+ +
1548
+
+
+
+ + +
kötä kadâ
+
+ + + + + + + + + + + + +Agama Eidechse (rotköpfig) +agama lizard (red-headed) +margouillat + + +
tl
+
+
Agama Eidechse (rotköpfig)
+
+
agama lizard (red-headed)
+
+
margouillat
+
+ +
1101
+
+
+
+ + +
pîka mê
+
+ + + + + + + + + + + + +schlagen +slap +gifler + + +
tl
+
+
gifler
+
+
schlagen
+
+
slap
+
+ + +
0168
+
+
+
+ + +
biyetëre
+
+ + +ticket agent +billetaire + +
+ + +
balëôko na ûse
+
+ + + + + + + + + + + + +zwölf (12) +twelve (12) +douze (12) + + +
tl
+
+
douze (12)
+
+
twelve (12)
+
+
zwölf (12)
+
+ +
1601
+
+
+
+ + +
ke terê
+
+ + + + + + + + + + + + +scheiden +divorce, send back, send away +divorcer, renvoyer (une femme) + + +
& i-868
+
+ +
tl
+
+
divorce
+
+
divorcer
+
+
scheiden
+
+ + +
0948
+
+
+
+ + +
mâtâmâtâ
+
+ + + + +vollgestopft +stuffed full (be) +bien rempli (être) + + +
ek
+
+
vollgestopft
+
+
+
+ + +
lôro
+
+ + + + + +
lɔ.ɾɔ
+ +
3.1
+
+
+ + + +Gold +gold +or + + +
ek
+
+
gold
+
+
Gold
+
+
or
+
+ +
1280
+
+
+
+ + +
ngbongbôlo
+
+ + + + + +
ngbo.ngbo.lo
+ +
1.3.1
+
+
+ + + +riesig ganz, das Ganze +large, the whole thing +gigantesque, tout entier + +
ek
+
+
riesig ganz, das Ganze
+
+
+ + + +Größe, Vollständigkeit, Ganze +size, comprehensiveness, whole +grosseur, globalité, entièreté, +
Größe, Vollständigkeit, Ganze
+
+
+ + +
+ + +
+
+ + + + +Dorn +thorn +épine + + +
tl
+
+
Dorn
+
+
épine
+
+
thorn
+
+ +
1193
+
+
+
+ + +
sô kpë
+
+ + + + + + + + + + + + + + + +losrennen, schnell weggehen +start to run, leave quickly +mettre (se) à courir, partir à la hâte + + +
ek
+
+
losrennen, schnell weggehen
+
+
+
+ + +
ngbëngbë
+
+ + + + + + + +Reuse +fish trap +nasse + + +
tl
+
+
fish trap
+
+
nasse
+
+
Reuse
+
+ +
0801
+
+
+
+ + +
tîa
+
+ + + + +nicht ausreichen, nicht genug (sein) +lack, be lacking, be short of, be insufficient, be needed +manquer de, manquer, être insuffisant + + +
& i-611
+
+ +
tl
+
+
be lacking, be insufficient, be needed
+
+
manquer, être insuffisant
+
+
nicht ausreichen, nicht genug (sein)
+
+ +
1636
+
+
+
+ + +
mû nëngö na ...
+
+ + + + + + + + + + + + +respektieren +respect +respecter + + +
tl
+
+
respect
+
+
respecter
+
+
respektieren
+
+ +
0282
+
+
+
+ + +
ôko ôko
+
+ + + + + + + + +jeder, jede, jedes +each +chacun + +
Alingbi zo ôko ôko amû nzenze tî lo.
+ +
Each person must bring his machette.
+
Chaque personne doit apporter sa machette.
+
+
+ +
ek
+
+
chacun
+
+
each
+
+
jeder, jede, jedes
+
+
+ + + +einzeln +one by one +un(e) à/par un(e) + +
Bi âlê kôbe ôko ôko na yâ tî âdû nî ôko ôko.
+ +
Drop the seeds one by one into each hole.
+
Déposez les graines une par une dans chaque trou.
+
+
+ + +
ek
+
+
einzeln
+
+
+
+ + +
bâa mawa tî ...
+
+ + + + + + + + +mit jemand Mitleid haben +have compassion for someone +avoir pitié de quelqu'un + + +
ek
+
+
mit jemand Mitleid haben
+
+
+
+ + +
këkëmbëtï
+
+ + + + + + + + + + + + +Bleistift, Kugelschreiber +pencil, pen +crayon, bic + + +
ek
+
+
Bleistift, Kugelschreiber
+
+
+
+ + +
pörö
+
+ + +
pɔ.ɾɔ
+ +
2.2
+
+
+ + + +Haut +skin +peau + + + + +
ek
+
+
Haut
+
+
peau
+
+
skin
+
+
+ + + +Pelz, Fell +pelt +peau + + +
ek
+
+
peau
+
+
pelt
+
+
Pelz, Fell
+
+ +
1026
+
+
+ + + +Rinde +bark +écorce + + +
tl
+
+
bark
+
+
écorce
+
+
Rinde
+
+ +
1180
+
+
+
+ + +
ngû-Nzapä
+
+ + + + +Regen +rain +pluie + + + + +
tl
+
+
pluie
+
+
rain
+
+
Regen
+
+ +
1335
+
+
+
+ + +
yërë
+
+ + + + +Armut +poverty +pauvreté + + +
ek
+
+
Armut
+
+
pauvreté
+
+
poverty
+
+
+
+ + +
gbû terê
+
+ + + + + + + + + + + +festziehen +tighten (tr) +serrer + + +
tl
+
+
festziehen
+
+
serrer
+
+
tighten (tr)
+
+ +
0658
+
+
+ +eng (sein) +tight (be) +serré (être) + + +
tl
+
+
(être) serré
+
+
eng (sein)
+
+
tight
+
+ +
0659
+
+
+
+ + +
kâmba sô yâ nî a kânga
+
+ + + + + + + + + + + + + + + + +Knoten +knot +nœud + + +
tl
+
+
knot
+
+
Knoten
+
+
nœud
+
+ + +
0654
+
+
+
+ + +
aretêe
+
+ + + + +anhalten, aufhören +stop +arrêter + + +
ek
+
+
anhalten, aufhören
+
+
arrêter
+
+
stop
+
+ +
1505
+
+
+
+ + +
bâa gîgî
+
+ + + + + + + + +erscheinen +make its appearance +voir le jour + + +
ek
+
+
erscheinen
+
+
+
+ + +
simän
+
+ + + + +Zement +cement +ciment + + +
ek
+
+
cement
+
+
ciment
+
+
Zement
+
+
+ + + +Gips +cast +plâtre + + +
ek
+
+
cast
+
+
Gips
+
+
plâtre
+
+
+
+ + +
bâan
+
+ + + + +Bank +bench +banc + + +
ek
+
+
banc
+
+
Bank
+
+
bench
+
+
+
+ + +
veke
+
+ + + + +Schwiegereltem, Verwandter (durch Ehe) +in-laws +beaux-parents + + +
ek
+
+
beaux-parents
+
+
in-laws
+
+
Schwiegereltem, Verwandter (durch Ehe)
+
+
+
+ + +
wamändängö-kua
+
+ + + + + + + + +Lehrling +apprentice +stagiaire, apprenti + + + + + + +
ek
+
+
apprentice
+
+
Lehrling
+
+
+
+ + +
sandûku tî vôte
+
+ + + + + + + + + + + +Wahlurne +ballot box +urne de vote + + +
ek
+
+
Wahlurne
+
+
+
+ + +
pêrë tî kânga na li tî da
+
+ + + + + + + + + + + + + + + + + + + + +Stroh (für ein Dach) +thatch +chaume + + +
tl
+
+
chaume
+
+
Stroh (für ein Dach)
+
+
thatch
+
+ + +
0688
+
+
+
+ + +
lamerï
+
+ + + + +Rathaus, Stadthalle +city hall +mairie + + +
ek
+
+
mairie
+
+
Rathaus, Stadthalle
+
+
+
+ + +
kîri na nî ndurü
+
+ + + + + + + + + + + + +kürzen +shorten +raccourcir + + +
tl
+
+
kürzen
+
+
raccourcir
+
+
shorten
+
+ +
1516
+
+
+
+ + +
kisoro
+
+ + +
ki.sɔ.ɾɔ
+ +
1.1.1
+
+
+ + + +Spiel mit Kieselsteinen +pebble game +jeu avec cailloux + + +
ek
+
+
Spiel mit Kieselsteinen
+
+
+
+ + +
panzê
+
+ + + + +denken +think +penser + + +
ek
+
+
denken
+
+
penser
+
+
think
+
+ +
0252
+
+
+
+ + +
baramïi
+
+ + + + +Brechstange, Stemmeisen +tank bar used for digging +barre à mine + + +
ek
+
+
Brechstange, Stemmeisen
+
+
+
+ + +
balëôko na otâ
+
+ + + + + + + + + + + + +dreizehn (13) +thirteen (13) +treize (13) + + +
tl
+
+
dreizehn (13)
+
+
thirteen (13)
+
+
treize (13)
+
+ +
1602
+
+
+
+ + +
sêngê sêngê
+
+ + +
sêngê (sêngê)
+ +
+ + + + + + + +umsonst +for nothing, uselessly +inutilement, peine perdue + + +
ek
+
+
umsonst
+
+
+ + + +kostenlos, gratis +free of charge (be) +gratuit (être) + +
Kôbe nî ayeke sêngê sêngê.
+ +
The food was free of charge.
+
La nourriture était gratuite.
+
+
+ + +
ek
+
+ +
mle-1993
+
+
+
+ + +
ngoangoa
+
+ + +
???
+
+ + + +Saatgut, Samen +seed +graine (pour semer) + + +
tl
+
+
graine (pour semer)
+
+
Samen
+
+
seed
+
+ +
1202
+
+
+
+ + +
ndâmbo kôlï
+
+ + + + + + + + +Taugenichts +good-for-nothing +vaurien + + +
ek
+
+
good-for-nothing
+
+
Taugenichts
+
+
vaurien
+
+
+
+ + +
kötä wâ tî lëkëngö ta
+
+ + + + + +
check ""yâ tî wâ tî lëkëngö ta
+
+
+ + + + +
check ""yâ tî wâ tî lëkëngö ta
+
+
+ + + + +
check ""yâ tî wâ tî lëkëngö ta
+
+
+ + + + +
check ""yâ tî wâ tî lëkëngö ta
+
+
+ + + +Töpferbrennofen +potter's kiln +four de potier + + +
tl
+
+
four de potier
+
+
potter's kiln
+
+
Töpferbrennofen
+
+ + +
0711
+
+
+
+ + +
sua
+
+ + + + +fließen +flow +couler + + +
tl
+
+
couler
+
+
fließen
+
+
flow
+
+ +
1480
+
+
+ + + +schwimmen, schweben +float +flotter + + +
tl
+
+
float
+
+
flotter
+
+
schwimmen, schweben
+
+ +
1489
+
+
+
+ + +
ïrï tî Nzapä
+
+ + + + + + + + +Vorname +first name +prénom + + +
ek
+
+
prénom
+
+
Vorname
+
+ +
i-815
+
+
+
+ + +
kôlï sô ayê tî mû wâlï
+
+ + + + + + + + + + + + + + + + + + + + +Verlobter +fiancé (betrothed boyfriend) +fiancé + + +
tl
+
+
fiancé
+
+
fiancé (betrothed boyfriend)
+
+
Verlobter
+
+ +
0374
+
+
+ +verlobt (sein) +engaged, betrothed (be) +fiancé (être) + + +
tl
+
+
(être) fiancé
+
+
engaged, betrothed
+
+
verlobt (sein)
+
+ +
0941
+
+
+
+ + +
kötarä
+
+ + +
ko.ta.ɾa
+ +
2.1.2
+
+
+ + + +Vorfahre +ancestor +ancêtre + + + + +
tl
+
+
ancestor
+
+
ancêtre
+
+
Vorfahre
+
+ +
0342
+
+
+ + + +Großvater väterlicherseits +paternal grandfather +grand-père paternel + + +
ek
+
+
grandfather (paternal)
+
+
grand-père paternel
+
+
Großvater väterlicherseits
+
+ + +
0343
+
+
+ + + +paternal grandfather's male paternal relatives of his generation +relations paternelles de la génération du grand-père paternel + +
+ + +
kôlï-müä
+
+ + + + +Witwer +widower +veuf + + +
tl
+
+
veuf
+
+
widower
+
+
Witwer
+
+ +
0372
+
+
+
+ + +
maka
+
+ + + + +Grenze +boundary line, limit +délimitation, limite + + +
ek
+
+
délimitation
+
+
Grenze
+
+ +
i-578
+
+
+
+ + +
dukâni
+
+ + + + +Weihrauch +incense +encens + + +
ek
+
+
encens
+
+
incense
+
+
Weihrauch
+
+
+
+ + +
koro na ndüzü äpe
+
+ + + + + + + + +schweigen, nicht verraten +say nothing out loud, not let on +ne rien dire à haute voix + +
ek
+
+
schweigen, nicht verraten
+
+
+
+ + +
tö mbëlä
+
+ + + + + + + + + + + +Verordnung verkünden, etwas ansagen, bekanntmachen +proclaim a decree, make an announcement +proclamer un décret, faire une annonce + + +
ek
+
+
Verordnung verkünden, etwas ansagen, bekanntmachen
+
+
+
+ + +
sâra pupu na terê tî ...
+
+ + + + + + + + + + + + + + + + +be lüften, blasen +fan +éventer + + +
tl
+
+
be lüften, blasen
+
+
éventer
+
+
fan
+
+ + +
1479
+
+
+
+ + +
balëokü
+
+ + +
ba.le.o.ku
+ +
1.2.1.2
+
+
+ + + +fünfzig (50) +fifty (50) +cinquante (50) + + +
tl
+
+
cinquante (50)
+
+
fifty (50)
+
+
fünfzig (50)
+
+ +
1614
+
+
+
+ + +
hônde terê
+
+ + + + + + + + +sich verstecken +hide oneself +se cacher + + +
ek
+
+
sich verstecken
+
+
+
+ + +
velöo
+
+ + + + +Fahrrad +bicycle +vélo + + +
ek
+
+
bicycle
+
+
Fahrrad
+
+
vélo
+
+
+
+ + +
ngbâ tî
+
+ + +
angbâ tî (+verbe)
+ +
+ + + + + + + +während der Handlung +still happening +en train de se passer + +
Ange! Wa angba ti za.
+ + +
+ + +
ek
+
+
während der Handlung
+
+
+ + + +weiter (machen) +continue to +continuer de + + +
ek
+
+
weiter (machen)
+
+
+
+ + +
sënë tî Guinée
+
+ + + + +Guinea-Wurm +Guinea worm +vers de Guinée + + +
i-1063
+
+
+
+ + +
zîa
+
+ + + + +hinlegen +put, place +mettre, placer + + + +
zîa bê tî mo na sêse.
+ +
beruhige dich
+
calm down, don't worry
+
calme-toi, ne te trouble pas
+
+
+ + +
tl
+
+
hinlegen
+
+
mettre, placer
+
+
put, place
+
+ +
1469
+
+
+ + + +erlauben +allow +permettre + + +
ek
+
+
allow
+
+
erlauben
+
+
permettre
+
+ + +
0292
+
+
+ + + +lassen, verlassen +leave +laisser, quitter + + +
ek
+
+
laisser, quitter
+
+
lassen, verlassen
+
+
leave
+
+ +
1404
+
+
+ + + +(etwas irgendwo) lassen +leave (something somewhere) +laisser (quelque chose quelque part) + + +
tl
+
+
(etwas irgendwo) lassen
+
+
laisser (quelque chose quelque part)
+
+
leave (something somewhere)
+
+ +
1470
+
+
+ + + +aufgeben, verlassen +abandon +abandonner + + +
tl
+
+
abandon
+
+
abandonner
+
+
aufgeben, verlassen
+
+ +
0420
+
+
+
+ + +
folondingi
+
+ + +
???
+
+ + + +Februar +February +février + + +
ek
+
+
Februar
+
+
February
+
+
février
+
+
+
+ + +
fâ yâ nî na sîi
+
+ + + + + + + + + + + + +sägen +saw (wood) +scier + + +
tl
+
+
sägen
+
+
saw (wood)
+
+
scier
+
+ +
0719
+
+
+
+ + +
tâgba
+
+ + + + +Antilope +antelope +antilope (sp) + +
Antilope
+
kind of antelope
+
espèce d'antilope
+
+ + +
ek
+
+
antelope
+
+
Antilope
+
+
+ + + +Kob +kob +kob + +
+ + +
Yingö-Vulü
+
+ + + + + + + + + + + +Heiliger Geist +Holy Spirit +Saint Esprit + + +
ek
+
+
Heiliger Geist
+
+
+
+ + +
wüngö terê
+
+ + + + +ruhepause +rest +calme (repos) + + +
i-130
+
+
+
+ + +
mamïön
+
+ + +
??? old Sango Bible
+
+ +
ma.mi.ɔ̰
+ +
1.2.2
+
+
+ + + +Tau +dew +rosée + + +
ek
+
+
dew
+
+
rosée
+
+
Tau
+
+ +
1338
+
+
+
+ + +
sâra ngîâ
+
+ + +
sâra ngîâ
+ +
+ + + + + + + + + + + +spielen +play +jouer + + +
ek
+
+
jouer
+
+
play
+
+
spielen
+
+ +
0900
+
+
+ + + +sich amüsieren +have fun +s'amuser + + +
ek
+
+
s'amuser
+
+
sich amüsieren
+
+
+ + + +scherzen +joke +plaisanter + +
i-778*
+
+
+
+ + +
kokora
+
+ + +
kɔ.kɔ.ɾa / ko.ko.ɾa / kwa.kwa.ɾa
+ +
1.1.1
+
+
+ + + +Bogen +bow (hunting) +arc (de chasse) + + +
tl
+
+
arc (de chasse)
+
+
Bogen
+
+
bow (hunting)
+
+ +
0780
+
+
+
+ + +
sênkëre
+
+ + + + +Eisvogel +kingfisher +martin pêcheur + + +
Alcedo spp.
+
+ +
tl
+
+
Eisvogel
+
+
kingfisher
+
+
martin pêcheur
+
+ +
1049
+
+
+
+ + +
sëwä
+
+ + + + +Familie +family +famille + + +
tl
+
+
Familie
+
+
famille
+
+
family
+
+ +
0379
+
+
+ + + +Verwandte +relatives +parents + + +
tl
+
+
parents
+
+
relatives
+
+
Verwandte
+
+ +
0341
+
+
+ + + +Eltern +parents +parents + + +
ek
+
+
Eltern
+
+
parents
+
+
parents
+
+
+
+ + +
zo sô asâra tambûla
+
+ + + + + + + + + + + + + + + + +Reisender +traveler +voyageur + + +
tl
+
+
Reisender
+
+
traveler
+
+
voyageur
+
+ +
0844
+
+
+
+ + +
öberzîne
+
+ + + + +
o.bɛɾ.zi.nɛ
+ +
2.1.3.1
+
+
+ + + +Aubergine +eggplant +aubergine + + +
Solanum melongena
+
+ +
tl
+
+
aubergine
+
+
Aubergine
+
+
eggplant
+
+ + +
1225
+
+
+
+ + +
sïönî yorö
+
+ + + + + + + + + + + + + Gift +poison +poison + + +
tl
+
+
Gift
+
+
poison
+
+
poison
+
+ +
0922
+
+
+
+ + +
kpêngba
+
+ + + + + + + +reifen +ripen, become ripe +mûrir + + +
tl
+
+
mûrir
+
+
reifen
+
+
ripen, become ripe
+
+ +
1248
+
+
+
+ + +
zïängö bê tî ... tî kü
+
+ + + + +Hoffnung +hope +espoir + +
i-368
+
+
+
+ + +
vaka
+
+ + + + +Stadtviertel +neighborhood, sector of town +quartier + + +
ek
+
+
quartier
+
+
Stadtviertel
+
+
+
+ + +
mä ndo pëpe
+
+ + +
Originally: zo sô amä ndo pëpe
+
+ + + + + + + + + +hartnäckig (sein) +stubborn (be) +têtu (être) + +
Li tî lo akpîngba! Lo mä ndo pëpe.
+ +
He is hard-headed. He's stubborn.
+
+
+ + +
tl
+
+
(être) têtu
+
+
hartnäckig (sein)
+
+
stubborn
+
+ +
0317
+
+
+
+ + +
hôle
+
+ + +
o.lɛ / u.lɛ
+ +
3.1
+
+
+ + + +trocknen +dry, dry up +sécher + + +
ek
+
+
sécher
+
+
trocknen
+
+
+
+ + +
wâlï-gaduru
+
+ + + + + + + + + + + + +Sau +sow (female pig) +truie + + +
tl
+
+
Sau
+
+
sow (female pig)
+
+
truie
+
+ +
0989
+
+
+
+ + +
a yeke (na lî) tî ...
+
+ + + + + + + + +Es ist nötig/ notwendig +it is necessary to ... +il faut ... + + +
tl
+
+
+
+ + +
lê tî këkë
+
+ + + + + + + + + + + + +Frucht +fruit +fruit + + +
tl
+
+
Frucht
+
+
fruit
+
+
fruit
+
+ +
1207
+
+
+
+ + +
+
+ + + + +scheinen, glänzen +shine +briller + + + + +
tl
+
+
briller
+
+
scheinen, glänzen
+
+
shine
+
+ +
1492
+
+
+ + + +scharf (sein) +sharp (be) +tranchant (être) +
scharf (sein)
+
+ +
monino-185
+
+
+
+ + +
kârângbâ
+
+ + + + +Afrikanisches Xylophon +African xylophone +balafon + + +
ek
+
+
Afrikanisches Xylophon
+
+
balafon
+
+ +
0891
+
+
+
+ + +
lï mîngi pëpe
+
+ + + + +flach, seicht, oberflächlich (sein) +shallow (be) +peu profond (être) + +
1524
+
+
+
+ + +
tî sô
+
+ + + + + + + + + + + +dieses Mal +this time +cette fois + +
Tî sô, ë yeke gbîan lêgë tî särängö yê tî ë.
+ +
Dieses Mal werden wir unsere Vorgehensweise ändern.
+
This time, we will change our way of doing it.
+
Cette fois, nous allons changer notre façon de faire.
+
+
+
+
+ + +
bâa ndö na ndö tî ...
+
+ + + + + + + + +überwachen, beaufsichtigen +oversee, watch over +surveiller, garder + + +
ek
+
+
überwachen, beaufsichtigen
+
+
+
+ + +
fâ yâ nî kêtê kêtê
+
+ + + + + + + + + + + + +in Stücke schneiden +chop into pieces +découper, couper en morceaux + + +
tl
+
+
chop into pieces
+
+
découper, couper en morceaux
+
+
in Stücke schneiden
+
+ +
0717
+
+
+
+ + +
päräkôndo
+
+ + +
pa.ɾa.kɔ.ndɔ
+ +
2.2.3.1
+
+
+ + + +Ei (von einem Huhn) +egg (from a chicken) +œuf (de la poule) + + +
ek
+
+
Ei (von einem Huhn)
+
+
+
+ + +
mobimba
+
+ + +
from Lingala mobimba
+
+ +
mo.bi.mba
+ +
1.1.1
+
+
+ + + +ganz, total +whole, total +entier, total + +
Lo te kôndo nî mobimba.
+ +
He ate the whole chicken.
+
+
+ + +
ek
+
+
entier, total
+
+
ganz, total
+
+
whole, total
+
+ +
1642
+
+
+
+ + +
fono tî gi tî hînga
+
+ + + + +erforschen +explore +explorer + +
mle-1729
+
+
+
+ + +
kêtê wâlï-bâgara
+
+ + + + + + + + + + + + +Färse +heifer +génisse + + +
tl
+
+
Färse
+
+
génisse
+
+
heifer
+
+ +
0961
+
+
+
+ + +
gi susu
+
+ + + + + + + + + + + + +fischen +fish +pêcher, faire la pêche + + +
tl
+
+
fischen
+
+
fish
+
+
pêcher, faire la pêche
+
+ +
0799
+
+
+
+ + +
süngbängö tî pêrë töngana agbi wâ
+
+ + + + +Knall +pop (fire) +bruit (sec) d'un feu + +
mle-3621
+
+
+
+ + +
zîa na lâ ahôle
+
+ + + + + + + + + + + + + + + + +trocknen (Kleider) +dry out (clothes) +sécher + + +
tl
+
+
dry out (clothes)
+
+
sécher
+
+
trocknen (Kleider)
+
+ +
1488
+
+
+
+ + +
kötä ngû
+
+ + + + + + + + +See +lake +lac + + + + +
ek
+
+
lac
+
+
lake
+
+
See
+
+ + +
1286
+
+
+ + + +Fluss +river +fleuve + + +
ek
+
+
fleuve
+
+
Fluss
+
+
river
+
+ + +
1293
+
+
+
+ + +
mataläa
+
+ + + + +Matratze +mattress +matelas + + +
ek
+
+
matelas
+
+
Matratze
+
+
mattress
+
+
+
+ + +
kânga
+
+ + + + +Gefängnis +prison +prison + + +
ek
+
+
Gefängnis
+
+
prison
+
+
prison
+
+
+
+ + +
+
+ + + + +fallen +fall +tomber + + + + +
tl
+
+
fall
+
+
fallen
+
+
tomber
+
+ +
1411
+
+
+ + + +landen, sich niederlassen +land, alight +atterrir, se poser + + +
tl
+
+
atterrir, se poser
+
+
land, alight
+
+
landen, sich niederlassen
+
+ +
1074
+
+
+ + + +schlagen +punch +envoyer un coup de poing + + +
ekek
+
+
punch
+
+
schlagen
+
+
+
+ + +
kpëngö tî li tî ...
+
+ + + + +Zerstreutheit +absent-mindedness, forgetfulness +étourderie + +
i-380
+
+
+
+ + +
sâra hîo tî ...
+
+ + + + + + + + + + + + +sich beeilen +hasten, hurry +se dépêcher + + +
tl
+
+
hasten, hurry
+
+
se dépêcher
+
+
sich beeilen
+
+ +
1421
+
+
+
+ + +
pîka bîâ
+
+ + + + + + + + + + + +ein Lied dirigieren, den Rhythmus +lead a song, keep rhythm +diriger un chant, battre la cadence + + +
ek
+
+
ein Lied dirigieren, den Rhythmus
+
+
+ + + +ein Musikinstrument spielen +play a musical instrument +jouer un instrument musical + + +
ek
+
+
ein Musikinstrument spielen
+
+
+
+ + +
mafüta tî kârâkö
+
+ + + + + + + + +Erdnuß-Öl +peanut oil +huile d'arachide + + + + +
ek
+
+
Erdnuß-Öl
+
+
+
+ + +
sandâka
+
+ + + + + + + +Opfer +sacrifice, offering +sacrifice, offrande + + +
ek
+
+
Opfer
+
+
sacrifice, offering
+
+
sacrifice, offrande
+
+ +
0929
+
+
+ + + +rituelles Mahl +ritual meal +repas rituel + + +
ek
+
+
rituelles Mahl
+
+
+
+ + +
ngbâ na pekô
+
+ + + + + + +altmodisch +old fashioned +démodé + + + + +
ek
+
+
altmodisch
+
+
démodé
+
+
+
+ + +
bêbï
+
+ + + + +Mitternacht +midnight +minuit + + +
ek
+
+
midnight
+
+
minuit
+
+
Mitternacht
+
+
+
+ + +
mbamba
+
+ + + + +Auster +oyster +huître + + +
ek
+
+
Auster
+
+
huitre
+
+
oyster
+
+
+ + + +Schnecke +snail +escargot + + +
ek
+
+
escargot
+
+
Schnecke
+
+
snail
+
+ +
1094
+
+
+ + + +Muschel +shell +coquille + + +
ek
+
+
coquille
+
+
Muschel
+
+
shell
+
+
+ + + +Krabbe, Krebs +crab +crabe + + +
tl
+
+
crab
+
+
crabe
+
+
Krabbe, Krebs
+
+ +
1091
+
+
+ + + +Muschel +clam +palourde, clam + + +
tl
+
+
clam
+
+
Muschel
+
+
palourde, clam
+
+ +
1093
+
+
+
+ + +
zä wâ
+
+ + + + + + + + + +hart, streng, hitzig (sein) +harsh, stern, fiery (be) +sévère, fougueux (être) + + +
ek
+
+
hart, streng, hitzig (sein)
+
+
+
+ + +
halë
+
+ + + + +Vorfahren +ancestors +ancêtres + + +
ek
+
+
ancestors
+
+
ancêtres
+
+
Vorfahren
+
+
+ + + +Nachkommen +descendants +descendants + + +
ek
+
+
descendants
+
+
descendants
+
+
Nachkommen
+
+
+ + + +spezies +species +espèce + +
i-367
+
+
+ + + +Generation +generation +génération + +
i-464
+
+
+
+ + +
goigôî
+
+ + +
gɔi.gɔi
+ +
33.11
+
+
+ + + +Faulheit +laziness +paresse + + +
ek
+
+
Faulheit
+
+
laziness
+
+
paresse
+
+
+
+ + +
ndurü gerê tî këkë
+
+ + +
Formerly: tanga tî ndurü gerê tî këkë sò a dë li nî
+
+ + + + + + + + + + + + + + + +Stumpf +stump +souche + + +
tl, modified by sl
+
+
souche
+
+
stump
+
+
Stumpf
+
+ +
1182
+
+
+
+ + +
papâye
+
+ + + + +Papaya, Melonenbaum +papaya tree +papayer + + +
Carica papaya
+
+ +
tl
+
+
Papaya, Melonenbaum
+
+
papayer
+
+
+
+ + +
mbôrô
+
+ + +
mbo.ɾo
+ +
3.3
+
+
+ +enttäuscht +disappointed +déçu + + +
ek
+
+
déçu
+
+
disappointed
+
+
enttäuscht
+
+
+
+ + +
na pekô
+
+ + + + + + + + +nach, nachher +after, afterwards +après + +
Ngbonga ahön, fadë âla sï na pekô.
+ +
The time is past, they will come afterwards.
+
+
+ + +
ek
+
+
after, afterwards
+
+
après
+
+
nach, nachher
+
+ + +
1355
+
+
+ + + +zu spät +too late +trop tard + +
Âla sï na pekô. Ndo angbâ tëtî âla pëpe.
+ +
They came too late. There is no room for them.
+
+
+ + +
ek
+
+
zu spät
+
+
+ + + +zurück, rückwärts +backward (direction) +en arrière + +
Ölëngö ndo sô akîri kusâra tî yäkä na pekô mîngi.
+ +
This drought has pushed garden work backward.
+
+
+ + +
tl
+
+
backward (direction)
+
+
en arrière
+
+
zurück, rückwärts
+
+ +
1665
+
+
+
+ + +
kîo
+
+ + +
ki.ɔ / ki.ɔɔ
+ +
3.1 / 3.31
+
+
+ + + +rasieren +shave +raser + + +
ek
+
+
raser
+
+
rasieren
+
+
shave
+
+
+
+ + +
zïängö bê tî ... tî kü gbä
+
+ + +Hoffnungslosigkeit +hopelessness +désespoir + +
mle-2381
+
+
+
+ + +
ndûmbâ
+
+ + +
Least pejorative, most appropriate
+
+ + + +Prostitution +prostitution +prostitution + + +
ek
+
+
prostitution
+
+
prostitution
+
+
Prostitution
+
+
+ + + +Hure, Prostituierte +prostitute +prostituée + + +
tl
+
+
Hure, Prostituierte
+
+
prostituée
+
+
prostitute
+
+ +
0407
+
+
+
+ + +
ganga
+
+ + + + +Fetisch, Amulett +amulet, charm, fetish +fétiche, amulette + + +
tl
+
+
Fetisch, Amulett
+
+
+
+ + +
lembë
+
+ + + + +Botschafter +ambassador +ambassadeur + + +
ek
+
+
ambassadeur
+
+
ambassador
+
+
Botschafter
+
+
+
+ + +
gue na ... na ködrö wandê
+
+ + + + +exil +exile +exiler + +
mle-1708
+
+
+
+ + +
särängö lisorö tî kubû na ngangü
+
+ + + + + + + + + + + + + + + + + + + + +Vergewaltigung +rape +viol + + +
tl
+
+
rape
+
+
Vergewaltigung
+
+
viol
+
+ +
0518
+
+
+
+ + +
dëköngö
+
+ + +
dɛ.kɔ.ngɔ
+ +
2.2.2
+
+
+ + + +Schrei +yell, shout, scream +cri + + +
ek
+
+
cri
+
+
Schrei
+
+
yell
+
+ +
i-255
+
+
+ + + +(auf-)schreien +shout, cry out +hurler, parler fort, crier + + +
tl
+
+
(auf-)schreien
+
+
hurler, parler fort, crier
+
+
shout, cry out
+
+ +
0437
+
+
+ + + +krähen +crowing +crier + + +
ek
+
+
crier
+
+
crowing
+
+
krähen
+
+
+ + + +bellen (wie Hund) +bark (as dog) +aboyer (comme un chien) + + +
tl
+
+
aboyer (comme un chien)
+
+
bark (as dog)
+
+
bellen (wie Hund)
+
+ +
1037
+
+
+ + + +quietschen +squeak (wheel) +grincer, crier + + +
tl
+
+
grincer, crier
+
+
quietschen
+
+
squeak (wheel)
+
+ +
1329
+
+
+
+ + +
sï ahön ndö nî
+
+ + + + +überlaufen von seinen Ufern +overflow +déborder + +
+ + +
ôtoro
+
+ + +
ɔ.tɔ.ɾɔ
+ +
3.1.1
+
+
+ + + +Biene +bee +abeille + + +
tl
+
+
abeille
+
+
bee
+
+
Biene
+
+ +
1143
+
+
+ + + +Honig +honey +miel + + +
ek
+
+
honey
+
+
Honig
+
+
miel
+
+ +
1156
+
+
+
+ + +
na lê tî
+
+ + + + + + + + +vor +in front of +en face de, devant + +
Lo ke yanga na lê ti patron tî lo.
+ + +
+ + +
ek
+
+
en face de, devant
+
+
in front of
+
+
vor
+
+ +
1670
+
+
+
+ + +
sungba
+
+ + + + +explodieren +explode, burst +éclater, exploser + + +
tl
+
+
éclater, exploser
+
+
explode, burst
+
+
explodieren
+
+ +
1416
+
+
+
+ + +
gürü
+
+ + + + +Rauch +smoke +fumée + + +
ek
+
+
fumée
+
+
Rauch
+
+
smoke
+
+ +
1308
+
+
+ + + +Dampf +steam +vapeur + + +
ek
+
+
Dampf
+
+
steam
+
+
vapeur
+
+
+
+ + +
ngû tî dädä
+
+ + + + + + + + + + + + +Wasserkraftwerk +hydroelectric plant +centrale hydroélectrique + + + +
+ + +
wara
+
+ + + + +erhalten +get +obtenir + + +
tl
+
+
erhalten
+
+
get
+
+
obtenir
+
+ +
0808
+
+
+ + + +(etwas) annehmen, erhalten +accept, receive (something) +accepter, recevoir (un objet) + + +
tl
+
+
(etwas) annehmen, erhalten
+
+
accept, receive (something)
+
+
accepter, recevoir (un objet)
+
+ +
0836
+
+
+ + + +erfolgreich (sein) +succeed +réussir + + +
tl
+
+
erfolgreich (sein)
+
+
réussir
+
+
succeed
+
+ +
0297
+
+
+ + + +finden +find +trouver + + +
tl
+
+
find
+
+
finden
+
+
trouver
+
+ +
1475
+
+
+ + + +finden, entdecken +discover +découvrir + + +
tl
+
+
découvrir
+
+
discover
+
+
finden, entdecken
+
+
+ + + +ertappen +catch in wrong doing +trouver en flagrant délit + + +
ek
+
+
ertappen
+
+
+ + + +gewinnen, verdiene +win, earn +gagner + +
i-456
+
+
+ + + +aufholen +catch up to +rattraper (de justesse) + +
i-855
+
+
+
+ + +
wôlôlô
+
+ + + + + + + +leer +empty (be) +vide (être) + +
empty
+
+
leer
+
+
vide
+
+ + +
0637
+
+
+
+ + +
kûngbâ
+
+ + + + +Gepäck +baggage +bagages + + +
ek
+
+
bagages
+
+
baggage
+
+
Gepäck
+
+
+ + + +Hausrat, Eigentum +goods, belongings +biens + + +
ek
+
+
biens
+
+
goods, belongings
+
+
Hausrat, Eigentum
+
+ +
0811
+
+
+ + + +Last, Bürde +load, burden +charge, fardeau + + +
tl
+
+
charge, fardeau
+
+
Last, Bürde
+
+
load, burden
+
+ + +
0863
+
+
+ + + +Brautpreis +dowry +dot + + +
tl
+
+
Brautpreis
+
+
dot
+
+
dowry
+
+ +
0942
+
+
+
+ + +
kêtê kângbi
+
+ + + + + + + + +Vers +verse +verset + +
Vers, Bibelvers
+
verse, Bible verse
+
verset, verset biblique
+
+ + +
ek
+
+
Vers
+
+
verse
+
+
verset
+
+
+
+ + +
ndeke tî bï
+
+ + +
SC has belu, Koyt has diru, zeze
+
+ + + + + + + + + + + +Eule +owl +hibou + + +
tl
+
+
Eule
+
+
hibou
+
+
owl
+
+ +
1054
+
+
+
+ + +
bîanî bîanî
+
+ + + + + + + + +für immer +for good +pour de bon + +
Lo gue bîanî bîanî.
+ +
He left for good.
+
Il est parti pour de bon.
+
+
+ +
ek
+
+
für immer
+
+
+ +wahrhaftig +truly +en vérité + +
Bîanî bîanî, âmbârâtâ akpe hîo mîngi.
+ +
Truly, horses can run rapidly.
+
En vérité, des chevaux peuvent courir rapidement.
+
+
+ + +
ek
+
+
truly
+
+
wahrhaftig
+
+
+
+ + +
kä nginza na pekô tî wâlï
+
+ + + + + + + + +Brautpreis bezahlen +pay the dowry +payer la dot + +
Brautpreis bezahlen
+
pay the dowry, bride price
+
payer la dot
+
+ + +
ek
+
+
Brautpreis bezahlen
+
+
+
+ + +
arâbu
+
+ + + + +Araber +Arab +arabe + + +
ek
+
+
Arab
+
+
arabe
+
+
Araber
+
+
+
+ + +
mâlegbängä
+
+ + + + +Strauß +ostrich +autruche + + +
Struthio camelus
+
+ +
tl
+
+
autruche
+
+
ostrich
+
+
Strauß
+
+ + +
1053
+
+
+
+ + +
mvele
+
+ + + + +Kupfer +copper +cuivre + + +
ek
+
+
copper
+
+
cuivre
+
+
Kupfer
+
+ + +
1282
+
+
+
+ + +
turnêe
+
+ + + + +drehen +turn +tourner +
drehen
+
+
tourner
+
+
turn
+
+
+
+ + +
têngbi
+
+ + + + + + + +treffen +meet, encounter +rencontrer + + +
tl
+
+
meet, encounter
+
+
rencontrer
+
+
treffen
+
+ + +
0414
+
+
+ + + +zusammenfügen +join, put together +joindre, unir, relier + + +
tl
+
+
join, put together
+
+
joindre, unir, relier
+
+
zusammenfügen
+
+ +
1463
+
+
+
+ + +
kôbe tî Seigneur
+
+ + + + + + + + +Abendmahl +Lord's Supper +Sainte Cène + + + + +
ek
+
+
Abendmahl
+
+
+
+ + +
âta (tî kôlï, wâlï)
+
+ + + + +Großvater/mutter, Großeltern +grandparent +grand-parent + + +
ek
+
+
grandparent
+
+
grand-parent
+
+
Großvater/mutter, Großeltern
+
+ + +
0343
+
+
+ + + +Enkel (in) +grandchild +petit-fils, petite-fille + +
Enkel (in)
+
+
grandchild
+
+ +
0357
+
+
+
+ + +
gbôto kutukutu
+
+ + + + + + + + +Auto Fahren +drive a vehicle +conduire un véhicule + + +
ek
+
+
Auto Fahren
+
+
+
+ + +
hînga tî sâra tënë nzönî
+
+ + + + + + + + + + + + + + + + + + + + +redegewandt (sein) +eloquent (be) +éloquent (être) + +
Préfet sô hînga tî sâra tënë nzönî mîngi!
+ +
That prefect is very eloquent.
+
+
+ + +
tl
+
+
(être) éloquent
+
+
eloquent
+
+
redegewandt (sein)
+
+ +
0441
+
+
+
+ + +
lisorö
+
+ + +
li.so.ɾo
+ +
1.1.2 / 1.1.1 [lb]
+
+
+ + + +Gespräch +conversation +conversation + + +
ek
+
+
conversation
+
+
conversation
+
+
Gespräch
+
+
+
+ + +
pörö tî lê tî kôbe
+
+ + + + + + + + + + + + +Spreu +chaff +balle + + +
tl [sl agrees]
+
+
balle
+
+
chaff
+
+
Spreu
+
+ + +
1206
+
+
+
+ + +
dênge lê
+
+ + + + + + + + +schauen, gucken, einen Blick werfen +peek, glance +se pencher pour voir + + + + +
ek
+
+
schauen, gucken, einen Blick werfen
+
+
+
+ + +
gîâ
+
+ + + + +quälen, provozieren +torment, provoke +tourmenter, agacer + + +
ek
+
+
quälen, provozieren
+
+
+ + + +umzingeln, um zu fangen +encircle to trap +entourer pour attraper + + +
ek
+
+
umzingeln, um zu fangen
+
+
+
+ + +
sêse tî lüngö yê
+
+ + + + + + + + + + + + +fruchtbarer Boden +fertile soil +sol fertile + + +
tl
+
+
fertile soil
+
+
fruchtbarer Boden
+
+
sol fertile
+
+ + +
0745
+
+
+
+ + +
töngana
+
+ + +
to.nga.na
+ +
2.1.1
+
+
+ +wie +like +comme + +
ek
+
+
comme
+
+
like
+
+
wie
+
+
+ + + +wenn, falls +if +si + + +
tl
+
+
if
+
+
si
+
+
wenn, falls
+
+ +
1692
+
+
+ + + +als, wann +when +lorsque + +
ek
+
+
als, wann
+
+
lorsque
+
+
when
+
+
+
+ + +
sô benda
+
+ + + + +gewinnen +victorious, beat (be) +remporter la victoire + + +
tl
+
+
gewinnen
+
+
remporter la victoire
+
+
victorious, beat
+
+ +
0874
+
+
+
+ + +
Töngana nye sï
+
+ + + + + + +Wie kommt es, daß... +How is it that... +Comment se fait-il que... + +
ek
+
+
Wie kommt es, daß...
+
+
+
+ + +
môlengê tî kôlï
+
+ + + + + + + + + + + + +Sohn +son +fils + + +
tl
+
+
fils
+
+
Sohn
+
+
son
+
+ +
0355
+
+
+
+ + +
âmaseka
+
+ + + + + + + + +Jugend, Jugendliche +youth, young people +les jeunes + + +
ek
+
+
Jugend, Jugendliche
+
+
+
+ + +
sâra likisï
+
+ + + + + + + + + + + +betrügen, schwindeln +cheat, swindle +frauder, escroquer + + +
ek
+
+
betrügen, schwindeln
+
+
+
+ + +
gravië
+
+ + + + +Kies +gravel +gravier + + +
tl
+
+
gravel
+
+
gravier
+
+
Kies
+
+ +
1273
+
+
+
+ + +
zo tî kängängö bê
+
+ + + + +tolerante Person +tolerant person +personne tolérante + +
mle-4881
+
+
+
+ + +
yê sô alîngbi tî gä na kpälë
+
+ + + + + + + + + + + + + + + + + + + + +Gefahr +danger +danger + + +
tl
+
+
danger
+
+
danger
+
+
Gefahr
+
+ +
0324
+
+
+
+ + +
zozo
+
+ + +
1012 on original version of CAWL
+
+ +
zɔzɔ
+
+ + + +(Nikobaren-)Palmenratte +palm rat +rat de palme + + +
+ + +
yeke na ngîâ
+
+ + + + + + +frölich (sein), sich freuen +happy, joyful (be) +content, joyeux (être) + +
Terê tî lo agä nzönî. Lo yeke na ngîâ.
+ +
He is healed. He is happy.
+
+
+ + +
tl
+
+
(être) content, joyeux
+
+
frölich (sein), sich freuen
+
+
happy, joyful
+
+ + +
0267
+
+
+
+ + +
bê tî ... aso
+
+ + + + + + + + + +unglücklich (sein) +unhappy (be) +mécontent (être) + + + + +
ek
+
+
unglücklich (sein)
+
+
+
+ + +
zazama
+
+ + + + +übertreiben +exaggerate +exagérer + +
jl, gfk-d, lb
+
+ +
mle-1686
+
+
+
+ + +
ndao
+
+ + +
???
+
+ + + +Unfall +accident +accident + + + + +
ek
+
+
accident
+
+
accident
+
+
Unfall
+
+
+
+ + +
pûpûlenge
+
+ + + + +Schmetterling +butterfly +papillon + + +
tl
+
+
butterfly
+
+
papillon
+
+
Schmetterling
+
+ +
1146
+
+
+ + + +Motte, Nachtfalter +moth +papillon de nuit, papillon diurne, papillon nocturne + + +
tl
+
+
moth
+
+
Motte, Nachtfalter
+
+
papillon de nuit, papillon diurne, papillon nocturne
+
+ +
1147
+
+
+
+ + +
kpângbi
+
+ + + + +Flügel +wing +aile +
aile
+
+
Flügel
+
+
wing
+
+
+
+ + +
wamvene
+
+ + + + +Lügner +liar +menteur + +
mle-2809
+
+
+
+ + +
biö tî kate
+
+ + + + + + + + + + + +Rippe +rib +côte + + + + +
tl
+
+
côte
+
+
rib
+
+
Rippe
+
+ +
0080
+
+
+
+ + +
tanda
+
+ + + + +fire brand + +
+ + +
zaragîna
+
+ + + + +traßenräuber +road bandit +coupeur de route + + +
ek
+
+
traßenräuber
+
+
+
+ + +
na nze sô ahûnzi
+
+ + + + + + + + + + + + + + + + + + + + +letzter Monat +last month +mois dernier + +
Âla lü yäkä tî âla na nze sô ahûnzi.
+ +
They planted their garden last month.
+
Ils ont planté leurs champs le mois dernier.
+
+
+ +
mle-2746
+
+
+
+ + +
mabôko sêngê
+
+ + + + + + +mit leeren Händen, ohne etwas +empty-handed, without a thing +les mains vides, sans rien + + +
ek
+
+
mit leeren Händen, ohne etwas
+
+
+
+ + +
nzêre
+
+ + + + + + + +klein +little (be) +petit (être) + +
Sô ânzêre yê sêngê!
+ +
Those are just little things.
+
Ce n’est que des petites choses.
+
+
+
klein
+
+
little
+
+
petit
+
+ +
1509
+
+
+ + + +reduzieren,miniaturisieren +reduce, miniaturize +rendre tout petit, miniaturiser +
reduzieren,miniaturisieren
+
+
+
+ + +
pasëe
+
+ + + + +geschehen +happen +se passer + + +
ek
+
+
geschehen
+
+
happen
+
+
+ + + +vorbeikommen +come by +passer + + +
ek
+
+
passer
+
+
vorbeikommen
+
+
+
+ + +
bûngbi tî âzo
+
+ + + + + + + + + + + + +Menschenmenge +crowd +foule + + +
tl
+
+
crowd
+
+
foule
+
+
Menschenmenge
+
+ +
0391
+
+
+
+ + +
yeke na nzönî bê
+
+ + +
??? Mostly it means (be) nice.
+
+ + + + + +grosszügig (sein) +generous (be) +généreux (être) + +
Lo yeke na nzönî bê ngbanga tî sô lo mû matabïsi na âzo mîngi.
+ +
He is generous because he gives gifts to many people.
+
+
+ + +
tl
+
+
(être) généreux
+
+
generous
+
+
grosszügig (sein)
+
+ +
0301
+
+
+
+ + +
tene pekô tî yângâ tî
+
+ + + + + + + + + + + + + + + + +vorhersagen, prophezeien +divine, prophesy +présager, prophétiser + + +
tl
+
+
divine, prophesy
+
+
présager, prophétiser
+
+
vorhersagen, prophezeien
+
+ +
0914
+
+
+ + + +erzählen +tell, recount +raconter + +
erzählen
+
+
raconter
+
+
tell, recount
+
+ + +
0479
+
+
+ + + +übersetzen, interpretieren +translate, interpret +traduire, interpréter + +
sl
+
+
übersetzen, interpretieren
+
+
+
+ + +
gbï mîngi
+
+ + +
sl agrees
+
+ + + + + + + + + +Pleite (sein) +broke (be) +à plat (être) + +
mbï gbï mîngi.
+ +
Ich bin pleite.
+
I'm broke.
+
Je suis à plat.
+
+
+ + +
ek
+
+
Pleite (sein)
+
+
+
+ + +
osïö
+
+ + +
o.sio
+ +
1.22
+
+
+ + + +vier (4) +four (4) +quatre (4) + + +
tl
+
+
four (4)
+
+
quatre (4)
+
+
vier (4)
+
+ +
1593
+
+
+
+ + +
Nzapä
+
+ + + + +Gott +God +Dieu + + +
tl
+
+
Dieu
+
+
God
+
+
Gott
+
+ +
0906
+
+
+
+ + +
tûku ... na terê tî ...
+
+ + + + + + + + + + + + + + + + +sprühen +sprinkle +asperger + + +
tl
+
+
asperger
+
+
sprinkle
+
+
sprühen
+
+ + +
1483
+
+
+
+ + +
otâ
+
+ + +
o.ta
+ +
1.3
+
+
+ + + +drei (3) +three (3) +trois (3) + + +
tl
+
+
drei (3)
+
+
three (3)
+
+
trois (3)
+
+ +
1592
+
+
+
+ + +
kerekpâ
+
+ + + + +Bett aus Raffiapalm-Blattrippen +raffia-palm bed +lit en palmier à raphia + + +
ek
+
+
Bett aus Raffiapalm-Blattrippen
+
+
+
+ + +
pûsupûsu
+
+ + + + + + + +Handkarre +pushcart +charrette + + +
ek
+
+
charrette
+
+
Handkarre
+
+
pushcart
+
+
+
+ + +
a lîngbi
+
+ + + + +es ist notwendig +it is necessary +il faut + +
A lîngbi zo kûê afûta lapôo.
+ +
It is necessary that everyone pay taxes.
+
+
+ +
es ist notwendig
+
+
il faut
+
+
it is necessary
+
+ +
0807
+
+
+
+ + +
kâmba tî terê
+
+ + + + + + + + +Vene +vein +veine + + +
tl
+
+
vein
+
+
veine
+
+
Vene
+
+ +
0091
+
+
+
+ + +
fâ yâ nî
+
+ + + + + + + + + + + + +teilen, trennen +divide, separate (tr) +diviser, séparer + + +
tl
+
+
divide, separate (tr)
+
+
diviser, séparer
+
+
teilen, trennen
+
+ +
1466
+
+
+
+ + +
töndâ tî
+
+ + + + + + + + +beginnen, anfangen +begin, start +commencer, se mettre à + + +
tl
+
+
begin, start
+
+
beginnen, anfangen
+
+
commencer, se mettre à
+
+ +
1501
+
+
+
+ + +
yâa ïrï tî ...
+
+ + + + + + + + + + + + +loben +praise (someone) +louer + + +
tl
+
+
loben
+
+
louer
+
+
praise (someone)
+
+ +
0476
+
+
+
+ + +
kpêngba
+
+ + + + + + + + +hart, stark (sein) +hard, solid, strong (be) +dur, fort, résistant (être) + + +
ek
+
+
hart, stark (sein)
+
+
+ + + +schwierig (sein) +difficult (be) +difficile (être) + + +
ek
+
+
(être) difficile
+
+
difficult
+
+
schwierig (sein)
+
+ + +
0320
+
+
+ + + +härten +harden +endurcir +
endurcir
+
+
harden
+
+
härten
+
+
+
+ + +
buba yâ
+
+ + + + + + + + +(ein Baby) abtreiben +abort a baby +avorter + +
abtreiben
+
abort a baby [Lit.: ruin stomach]
+
avorter
+
+ + +
ek
+
+
(ein Baby) abtreiben
+
+
avorter
+
+
+
+ + +
gbï
+
+ + + + +brennen +burn +brûler + + + + + + +
& i-018
+
+ +
ek
+
+
brennen
+
+
brûler
+
+
burn
+
+ + +
1498
+
+
+
+ + +
ke tënë nî
+
+ + + + + + + + + + + + +widersprechen +contradict +contredire + + +
tl
+
+
contradict
+
+
contredire
+
+
widersprechen
+
+ +
0468
+
+
+
+ + +
wadôdô
+
+ + + + +Tänzer +dancer +danseur + + +
ek
+
+
dancer
+
+
danseur
+
+
Tänzer
+
+
+
+ + +
sango
+
+ + +
sa.ngo
+ +
1.1
+
+
+ + + +Nachrichten +news +nouvelle + +
+ + +
tûku ngo
+
+ + + + + + + + + + + +Abtreibung +abort a pregnancy +provoquer un avortement + + +
ek
+
+
Abtreibung
+
+
+
+ + +
mû yângâ
+
+ + + + + + + +versprechen +promise +promettre + + +
ek
+
+
promettre
+
+
promise
+
+
versprechen
+
+
+ + + +entscheiden +decide +décider + + +
tl
+
+
decide
+
+
décider
+
+
entscheiden
+
+ + +
0288
+
+
+ + + +bestellen +order +ordonner + + +
ek
+
+
bestellen
+
+
order
+
+
ordonner
+
+
+
+ + +
balëûse na ôko
+
+ + + + + + + + + + + + +einundzwanzig (21) +twenty-one (21) +vingt-et-un (21) + + +
tl
+
+
einundzwanzig (21)
+
+
twenty-one (21)
+
+
vingt-et-un (21)
+
+ +
1610
+
+
+
+ + +
+
+ + + + + + + + +einen Toten beerdigen +bury a body +enterrer un mort + + +
ek
+
+
bury a body
+
+
einen Toten beerdigen
+
+
enterrer un mort
+
+ +
0954
+
+
+
+ + +
babâ
+
+ + + + +Vater +father +père + + + + +
tl
+
+
father
+
+
père
+
+
Vater
+
+ + +
0344
+
+
+ + + +Onkel vaterlicherseits +paternal uncle +tante paternelle +
Onkel vaterlicherseits
+
+
tante paternelle
+
+
uncle (paternal)
+
+ + +
0348
+
+
+
+ + +
voro
+
+ + + + +anflehen, dringend erbitten +plead, implore +supplier, implorer + +
plead, implore (maybe by kneeling)
+
+ + +
ek
+
+
anflehen, dringend erbitten
+
+
plead, implore
+
+
supplier, implorer
+
+ + +
0454
+
+
+ + + +anbeten +worship +adorer + + + + +
ek
+
+
adorer
+
+
anbeten
+
+
worship
+
+
+ + + +verwöhnen +pamper, overindulge +choyer + +
gfk-d
+
+ +
i-186
+
+
+
+ + +
yângâ tî da
+
+ + + + +Tür (Haus) +door of house +porte de la maison + + +
+ + +
na ndo wa
+
+ + + + + + + + + + + + +wo? +where? +où ? + +
Lêgë sô ague na ndo wa?
+ +
Where does this road go?
+
+
+ + +
tl
+
+
où ?
+
+
where?
+
+
wo?
+
+ +
1686
+
+
+
+ + +
turnëe
+
+ + + + +drehen, rotieren +spin, turn +tourner (intr) + + +
mle-4505
+
+
+
+ + +
mbeso
+
+ + +
mbe.so
+ +
1.1
+
+
+ + + +früher +formerly, once +autrefois, naguère + +
Mbeso, ï sâra bongö tî ï na pörö tî këkë.
+ +
Formerly, we made our clothes with tree bark.
+
+
+ + +
ek
+
+
autrefois, naguère
+
+
formerly, once
+
+
früher
+
+ +
1375
+
+
+
+ + +
kpûrûrû
+
+ + + + +Motorrad +motorcycle +moto + +
+ + +
tatalîta
+
+ + + + +Blasmusik +fanfare, trumpet +fanfare, clairon + + +
ek
+
+
Blasmusik
+
+
+
+ + +
sâra likisï
+
+ + + + +schummeln +cheat +tricher + +
mle-0829
+
+
+
+ + +
bêlimbô
+
+ + +
???
+ +
3.1.3
+
+
+ + + +glatzköpfig (sein), eine Glatze haben +bald (be) +chauve (être) + + +
& mle
+
+ +
tl
+
+
(être) chauve
+
+
bald
+
+
glatzköpfig (sein), eine Glatze haben
+
+ + +
0190
+
+
+
+ + +
bâa ndo
+
+ + + + + + + + + + + +sehen, sehen können +have sight +avoir la capacité de voir + + +
ek
+
+
sehen, sehen können
+
+
+ + + +bestaunen, betrachten +gaze +contempler + + +
ek
+
+
bestaunen, betrachten
+
+
contempler
+
+
gaze
+
+
+
+ + +
hûlûhûlû
+
+ + + + +Lärm, Aufruhr +noise, commotion, tumult +agitation, désordre + + +
ek
+
+
Lärm, Aufruhr
+
+
+
+ + +
yê tî mabôko
+
+ + + + + + + + + + + + +Armreif +bracelet +bracelet + + +
tl
+
+
Armreif
+
+
bracelet
+
+
bracelet
+
+ +
0551
+
+
+
+ + +
sâra baba
+
+ + + + + + + + + + + +sich schick/gut anziehen +dress up +bien s'habiller + + +
ek
+
+
sich schick/gut anziehen
+
+
+ +auf sich stolz (sein) +proud of oneself (be) +fier de soi (être) + + +
ek
+
+
auf sich stolz (sein)
+
+
+
+ + +
längö na ndö tî pärä
+
+ + + + + + + + + + + + +brüten +incubate, set (on eggs) +couver + + +
tl
+
+
brüten
+
+
couver
+
+
incubate, set (on eggs)
+
+ +
1081
+
+
+
+ + +
tezôon
+
+ + + + +Geier +vulture +vautour + + +
tl
+
+
Geier
+
+
vautour
+
+
vulture
+
+ +
1057
+
+
+
+ + +
vîi
+
+ + + + +offen, ehrlich +frankly, openly +franchement, ne rien caché + + +
ek
+
+
offen, ehrlich
+
+
+
+ + +
nzara tî ngû asâra ...
+
+ + + + + + + + + +Durst (haben), dürsten +thirsty, thirst (be) +(avoir) soif + +
Ndowâ asâra sî nzara tî ngû asâra lo.
+ +
The heat is causing him to be thristy.
+
+
+ + +
tl
+
+
(avoir) soif
+
+
Durst (haben), dürsten
+
+
thirsty, thirst
+
+ +
0181
+
+
+
+ + +
kpâkayâo
+
+ + +
???
+ +
3.1.31
+
+
+ + + +Flip-Flops, Riemenlatschen +flip-flops, thongs +sandales + + +
ek
+
+
Flip-Flops, Riemenlatschen
+
+
sandales
+
+
+
+ + +
zîa ... na mabôko tî ...
+
+ + + + +vertrauen Sie uns an +entrust with +confier à + +
sc
+
+ +
i-212
+
+
+
+ + +
mato
+
+ + +
???
+
+ + + +Spruch +proverb +proverbe + + +
tl
+
+
proverb
+
+
proverbe
+
+
Spruch
+
+ +
0481
+
+
+
+ + +
zî yângâ tî
+
+ + + + + + + + +aufschneiden +cut open (fruit) +fendre, ouvrir avec un couteau + + +
tl
+
+
aufschneiden
+
+
cut open (fruit)
+
+
fendre, ouvrir avec un couteau
+
+ +
0593
+
+
+
+ + +
kumbämbä
+
+ + + + +alleinstehend +unmarried, single, bachelor +célibataire + + +
ek
+
+
alleinstehend
+
+
célibataire
+
+ +
mle-0390
+
+
+
+ + +
mimîi
+
+ + + + +dicht +dense (be) +compact, dense (être) + +
mle-1307
+
+
+
+ + +
mbôo (purû na) ngbondâ tî ...
+
+ + + + + + + + + + + + + + + + + + + + +(Kot) abwischen +wipe off (excreta) +s'essuyer (des excréments) + + +
tl
+
+
(Kot) abwischen
+
+
s'essuyer (des excréments)
+
+
wipe off (excreta)
+
+ + +
0563
+
+
+
+ + +
ngbâ na nî
+
+ + + + + + + + +weiter (machen) +continue, resume +continuer + + +
tl
+
+
continue, resume
+
+
continuer
+
+
weiter (machen)
+
+ +
1503
+
+
+
+ + +
bozö tî ngonzo
+
+ + + + + + + + + + + + +Gallenblase +gall bladder +vésicule biliaire + + +
tl
+
+
gall bladder
+
+
Gallenblase
+
+
vésicule biliaire
+
+ +
0088
+
+
+
+ + +
esêle
+
+ + + + +Leiter +ladder +échelle + +
0692
+
+
+
+ + +
biö tî ndo tî bê
+
+ + + + + + + + + + + + + + + + +Brustbein +breastbone +sternum + + +
tl
+
+
breastbone
+
+
Brustbein
+
+
sternum
+
+ +
0078
+
+
+
+ + +
nginza
+
+ + + + +Silber +silver +argent + + +
tl
+
+
argent
+
+
Silber
+
+
silver
+
+ +
1281
+
+
+
+ + +
lapärä
+
+ + + + +Flugzeug +airplane +avion + + +
ek
+
+
airplane
+
+
avion
+
+
Flugzeug
+
+
+
+ + +
nînga
+
+ + + + +dauern +last, remain +durer + + +
ek
+
+
dauern
+
+
durer
+
+
+
+ + +
kodë tî dütïngö
+
+ + + + + + + + + + + + +Lebensweise +lifestyle +style de vie +
Lebensweise
+
+
lifestyle
+
+
+
+ + +
ôko äpe
+
+ + + + + + + + + + +ganz und gar nicht +not at all +pas du tout + + +
ek
+
+
ganz und gar nicht
+
+
+
+ + +
mû ngôi
+
+ + + + + + + + + + + + +Zeit verbringen +spend time, pass time +passer le temps + + +
tl
+
+
passer le temps
+
+
spend time, pass time
+
+
Zeit verbringen
+
+ +
1365
+
+
+
+ + +
kâmba tî bê afâ
+
+ + + + + + + + +Liebeskummer haben +love trouble +chagrin d'amour + + +
ek
+
+
Liebeskummer haben
+
+
+
+ + +
be
+
+ + +
+ +
1
+
+
+ + + +reifen +ripen +mûrir + + + + +
ek
+
+
mûrir
+
+
reifen
+
+
ripen
+
+ +
1248
+
+
+ + + +rot werden +redden +rougir + + +
ek
+
+
redden
+
+
rot werden
+
+
rougir
+
+
+
+ + +
gbe tî mabôko
+
+ + + + + + + + + + + + +Achselhöhle +armpit +aisselle + + +
tl
+
+
Achselhöhle
+
+
aisselle
+
+
armpit
+
+ +
0051
+
+
+
+ + +
popö
+
+ + +
po.po
+ +
1.2 / 1.3 [lb]
+
+
+ + + +Vorhaut +foreskin +prépuce + + +
ek
+
+
foreskin
+
+
prépuce
+
+
Vorhaut
+
+
+ +unbeschnitten +uncircumsized +incirconcis + + +
ek
+
+
incirconcis
+
+
unbeschnitten
+
+
uncircumsized
+
+
+
+ + +
mbûrü
+
+ + + + +Öl-Palme +oil palm +palmier à huile + + +
Elaeis guineensis
+
+ +
ek
+
+
oil palm
+
+
Öl-Palme
+
+
palmier à huile
+
+ + +
1168
+
+
+
+ + +
pokô
+
+ + + + + +
pɔ.kɔ / po.ko
+ +
1.3
+
+
+ + + +Rücken, Hinterseite +back, rear +dos, partie arrière + + +
ek
+
+
Rücken, Hinterseite
+
+
+
+ + +
pelikan
+
+ + + + + + + + + + + + +Pelikan +pelican +pélican + + +
Pelecanus rufescens
+
+ +
tl
+
+
pelican
+
+
pélican
+
+
Pelikan
+
+ + +
1051
+
+
+
+ + +
yambatï
+
+ + + + +Handfläche +palm (of hand) +paume (de la main) + +
Handfläche
+
+
palm (of hand)
+
+
paume (de la main)
+
+ +
0058
+
+
+
+ + +
yângâ tî ... anzere äpe
+
+ + + + + + +keinen Appetit haben +have no appetite +ne pas avoir d'appétit + + +
ek
+
+
keinen Appetit haben
+
+
+
+ + +
tene
+
+ + + + +sprechen +speak +parler, communiquer + + + + +
tl
+
+
parler, communiquer
+
+
speak
+
+
sprechen
+
+ + +
0435
+
+
+ + + +sagen +say +dire, prononcer + + +
tl
+
+
dire, prononcer
+
+
sagen
+
+
say
+
+ +
0433
+
+
+
+ + +
yôro
+
+ + + + +ausstrecken +hold out +tendre + + + + +
ek
+
+
ausstrecken
+
+
tendre
+
+
+ + + +durchsetzen +insert +enfoncer + + +
tl
+
+
durchsetzen
+
+
enfoncer
+
+
insert
+
+
+
+ + +
môlengê tî bâgara
+
+ + + + + + + + + + + + +Kalb +calf +veau + + +
tl
+
+
calf
+
+
Kalb
+
+
veau
+
+ +
0963
+
+
+
+ + +
biö tî pekô
+
+ + + + + + + + + + + + +Wirbelsäule +spine, backbone +colonne vertébrale, épine dorsale + + +
tl
+
+
colonne vertébrale, épine dorsale
+
+
spine, backbone
+
+
Wirbelsäule
+
+ +
0079
+
+
+ + + +Schulterblatt +shoulder blade +omoplate + + +
tl
+
+
omoplate
+
+
Schulterblatt
+
+
shoulder blade
+
+ +
0032
+
+
+
+ + +
asûru
+
+ + + + +zerrissen (sein) +torn (be) +déchiré (être) + + +
tl
+
+
(être) déchiré
+
+
torn
+
+
zerrissen (sein)
+
+ +
0730
+
+
+
+ + +
gônda na hânda
+
+ + + + +schmeicheln +flatter +flatter + +
bmm
+
+ +
i-416
+
+
+
+ + +
ngbä
+
+ + + + +Büffel +buffalo +buffle + + +
Syncerus caffer
+
+ +
tl
+
+
buffalo
+
+
Büffel
+
+
buffle
+
+ +
0997
+
+
+
+ + +
+
+ + + + +ausruhen +rest +se reposer +
ausruhen
+
+
rest
+
+
+
+ + +
kôlï-tâgba
+
+ + + + +Bock +buck +bouc + +
mle-0666
+
+
+ + + +männliches Kob +male kob +kob mâle + +
+ + +
selêka
+
+ + + + +Bund +covenant +engagement, alliance +
Bund
+
+
covenant
+
+
+
+ + +
tï na dû
+
+ + + + + + + + +in Schwierigkeiten greaten, in die Falle gehen +get into trouble, fall in a trap +tomber dans un piège + + +
ek
+
+
in Schwierigkeiten greaten, in die Falle gehen
+
+
+
+ + +
pasûla
+
+ + +
??? douibt this word
+
+ + + +sieben, filtrieren +strain (food) +passer, filtrer, égoutter + + +
tl
+
+
passer, filtrer, égoutter
+
+
sieben, filtrieren
+
+
strain (food)
+
+ +
0598
+
+
+
+ + +
ngû apîka
+
+ + + + + + +es regnet +it's raining +il pleut + + +
ek
+
+
es regnet
+
+
+
+ + +
kêtê tênë
+
+ + + + + + + + + + + + +Kieselstein +stone (small) +caillou + + +
tl
+
+
caillou
+
+
Kieselstein
+
+
stone (small)
+
+ +
1272
+
+
+
+ + +
sandûku
+
+ + + + +Kiste, Truhe +box, trunk +caisse, malle + + + + +
ek
+
+
Kiste, Truhe
+
+
+
+ + +
dema
+
+ + + + + + + +heulen, klagen +wail, ululate (at funeral) +pleurer, gémir, ululer + + +
tl
+
+
heulen, klagen
+
+
pleurer, gémir
+
+
wail, ululate (at funeral)
+
+ + +
0951
+
+
+ + + +heulen +grumble, complain +se plaindre, râler + + +
tl
+
+
grumble, complain
+
+
heulen, klagen
+
+
se plaindre, râler
+
+ + +
0467
+
+
+ + + +klagen +lament, deplore +se lamenter + + +
i-560
+
+
+
+ + +
gbôkorô
+
+ + +
???
+ +
3.1.3
+
+
+ + + +uneheliches Kind +bastard, illegitimate child +bâtard, enfant illégitime + + +
tl
+
+
bastard, illegitimate child
+
+
bâtard, enfant illégitime
+
+
uneheliches Kind
+
+
+
+ + +
lörö
+
+ + +
lɔ.ɾɔ
+ +
2.2
+
+
+ + + +Rennen +race +course + + + + +
ek
+
+
course
+
+
race
+
+
Rennen
+
+
+ + + +Geschwindigkeit +speed +vitesse + + +
tl
+
+
Geschwindigkeit
+
+
speed
+
+
vitesse
+
+ + +
1418
+
+
+
+ + +
gürü tî wâ
+
+ + + + + + + + + + + + +Rauch +smoke +fumée + + +
tl
+
+
fumée
+
+
Rauch
+
+
smoke
+
+ +
1308
+
+
+
+ + +
kângâ
+
+ + + + +SpitzHhacke +pick-ax +pioche + + +
ek
+
+
pick-ax
+
+
pioche
+
+
SpitzHhacke
+
+
+
+ + +
to
+
+ + +
to
+ +
1
+
+
+ + + +senden +send +envoyer + + + + +
ek
+
+
envoyer
+
+
send
+
+
senden
+
+ +
0858
+
+
+
+ + +
töngasô
+
+ + +
to.nga.so
+ +
2.1.3 / 2.1.2 [lb]
+
+
+ + + +dann, somit +thusly +ainsi + +
A fâ yâka na kpôka töngasô.
+ +
So gärtnert man mit der Hacke.
+
One gardens with a hoe thusly.
+
On jardine ainsi avec une houe.
+
+
+ + +
ek
+
+
ainsi
+
+
dann, somit
+
+
+ + + +um +about +environ + +
A yeke këkë tî mêtere ûse töngasô.
+ +
Es war ein etwa 2 Meter langer Stock.
+
It was a stick about 2 meters long.
+
C'était un bâton d'environ 2 mètres de long.
+
+
+
+
+ + +
lisolo
+
+ + + + + +
li.so.lo
+ +
1.1.2 / 1.1.1 [lb]
+
+
+ + + +plaudern, ein Gespäch führen +chat, converse, talk +causer, converser + +
+ + +
yângâ-da
+
+ + +
yângâ da
+ +
+ + + + + + + + + + + + + + + + + + + +Tür +door +porte + + +
tl
+
+
door
+
+
porte
+
+
Tür
+
+
+ + + +Tür, Türöffnung, Schwelle +doorway +entrée, seuil + + +
tl
+
+
doorway
+
+
entrée, seuil
+
+
Tür, Türöffnung, Schwelle
+
+
+
+ + +
bûngbi
+
+ + + + +versammeln +gather +rassembler + + + + +
ek
+
+
gather
+
+
rassembler
+
+
versammeln
+
+ +
1465
+
+
+ + + +zusammenfügen +join, put together +joindre, unir, relier + + +
tl
+
+
join, put together
+
+
joindre, unir, relier
+
+
zusammenfügen
+
+ +
1463
+
+
+ + + +anhäufen, stapeln +heap up +entasser + + +
tl
+
+
anhäufen, stapeln
+
+
entasser
+
+
heap up
+
+ +
0647
+
+
+ + + +Treffen +meeting +réunion + + +
ek
+
+
meeting
+
+
réunion
+
+
Treffen
+
+
+ + + +Team, Mannschaft (im Sport) +team +équipe + +
bûngbi tî âzo tî pïkängö ndembö
+ +
Fußball mannschaft
+
soccer team
+
équipe de foot
+
+
+ + +
ek
+
+
équipe
+
+
team
+
+
Team, Mannschaft (im Sport)
+
+
+
+ + +
tûku lê tî kâsa
+
+ + + + + + + + + + + + + + + + +säen, pflanzen +sow, plant +semer, planter + + +
tl
+
+
säen, pflanzen
+
+
semer, planter
+
+
sow, plant
+
+ +
0748
+
+
+
+ + +
wafängö mbëtï
+
+ + + + +Lehrer +teacher +enseignant + + +
ek
+
+
enseignant
+
+
Lehrer
+
+
teacher
+
+
+
+ + +
tene sïönî tënë na ïrï tî zo
+
+ + + + + + + + + + + + + + + + + + + + + + + + +verleumden +slander +calomnier + + +
tl
+
+
calomnier
+
+
slander
+
+
verleumden
+
+ + +
0463
+
+
+
+ + +
lâwa
+
+ + + + +wann? +when? +quand ? + +
Lo gä lâwa?
+ +
When did he/she come?
+
+
+ + +
tl
+
+
quand ?
+
+
wann?
+
+
when?
+
+ +
1687
+
+
+
+ + +
yânî
+
+ + + + +Innere +inside +dedans, intérieur + + +
ek
+
+
Innere
+
+
inside
+
+
+
+ + +
modô
+
+ + +
mɔ.dɔ
+ +
1.3
+
+
+ +junggeselle +bachelor +célibataire mâle + +
+ + +
vi
+
+ + +
Check kamba ti ya and kete ya
+
+ + + +Därm, Eingeweide +intestines +intestins + + +
tl
+
+
Därm, Eingeweide
+
+
intestines
+
+
intestins
+
+ + +
0086
+
+
+
+ + +
yê tî hînga yê
+
+ + + + + + + + + + + + + + +neugierig (sein) +curious (be) +curieux (être) + +
Wamändängö-mbëtï agwe na bibliothèque lêgë mîngi. Lo yê tî hînga yê.
+ +
The student goes often to the library. He is curious.
+
+
+ + +
tl
+
+
(être) curieux
+
+
curious
+
+
neugierig (sein)
+
+ +
0311
+
+
+
+ + +
balëûse
+
+ + + + + + + + +zwanzig (20) +twenty (20) +vingt (20) + + + + +
tl
+
+
twenty (20)
+
+
vingt (20)
+
+
zwanzig (20)
+
+ +
1609
+
+
+
+ + +
vonga
+
+ + + + +Zebra +zebra +zèbre + + +
Hippotigris (Quagga) quagga
+
+ +
tl
+
+
zebra
+
+
Zebra
+
+
zèbre
+
+ +
1006
+
+
+
+ + +
kêtê kâmba
+
+ + + + + + + + + + + + +Schnur +string +ficelle + + +
tl
+
+
ficelle
+
+
Schnur
+
+
string
+
+ +
0652
+
+
+
+ + +
+
+ + + + +tragen, transportieren +carry, transport +porter, transporter + + + + +
ek
+
+
tragen, transportieren
+
+
+ + + +laden +load up +charger + + +
ek
+
+
charger
+
+
laden
+
+
load up
+
+ + +
0864
+
+
+ + + +erheben, erhöhen +raise, lift +soulever + + +
tl
+
+
erheben, erhöhen
+
+
raise, lift
+
+
soulever
+
+ +
1427
+
+
+
+ + +
mbipa
+
+ + + + +Taube +dove +colombe + + +
tl
+
+
colombe
+
+
dove
+
+
Taube
+
+ +
1043
+
+
+ + + +haustaube +domestic pigeon +pigeon domestique + +
i-778
+
+
+
+ + +
lê tî kokora
+
+ + + + + + + + +Pheil +arrow +flèche + +
arrow
+
+
flèche
+
+
Pheil
+
+ + +
0781
+
+
+
+ + +
ûse
+
+ + + + +zwei (2) +two (2) +deux (2) + + + + +
tl
+
+
deux (2)
+
+
two (2)
+
+
zwei (2)
+
+ +
1591
+
+
+
+ + +
pûsu längö
+
+ + + + + + + + + + + +aufschieben, verschieben +postpone, put off +reporter + + +
ek
+
+
aufschieben, verschieben
+
+
reporter
+
+
+
+ + +
kpâlâköngö
+
+ + +
kpa.la.ko.ngo
+ +
3.3.2.2
+
+
+ + + +Skorpion +scorpion +scorpion + + +
tl
+
+
scorpion
+
+
scorpion
+
+
Skorpion
+
+ + +
1129
+
+
+
+ + +
tâmuru
+
+ + + + +Dattel +date +datte + + +
Phoenix dactylifera
+
+ +
tl
+
+
date
+
+
datte
+
+
Dattel
+
+ +
1218
+
+
+
+ + +
ngû tî terê tî kôlï
+
+ + + + + + + + + + + + + + + + +Samen, Spermien +semen +sperme, semence + + +
tl
+
+
Samen, Spermien
+
+
semen
+
+
sperme, semence
+
+ + +
0100
+
+
+
+ + +
päpälâpö
+
+ + +
???
+
+ + + +Ringelwurm +ringworm +teigne + + +
tl
+
+
Ringelwurm
+
+
ringworm
+
+
teigne
+
+ +
0226
+
+
+
+ + +
maseka-wâlï
+
+ + + + + + + + + + + + +Junge Frau +young woman +jeune femme + + +
tl
+
+
girl
+
+
jeune femme
+
+
Mädchen
+
+
+
+ + +
waziba
+
+ + + + +Blinde(r) +blind person +aveugle + + +
tl
+
+
aveugle
+
+
blind person
+
+
Blinde(r)
+
+ +
0196
+
+
+
+ + +
lê tî kötä ngâgö
+
+ + + + + + + + + + + + + + + + +Aubergine +eggplant +aubergine + + +
Solanum melongena
+
+ +
tl [sl agrees]
+
+
aubergine
+
+
Aubergine
+
+
eggplant
+
+ +
1225
+
+
+
+ + +
nzere
+
+ + + + +gefällig (sein) +pleasing (be) +agréable (être) + + +
ek
+
+
gefällig (sein)
+
+
+ + + +süß sein, gut schmecken +taste sweet, good, delicious (be) +sucré, bon (goût) (être) + +
anzere.
+ +
es ist köstlich
+
it's delicious
+
c'est délicieux
+
+
+ + +
ek
+
+
(être) sucré, bon (goût)
+
+
süß sein, gut schmecken
+
+
taste sweet, good, delicious
+
+ +
1565
+
+
+
+ + +
na yângâda
+
+ + + + + + + + + + + +im Haus, zu Hause +at home +à la maison, chez soi + +
Lo ngbâ na yângâda.
+ +
He remains at home.
+
Il est toujours chez soi.
+
+
+ + +
ek
+
+
im Haus, zu Hause
+
+
+
+ + +
këkë tî (kpöka, pelle, ...)
+
+ + + + + + + + +Griff, Stiel +handle +manche + + + + +
ek
+
+
Griff, Stiel
+
+
handle
+
+
manche
+
+
+
+ + +
mû kôbe na ...
+
+ + + + +füttern +feed +nourrir + + +
i-698
+
+
+
+ + +
+
+ + + + +to beat someone + +
+ + +
ndurü na
+
+ + + + + + + +nahe (bei) +close to +proche de, près de + +
Boali ayeke ndurü na kötä ködörö tî Bangui.
+ +
Boali is close to the big town of Bangui.
+
+
+ + +
tl
+
+
close to
+
+
nahe (bei)
+
+
proche de, près de
+
+ +
1657
+
+
+
+ + +
wâlï-likundû
+
+ + + + + + + + + + + + +Hexe +witch +sorcière + + +
tl
+
+
Hexe
+
+
sorcière
+
+
witch
+
+ + +
0412
+
+
+
+ + +
kûi na ndo tî yingö
+
+ + + + + + + + + + + + + + + + +bewußtlos werden +become unconscious +perdre conscience + + + +
ek
+
+
bewußtlos werden
+
+
+
+ + +
sâra mbanda
+
+ + + + + + + + + +eifersüchtig (sein) +jealous (be) +jaloux (être) + +
Mbi ye ala mingi, nilaa mbi yeke sara mbanda ti ala; . . .. 2 Cor 11:2.
+ +
I love you very much, on account of this, I am jealous of you.
+
+
+ + +
ek
+
+
(être) jaloux
+
+
eifersüchtig (sein)
+
+
jealous
+
+ +
0307
+
+
+
+ + +
masîni
+
+ + + + + + + +Maschine, Werkzeug +machine, tool +machine, outil + + +
ek
+
+
Maschine, Werkzeug
+
+
+
+ + +
fûta külä
+
+ + + + + + + + + + + +seine Schulden bezahlen +pay off one's debts +rembourser ses dettes + + +
ek
+
+
seine Schulden bezahlen
+
+
+ + + +sich rächen +take revenge +se venger + + +
tl
+
+
se venger
+
+
sich rächen
+
+
take revenge
+
+ +
0512
+
+
+
+ + +
benda
+
+ + + + +Sieg +victory +victoire + +
1 Mbai 18:13 (MNF2010) KOTA GBIA asara si David aso benda na ndö ti awato ti lo na ndo so kue lo yeke gue daa.
+ +
The GREAT GOD caused David to have victory over his enemies everywhere he went.
+
+
+ + +
ek
+
+
Sieg
+
+
victoire
+
+
victory
+
+
+
+ + +
pîka yâ tî kpângbi
+
+ + + + + + + + + + + + + + + + +die Flügel schlagen +flap the wings +battre les ailes + + +
tl
+
+
battre les ailes
+
+
die Flügel schlagen
+
+
flap the wings
+
+ +
1076
+
+
+
+ + +
ngâfô
+
+ + +
nga.fo
+ +
3.3
+
+
+ + + +Hacke +hoe +houe + +
Hacke
+
+
hoe
+
+
houe
+
+ +
0752
+
+
+
+ + +
kisêre
+
+ + + + +Pfannkuchen +pancake +galette + +
i-460
+
+
+
+ + +
makara
+
+ + + + +fritierter Krapfen +deep-fried dough ball, fritter +beignet + + +
ek
+
+
beignet
+
+
fritierter Krapfen
+
+ +
i-80
+
+
+
+ + +
pöpö-hötö
+
+ + + + +Tal +valley +vallée + + +
1265
+
+
+
+ + +
kündü
+
+ + + + +Gebetsgruppe +prayer group +cellule de prière + + +
ek
+
+
Gebetsgruppe
+
+
+
+ + +
da-längö
+
+ + +
da.la.ngɔ
+ +
1.2.2
+
+
+ + + +Schlafzimmer +bedroom +chambre à coucher + + + + +
ek
+
+
bedroom
+
+
chambre à coucher
+
+
Schlafzimmer
+
+ +
0672
+
+
+
+ + +
terê tî ... awôko
+
+ + + + + + + + + + +müde (sein) +tired (be) +fatigué (être) + +
Mbo tî âwagïngö-nyama afono ayo, nî laâ terê tî lo awôko.
+ +
The hunters' dog wandered far, on account of this he was tired.
+
+
+ + +
tl
+
+
(être) fatigué
+
+
müde (sein)
+
+
tired
+
+ + +
0183
+
+
+
+ + +
ngbëndä
+
+ + +verschrumpelt (sein) (Obst) +shriveled, wrinkled (fruit) (be) +ratatiné, ridé, flétri (être) + + +
tl
+
+
(être) ratatiné, ridé, flétri
+
+
shriveled, wrinkled (fruit)
+
+
verschrumpelt (sein) (Obst)
+
+ +
1251
+
+
+
+ + +
nginza tî pekô tî wâlï
+
+ + + + + + + + + + + + + + + + +Brautpreis, Mitgift +dowry +dot + + +
tl
+
+
Brautpreis, Mitgift
+
+
dot
+
+
dowry
+
+ +
0942
+
+
+
+ + +
fa na gîgî
+
+ + + + + + + + +öffentlich erklären, bezeugen +declare publicly, testify +déclarer, témoigner + + + + +
ek
+
+
öffentlich erklären, bezeugen
+
+
+
+ + +
wâ tî dädä
+
+ + + + + + + + + + + +Strom, Elektrizität +electricity +courant + + + + + + +
ek
+
+
courant
+
+
electricity
+
+
Strom, Elektrizität
+
+
+
+ + +
mû wâ
+
+ + + + + + +heiss (haben) +hot (of person) (be) +(avoir) chaud + +
Li ti melenge ni aso lo. A mu wa.
+
+ + +
tl
+
+
(avoir) chaud
+
+
heiss (haben)
+
+
hot, (of person)
+
+ +
0178
+
+
+
+ + +
tembe na tembe
+
+ + + + + + + + +Konfrontation, Zweikampf +confrontation +duel, choc, confrontation + + +
ek
+
+
confrontation
+
+
Konfrontation, Zweikampf
+
+
+
+ + +
tatara
+
+ + + + + + + + +streicheln +caress +caresser + +
"Ezipte ayeke gbu me ti mo ti sara na ngia, ala yeke tatara kate ti mo ti maseka." Ezk 23:21.
+ +
Egypt is fondling your breasts, they are caressing your youthful bosom. Ezk 23:21
+
+
+ +
caress
+
+
caresser
+
+
streicheln
+
+ +
0485
+
+
+
+ + +
könöngö
+
+ + +
kɔ.nɔ.ngɔ
+ +
2.2.2
+
+
+ + + +Größe +size +dimension, taille + + +
ek
+
+
Größe
+
+
size
+
+
+
+ + +
mabôko tî këkë
+
+ + + + + + + + + + + +Ast, Zweig +branch, twig +branche (d'arbre) + + + + +
tl
+
+
Ast, Zweig
+
+
branch, twig
+
+
branche (d'arbre)
+
+ +
1178
+
+
+
+ + +
dû (tî längö) tî ânyama
+
+ + + + + + + + + + + + + + + +Bau, Höhle +den, lair, hole +tanière, antre [gîte] + + +
tl
+
+
Bau, Höhle
+
+
den, lair, hole
+
+
tanière, antre [gîte]
+
+ + +
1036
+
+
+
+ + +
dutï na (kôlï,wâlï)
+
+ + + + + + + + + + + + +Geschlechtsverkehr haben +have sex with +avoir des rapports sexuels + +
avoir des rapports sexuels
+
+
Geschlechtsverkehr haben
+
+
have sex with
+
+
+
+ + +
fa na li tî mabôko
+
+ + + + + + + + + + + + + + + + +zeigen (mit dem Finger) +indicate, point (as with the finger) +indiquer du doigt + + +
tl
+
+
indicate, point (as with the finger)
+
+
indiquer du doigt
+
+
zeigen (mit dem Finger)
+
+ +
0166
+
+
+
+ + +
kötä sembë
+
+ + + + + + + + +Tablett +platter, tray +plateau + + +
ek
+
+
plateau
+
+
Tablett
+
+
+
+ + +
wabätängö-nyama
+
+ + + + +Tierzüchter +animal breeder, herder +éleveur de bétail + + +
ek
+
+
Tierzüchter
+
+
+
+ + +
yeke
+
+ + + + +sein, existieren +be, exist +être, exister + + + + +
ek
+
+
sein, existieren
+
+
+
+ + +
bâbâ
+
+ + + + +Initiations-Lager +initiation camp +camp d'initiation + + +
ek
+
+
Initiations-Lager
+
+
+ + + +Lager +camp, encampment +campement + + + +
0534
+
+
+
+ + +
lïngö
+
+ + +
li.ngɔ
+ +
2.2
+
+
+ + + +depth, entry, penetration + + +meeting, secrecy + +
+ + +
ngbengê
+
+ + + + +Maulwurf +mole +taupe + + +
tl
+
+
Maulwurf
+
+
mole
+
+
taupe
+
+ +
1014
+
+
+
+ + +
kötä pupu
+
+ + + + + + + + + + + + +Harmattan +harmattan +harmattan + + +
tl
+
+
harmattan
+
+
harmattan
+
+
Harmattan
+
+ +
1331
+
+
+
+ + +
wâlï-tâgba
+
+ + + + +Damhirschkuh +doe +biche + +
mle-1459
+
+
+ + + +weibliches Kob +female kob +kob femelle + +
+ + +
fânî mîngi
+
+ + + + + + + + +mehrmals, oft +many times, often +plusieurs fois, souvent + + +
ek
+
+
mehrmals, oft
+
+ + +
1361
+
+
+
+ + +
sâra tufa na ndö tî ...
+
+ + + + + + + + + + + +segnen +bless +bénir + + +
ek
+
+
bénir
+
+
bless
+
+
segnen
+
+
+
+ + +
gerê
+
+ + + + +Bein +leg +jambe + + + + +
tl
+
+
Bein
+
+
jambe
+
+
leg
+
+ +
0063
+
+
+ + + +Fuß +foot +pied + + +
tl
+
+
foot
+
+
Fuß
+
+
pied
+
+ +
0070
+
+
+ + + +Oberschenkel +thigh +cuisse + + +
tl
+
+
cuisse
+
+
Oberschenkel
+
+
thigh
+
+ +
0065
+
+
+ + + +Grund +root cause +origine + + +
ek
+
+
Grund
+
+
origine
+
+
+
+ + +
särängö yê kîrîkiri
+
+ + + + +Ungeschicklichkeit +clumsiness +maladroit, empoté + +
mle-2703
+
+
+
+ + +
tî âmbênî
+
+ + + + + + + + +manchmal +sometimes +quelquefois, parfois + +
Lâ kûê ï sâra kusâla me tî âmbênî ï sâra pëpe ndâli tî kobêla.
+ +
Usually we work but sometimes we don't work because of sickness.
+
+
+ + +
tl
+
+
manchmal
+
+
quelquefois, parfois
+
+
sometimes
+
+ +
1360
+
+
+
+ + +
zîa kûngbâ na yâ tî ...
+
+ + + + + + + + + + + + +laden +load +charger + + +
tl
+
+
charger
+
+
laden
+
+
load
+
+ + +
0864
+
+
+ + + +einpacken +wrap up +envelopper + + +
tl
+
+
einpacken
+
+
envelopper
+
+
wrap up
+
+ +
0648
+
+
+
+ + +
nyïndû
+
+ + + + + + + +Waise +orphan +orphelin + + +
tl
+
+
orphan
+
+
orphelin
+
+
Waise
+
+ +
0373
+
+
+
+ + +
sâki
+
+ + + + +tausend (1000) +thousand (1000) +mille (1000) + + +
ek
+
+
mille (1000)
+
+
tausend (1000)
+
+
thousand (1000)
+
+ +
1622
+
+
+
+ + +
gerê tî (bâgara)
+
+ + + + +Huf +hoof +sabot + + +
1032
+
+
+
+ + +
Finî Ngû
+
+ + + + + + + + +Neujahr +New Year's Day +Nouvel An + + +
ek
+
+
Neujahr
+
+
+
+ + +
bâa-yê
+
+ + + + +Zeuge +witness +témoin + +
i-993
+
+
+
+ + +
mû dawä tî
+
+ + + + + + + + + + + +entgegen gehen +go to meet +aller à la rencontre + + +
ek
+
+
entgegen gehen
+
+
+ + + +willkommen heißen +welcome +accueillir + + +
ek
+
+
accueillir
+
+
welcome
+
+
willkommen heißen
+
+
+
+ + +
kêre
+
+ + + + +Angina, Halsschmerzen +sore throat +angine + + +
ek
+
+
Angina, Halsschmerzen
+
+
angine
+
+
+
+ + +
kundi
+
+ + + + +Harfe +harp +harpe arquée + + +
ek
+
+
Harfe
+
+
harp
+
+
+ + + +Muschel (Musikinstrument) +shell (musical instrument) +coquille (instrument de musique) + + +
tl
+
+
coquille (instrument de musique)
+
+
Muschel (Musikinstrument)
+
+
shell (musical instrument)
+
+ +
0893
+
+
+
+ + +
sâra yê a bâa a tene
+
+ + + + + + + + + + + + + + + + + + + + +so tun, als ob +pretend +faire semblant + + +
tl
+
+
faire semblant
+
+
pretend
+
+
so tun, als ob
+
+ +
0299
+
+
+
+ + +
fängö yê na âwâlï
+
+ + + + + + + + + + + + + + + + +Initiierung (weiblich) +initiation (female) +initiation (femmes) + + +
tl
+
+
initiation (female)
+
+
initiation (femmes)
+
+
Initiierung (weiblich)
+
+ +
0938
+
+
+
+ + +
fa tënë
+
+ + + + + + + + + + + +predigen +preach +prêcher + + + + +
ek
+
+
preach
+
+
prêcher
+
+
predigen
+
+
+
+ + +
nëngö
+
+ + +
nɛ.ngɔ
+ +
2.2
+
+
+ + + +Wert +worth +valeur + + + +
ek
+
+
valeur
+
+
Wert
+
+
worth
+
+
+ + + +respekt +respect +respect + + + + +Gewicht +weight +poids + + +
ek
+
+
Gewicht
+
+
poids
+
+
weight
+
+ +
i-872
+
+
+
+ + +
salëtë
+
+ + + + +Schmutz +dirt +saleté + + +
ek
+
+
dirt
+
+
saleté
+
+
Schmutz
+
+
+
+ + +
këkë-wâ
+
+ + + + + + + + + + + + +Holzscheit, Brennholz +firewood +bois de chauffe + + +
tl
+
+
bois de chauffe
+
+
firewood
+
+
Holzscheit, Brennholz
+
+ +
0714
+
+
+
+ + +
ndo sô âzo ayeke fâ ngû daä na gerê
+
+ + + + + + + + + + + + + + +Furt +ford +gué + + +
1297
+
+
+
+ + +
bozobozo
+
+ + +
bɔ.zɔ.bɔ.zɔ
+ +
1.1.1.1
+
+
+ + + +Schwarm +swarm +essaim + + +
tl
+
+
essaim
+
+
Schwarm
+
+
swarm
+
+ +
1157
+
+
+
+ + +
gue tî bâa
+
+ + + + + + + + + + + +jemanden besuchen (gehen) +go for a visit +aller voir + + +
ek
+
+
jemanden besuchen (gehen)
+
+
+
+ + +
lûmbâlumba
+
+ + + + +intensiv, heftig +intense (be) +intense (être) + + +
ek
+
+
intense
+
+
intense
+
+
intensiv, heftig
+
+
+ +jubelnd +jubilant (be) +en liesse (être) + + +
ek
+
+
jubelnd
+
+
jubilant
+
+
+
+ + +
maseka
+
+ + +
Can be used of animals.
+
+ + + +junges Mädchen, junger Mann +young person +jeune + + + + +
ek
+
+
jeune
+
+
junges Mädchen, junger Mann
+
+
young person
+
+ + +
0338
+
+
+ + + +jung (sein) +young (be) +jeune (être) + +
Makönzi maseka sô akpîngba pëpe.
+ +
This young chief isn't mature yet.
+
+
+ + +
tl
+
+
(être) jeune
+
+
jung (sein)
+
+
young
+
+ +
0246
+
+
+
+ + +
na dawä
+
+ + + + + + + + +vorwärts (Richtung) +forward (direction) +en avant + +
Lêgë ayo. Zîa ï hön na dawä.
+ +
The road is long. Let us go forward.
+
+
+ + +
tl
+
+
en avant
+
+
forward (direction)
+
+
vorwärts (Richtung)
+
+ +
1664
+
+
+
+ + +
gbîanngbi
+
+ + + + +umtausch +exchange +échanger + +
jl, lb, gfk-d
+
+ +
mle-1695
+
+
+
+ + +
mbököngö li
+
+ + + + + + + + + + + + +glatzköpfig (sein), eine Glatze haben +bald (be) +chauve (être) + +
Mbököngö li tî lo afa na gîgî lo yeke mbäkôro mîngi.
+ + +
+ + +
tl
+
+
(être) chauve
+
+
bald
+
+
glatzköpfig (sein), eine Glatze haben
+
+ + +
0190
+
+
+
+ + +
mbere
+
+ + + + +Bund +alliance +alliance + + +
ek
+
+
alliance
+
+
alliance
+
+
Bund
+
+
+ + + +Ritualessen +ritual meal +repas rituel + + +
ek
+
+
Ritualessen
+
+
+
+ + +
yingö
+
+ + + + + + + +Geist +spirit +esprit, ombre + + + + +
tl
+
+
esprit, ombre
+
+
Geist
+
+
spirit
+
+ + +
0910
+
+
+ + + +Seele +soul +âme + + +
tl
+
+
âme
+
+
Seele
+
+
soul
+
+ + +
0910
+
+
+
+ + +
sâra li
+
+ + + + + + + + + + + + +(Haare) flechten +plait, braid (hair) +tresser (les cheveux) + + +
tl
+
+
(Haare) flechten
+
+
plait, braid (hair)
+
+
tresser (les cheveux)
+
+ +
0558
+
+
+
+ + +
yeke na ndarä
+
+ + + + + + + + + + +weise (sein) +wise (be) +sage (être) + +
Âmbäkôro zo ayeke na ndärä mîngi.
+ +
Old people are very wise.
+
+
+ + +
tl
+
+
(être) sage
+
+
weise (sein)
+
+
wise
+
+ +
0258
+
+
+
+ + +
ngû-îngö
+
+ + + + + + + + +Meer +ocean, sea +océan, mer + + +
ek
+
+
Meer
+
+
mer
+
+
sea
+
+ +
1285
+
+
+
+ + +
môlengê tî taba
+
+ + + + + + +Lamm +lamb +agneau + +
agneau
+
+
lamb
+
+
Lamm
+
+ +
0972
+
+
+
+ + +
petoröo
+
+ + + + + + + +Kerosin, Petroleum +kerosene, paraffin +pétrole +
Kerosin, Petroleum
+
+
pétrole
+
+
+
+ + +
kâsa
+
+ + + + +Gemüse oder Fleisch-Soße, +sauce with vegetables or meat +sauce, mets, + + + + +
ek
+
+
Gemüse oder Fleisch-Soße,
+
+
+ + + +Fleisch +meat +viande + + +
tl
+
+
Fleisch
+
+
meat
+
+
viande
+
+ + +
0570
+
+
+
+ + +
süküngö yê
+
+ + + + + + + + + + + + +Schwellung +swelling +enflure + + +
tl
+
+
enflure
+
+
Schwellung
+
+
swelling
+
+ +
0213
+
+
+ + + +Tumor +tumour +tumeur + + +
tl
+
+
tumeur
+
+
Tumor
+
+
tumour
+
+ +
0214
+
+
+
+ + +
nganda
+
+ + + + +Imbissstand, Bar +refreshment stand +buvette + + +
ek
+
+
buvette
+
+
Imbissstand, Bar
+
+
+
+ + +
ngîri
+
+ + +tabu (sein) +taboo (be) +interdit, tabou (être) + +
A lîngbi ï te kôbe sô pëpe. A yeke ngîri ti mara ti ï.
+ +
We must not eat that food. It is taboo for our tribe.
+
+
+ + +
tl
+
+
(être) interdit, tabou
+
+
taboo
+
+
tabu (sein)
+
+ +
0927
+
+
+ + + +Totemtier +totem animal +animal totem +
Totemtier
+
+
+
+ + +
mamîwatâ
+
+ + +
mamîwäta
+ +
+ + + +Wassergeist, Wassermann +water spirit +génie des eaux + + +
ek
+
+
Wassergeist, Wassermann
+
+
+ +genie +genie, spirit +génie + +
i-466
+
+
+
+ + +
wawängö
+
+ + + + +Berater +counselor +conseiller + + +
ek
+
+
Berater
+
+
conseiller
+
+
counselor
+
+
+
+ + +
kêtê tênë tî nëkängö na yê
+
+ + + + + + + + + + + + + + + + + + + + +Oberer Reibstein, Oberer Malstein +upper grinding stone +meule supérieure + + +
tl
+
+
meule supérieure
+
+
Oberer Reibstein, Oberer Malstein
+
+ + +
0617
+
+
+
+ + +
gbô
+
+ + + + + +
gbo
+ +
3
+
+
+ + + +halten +hold +tenir + + +
ek
+
+
halten
+
+
hold
+
+
tenir
+
+ +
1426
+
+
+ + + +nehmen +take +prendre + + +
ek
+
+
nehmen
+
+
prendre
+
+
take
+
+ +
1422
+
+
+
+ + +
zî sïönî na li tî ...
+
+ + + + +verzeihen +pardon, forgive +pardonner + +
& i-745
+
+ +
mle-3434
+
+
+
+ + +
kadâ
+
+ + + + +Eidechse +lizard +lézard + + +
tl
+
+
Eidechse
+
+
lézard
+
+
lizard
+
+ +
1100
+
+
+
+ + +
ne
+
+ + +
+ +
1
+
+
+ + + +wiegen +weigh +peser + + +
ek
+
+
peser
+
+
weigh
+
+
wiegen
+
+
+ + + +langsam (sein) +slow (be) +lent (être) + + +
tl
+
+
(être) lent
+
+
langsam (sein)
+
+
slow
+
+ +
1420
+
+
+ + + +schwer (sein) +heavy (be) +lourd (être) +
(être) lourd
+
+
heavy
+
+
schwer (sein)
+
+ +
1534
+
+
+ + + +wert (sein) +worth, valid (be) +valoir, valable (être) + + +
ek
+
+
wert (sein)
+
+
+ + + +ehren +honor +honorer + + +
ek
+
+
ehren
+
+
honorer
+
+
respect
+
+ +
0283
+
+
+
+ + +
kûndû
+
+ + + + +Bastrock für traditionelle Tänze +grass skirt for traditional dances +jupe pour les danses traditionnelles + + +
ek
+
+
Bastrock für traditionelle Tänze
+
+
+
+ + +
wangangü
+
+ + + + +starke Person +strong person +personne forte + + +
ek
+
+
starke Person
+
+
+
+ + +
terê tî hötö sô ayo na ndüzü
+
+ + + + + + + + + + + + + + + + + + + + +Klippe, Felswand +cliff +falaise + + +
tl
+
+
cliff
+
+
falaise
+
+
Klippe, Felswand
+
+ + +
1264
+
+
+
+ + +
nika
+
+ + + + +mahlen, zerreiben +grind, crush +écraser + + +
tl
+
+
écraser
+
+
grind, crush
+
+
mahlen, zerreiben
+
+ +
1457
+
+
+
+ + +
na dawä tî
+
+ + + + + + + + +vor +in front of, before +devant + +
Drapeau ayeke na dawä ti da tî makönzi.
+ +
A flag is in front of the chief's house.
+
+
+ + +
tl
+
+
devant
+
+
in front of, before
+
+
vor
+
+ +
1670
+
+
+
+ + +
+
+ + + + +tief (sein) +deep (be) +profond (être) + +
Alîngbi tî fâ ngû nî na gerê pëpe tëtî alï mîngi.
+ + +
+ + +
tl
+
+
(être) profond
+
+
deep
+
+
tief (sein)
+
+ + +
1522
+
+
+
+ + +
ködörö
+
+ + + + + +
kɔ.dɔ.ɾɔ
+ +
2.2.2
+
+
+ + + +Dorf +village +village + +
gue na ködörö.
+ +
heimgehen
+
go home
+
rentrer chez soi
+
+
+ + +
ek
+
+
Dorf
+
+
village
+
+
village
+
+ + +
0533
+
+
+ + + +Stadt +city +ville + + +
ek
+
+
city
+
+
Stadt
+
+
ville
+
+ + +
0532
+
+
+ + + +Region +region +région + + + + +Land +country +pays + + +
tl
+
+
country
+
+
Land
+
+
pays
+
+ + +
0530
+
+
+
+ + +
+
+ + +
???
+
+ + + +zusammenhäufen +gather +mettre en tas + + +
ek
+
+
gather
+
+
mettre en tas
+
+
zusammenhäufen
+
+ +
0647
+
+
+
+ + +
gbe-dê
+
+ + + + + + + + + + + + +im Schatten +in the shade +ombre + + +
ek
+
+
im Schatten
+
+
ombre
+
+
+ + + +Schatten +shadow +ombre + + +
& i-713
+
+ +
tl
+
+
ombre
+
+
Schatten
+
+
shadow
+
+ +
1350
+
+
+
+ + +
yeke na nzönî bê
+
+ + +
Originally: (yeke) nzönî bê
+
+ + + + + +freundlich, nett (sein) +kind (be) +gentil, bon (être) + +
Lo yeke na nzönî bê. Lo mü mabôko na azo mîngi.
+ +
He is kind. He helps many people.
+
+
+ + +
tl
+
+
(être) gentil, bon
+
+
freundlich, nett (sein)
+
+
kind
+
+ +
0300
+
+
+
+ + +
batême
+
+ + + + +Taufe +baptism +baptême + + +
ek
+
+
baptême
+
+
baptism
+
+
Taufe
+
+
+
+ + +
na bê tî
+
+ + + + + + + + +in der Mitte von +in the middle of +au milieu de + +
Âla kôro zûsuka âla sï na bê tî këkë nî.
+ +
They drilled until they reached the middle of the tree.
+
+
+ + +
ek
+
+
in der Mitte von
+
+
+
+ + +
bôngbi tî âtaba
+
+ + + + + + + + + + + + +Herde (Schafe, Ziegen) +flock (of sheep, goats) +troupeau (de moutons, de chèvres) + + +
tl
+
+
flock (of sheep, goats)
+
+
Herde (Schafe, Ziegen)
+
+
troupeau (de moutons, de chèvres)
+
+ + +
0973
+
+
+
+ + +
kûkulû
+
+ + + + + + + +Papagei +parrot +perroquet + + +
ek
+
+
Papagei
+
+
parrot
+
+
perroquet
+
+ +
1045
+
+
+
+ + +
lîngbi tî dü pëpe
+
+ + + + + + + + + + +unfruchtbar +infertile, barren (be) +stérile (être) + +
Azî da tî môlengê. Lo lîngbi tî dû pëpe.
+ +
Her uterus was removed. She is infertile.
+
+
+ + +
tl
+
+
(être) stérile
+
+
infertile
+
+
unfruchtbar
+
+
+
+ + +
sôn
+
+ + + + + +
sɔ̰
+ +
3
+
+
+ + + +schlagen, verhauen +hit, spank +frapper, corriger + + +
ek
+
+
schlagen, verhauen
+
+
+
+ + +
nguru
+
+ + + + + + + +umgehen, herumgehen +go around +contourner + + +
ek
+
+
contourner
+
+
go around
+
+
umgehen, herumgehen
+
+ +
1406
+
+
+ + + +umgeben, einkreisen +surround +encercler + + +
ek
+
+
encercler
+
+
surround
+
+
umgeben, einkreisen
+
+
+ + + +Sport +sport +sport + + +
ek
+
+
sport
+
+
sport
+
+
Sport
+
+
+
+ + +
tere
+
+ + + + +Spinne +spider +araignée + + +
tl
+
+
araignée
+
+
spider
+
+
Spinne
+
+ +
1127
+
+
+
+ + +
pümbä
+
+ + + + +Feier +celebration, feast +fête, festin + + +
tl
+
+
celebration, feast
+
+
Feier
+
+
fête, festin
+
+ + +
0581
+
+
+ + + +Fest, Feier, Festessen, Festmahl +feast +fête, festin + + + +
0933
+
+
+
+ + +
kangba
+
+ + + + +erwachsen, Greis(in) +old man, old woman +vieux, vieille + +
Lo yeke na ngû mîngi. Lo gä kangba kôlï awe.
+ +
He has lived for many years. He has become an old man.
+
+
+ + +
ek
+
+
erwachsen, Greis(in)
+
+ +
0340
+
+
+ + + +Ältester +elder +ancien + + +
tl
+
+
Ältester
+
+
ancien
+
+
elder
+
+ +
0393
+
+
+ + + +Erwachsener +adult +adulte + + +
tl
+
+
adult
+
+
adulte
+
+
Erwachsener
+
+ + +
0337
+
+
+
+ + +
bâa pâsi
+
+ + + + + + + + +leiden +suffer +souffrir + + + + +
tl
+
+
leiden
+
+
souffrir
+
+
suffer
+
+ +
0321
+
+
+
+ + +
mayëre
+
+ + +
mayële
+ +
+ + + +Gewohnheit, Art +habit, tricks +habitude, manière + + +
ek
+
+
Gewohnheit, Art
+
+ +
i-499
+
+
+ + + +Verhalten, Weg, Intelligenz, fertigkeit +knowledge, manner, intelligence, skill, attribute +façon d'agir, manière, intelligence, habileté, qualité +
Verhalten, Weg, Intelligenz
+
+ +
i-840
+
+
+
+ + +
kilometre
+
+ + +
ki.lɔ.mɜ.trɛ
+ +
1.1.2.1
+
+
+ + + +Kilometer +kilometer +kilomètre + +
+ + +
na sïgïngö tî lâ
+
+ + + + + + + + + + + + +Sonnenaufgang +sunrise +lever du soleil + +
Tîtene î sï na taâ ngbonga nî, alîngbi ï löndö na sïgïngö tî lâ.
+ +
In order to arrive on time, we must leave at sunrise.
+
+
+ + +
tl
+
+
lever du soleil
+
+
Sonnenaufgang
+
+
sunrise
+
+ +
1377
+
+
+
+ + +
gberê
+
+ + + + + + + +Gecko +gecko +gecko + + +
tl
+
+
gecko
+
+
gecko
+
+
Gecko
+
+ +
1103
+
+
+
+ + +
sâla
+
+ + + + + + + +machen, fabrizieren +do, create +faire, créer + + +
ek
+
+
machen, fabrizieren
+
+
+ + + +Bewegung +movement +mouvement + + +
ek
+
+
Bewegung
+
+
mouvement
+
+
movement
+
+ +
1398
+
+
+
+ + +
dïköngö-mbëtï
+
+ + + + +Lesen, Lesung +reading +lecture + + +
ek
+
+
lecture
+
+
Lesen, Lesung
+
+
reading
+
+
+
+ + +
pâta ngbangbo
+
+ + + + + + + + +fünf hundert Franken +five hundred francs +cinq cent francs + + +
ek
+
+
fünf hundert Franken
+
+
+
+ + +
môlengê tî mbo
+
+ + + + + + + + + + + + +Welpe +pup +chiot + + +
tl
+
+
chiot
+
+
pup
+
+
Welpe
+
+ +
0992
+
+
+
+ + +
da tî kânga
+
+ + + + + + + + + + + +Gefängnis +prison +prison + + +
ek
+
+
Gefängnis
+
+
prison
+
+
prison
+
+
+
+ + +
gï ... ôko
+
+ + + + + + + + + + + +nur +only +seulement + +
Gï ndo ôko angbâ.
+ +
Only one place remains.
+
Seulement une place reste.
+
+
+
+
+ + +
gbânî
+
+ + + + +viel +a lot +beaucoup + +
Âwâlï gbâni gbâni ague na garâ.
+ +
Lots and lots of women went to the market.
+
Beaucoup de femmes sont allées au marché.
+
+
+ + +
ek
+
+
beaucoup
+
+
viel
+
+
+
+ + +
ngambe
+
+ + + + +jüngerer Bruder oder jüngere Schwester +younger sibling +cadet, cadette + + +
ek
+
+
jüngerer Bruder oder jüngere Schwester
+
+
+
+ + +
pörö tî nyama
+
+ + + + + + + + + + + + +Tierhaut +hide (of animal) +peau (d'animal) + + +
tl
+
+
hide (of animal)
+
+
peau (d'animal)
+
+
Tierhaut
+
+ +
1026
+
+
+ + + +Leder +leather +cuir + +
i-264
+
+
+
+ + +
yeke na mosoro
+
+ + + + + + + + + + +reich (sein) +rich (be) +riche (être) + +
Lo vo finî kutukutu tëtî lo yeke na mosoro mîngi.
+ +
He bought a new car since he is rich.
+
+
+ + +
tl
+
+
(être) riche
+
+
reich (sein)
+
+ +
0815
+
+
+
+ + +
bângi
+
+ + + + + + + +Marihuana, Haschisch +marijuana +chanvre indien + + +
ek
+
+
Marihuana, Haschisch
+
+
marijuana
+
+
+
+ + +
ngbondâ
+
+ + +
??? may be used pejoratively for female genitalia. See LB as a new sense = *3
+
+ +
ngbo.nda
+ +
1.3 / 1.2 [lb]
+
+
+ + + +Gesäß +buttocks +fesses + + +
tl
+
+
buttocks
+
+
fesses
+
+
Gesäß
+
+ +
0044
+
+
+
+ + +
môlengê tî kôndo
+
+ + + + + + + + + + + + +Küken +chick +poussin + + +
tl
+
+
chick
+
+
Küken
+
+
poussin
+
+ +
0977
+
+
+
+ + +
yeke na gbenî
+
+ + +
na gbe tî
+ +
+ + + + + + + +tief, unten (sein) +low (be) +bas (être) + +
Mbï yeke na ndüzü, lo yeke na gbenî.
+ +
I am above, he is below.
+
+
+ + +
tl
+
+
(être) bas
+
+
low
+
+
tief, unten (sein)
+
+ +
1512
+
+
+
+ + +
kpë tî li
+
+ + + + + + + + + + + + +Gehirn, Hirn +brain +cerveau + + +
tl
+
+
brain
+
+
cerveau
+
+
Gehirn, Hirn
+
+ +
0081
+
+
+
+ + +
wanguru
+
+ + + + +Sportler, Athlet +athlete +sportif, athlète + + +
ek
+
+
athlete
+
+
Sportler, Athlet
+
+
+
+ + +
bëkpä
+
+ + + + +Donner +thunder +tonnerre + + +
tl
+
+
Donner
+
+
thunder
+
+
tonnerre
+
+ +
1333
+
+
+
+ + +
ngû ayeke da
+
+ + + + + + + + + + +nass (sein) +wet (be) +mouillé (être) + +
Ngû ayeke da tëtî ngû tî Nzapä apîka.
+ +
It is wet because it rained.
+
+
+ + +
tl
+
+
(être) mouillé
+
+
nass (sein)
+
+
wet
+
+ +
1549
+
+
+
+ + +
kamâ porosö tî gbïä
+
+ + + + + + + + +Regierungspartei +party in power +parti au pouvoir + + + + +
ek
+
+
Regierungspartei
+
+
+
+ + +
yeke mbîrîmbîrî
+
+ + + + + + + + + + +gerade (sein) +straight (be) +droit (être) + +
Këkë nî ayeke mbîrîmbîrî bîanî. Aba kêtê pëpe.
+ +
The stick is truly straight. It is not even a bit curved.
+
+
+ +
(être) droit
+
+
gerade (sein)
+
+
straight
+
+ +
1530
+
+
+ +richtig (sein) +right (be) +juste, correct (être) + +
Wamändängö-mbëtï awara nzönî notes. Kïrïngö-tënë tî lo ayeke mbîrîmbîrî.
+ +
The student got good grades. His answers were right.
+
+
+ + +
ek
+
+
(être) juste, correct
+
+
richtig (sein)
+
+
right
+
+ +
1578
+
+
+ +ehrlich (sein) +honest (be) +honnête (être) + +
Tënë tî lo ayeke mbîrîmbîrî. Lo tene mvene pëpe.
+ +
His word is honest. He does not lie.
+
+
+ + +
tl
+
+
(être) honnête
+
+
ehrlich (sein)
+
+
honest
+
+ +
0303
+
+
+ +gerecht (sein) +fair, just (be) +juste (être) + +
Kötä zo nî ayeke mbîrîmbîrî. Lo fûta âzo na lêgë nî.
+ +
The boss is fair. He pays well.
+
+
+
(être) juste
+
+
fair, just
+
+
gerecht (sein)
+
+ +
0521
+
+
+
+ + +
kêsi
+
+ + + + +Auschecken +box +caisse +
Auschecken
+
+
box
+
+
caisse
+
+
+
+ + +
lîtere
+
+ + + + +Liter +liter +litre + + +
ek
+
+
liter
+
+
Liter
+
+
litre
+
+
+
+ + +
tokua
+
+ + +
to.kwa
+ +
1.1
+
+
+ + + +senden +send +envoyer + + +
tl
+
+
envoyer
+
+
send
+
+
senden
+
+ +
0858
+
+
+ + + +(jemand) schicken +send (someone to do something) +envoyer en commission + + +
tl
+
+
(jemand) schicken
+
+
envoyer en commission
+
+
send (someone to do something)
+
+ +
0500
+
+
+ + + +Nachricht +message +message + + +
ek
+
+
message
+
+
message
+
+
Nachricht
+
+
+ + + +Auftrag +errand, duty, mission +commission + + +
ek
+
+
Auftrag
+
+
commission
+
+
errand
+
+ +
i-205
+
+
+
+ + +
hündängö ndo
+
+ + + + + + + + + + + + +Frage +question +question + + +
ek
+
+
Frage
+
+
question
+
+
question
+
+
+
+ + +
+
+ + + + +kalt (sein) +cold (be) +froid (être) + +
Ngû nî asïgîgî na frigô gï fadësô, adë dëngö.
+ +
The water just came out of the fridge. It is very cold.
+
+
+ + +
ek
+
+
(être) froid
+
+
cold
+
+
kalt (sein)
+
+ +
1553
+
+
+ + + +haben ruhig (sein) +calm (be) +calme (être) + +
Mamâ akîri na terê tî môlengê. Bê tî môlengê nÎ adë dëngö.
+ +
Mother returned to the child's side. He is calm.
+
+
+ +
Lê tî ngû nî adë, ï lîngbi tî fâ ngû nî sêngê.
+ +
The surface of the water is calm. We can cross without trouble.
+
+
+ + +
ek
+
+
haben ruhig (sein)
+
+ +
mle-0728
+
+
+ + + +schüchtern (sein) +shy (be) +timide (être) +
(être) timide
+
+
schüchtern (sein)
+
+
shy
+
+ +
0308
+
+
+
+ + +
leke yângâ nî azä
+
+ + + + + + + + + + + + +schärfen (Messer) +sharpen (knife) +aiguiser (couteau) + + +
tl
+
+
aiguiser (couteau)
+
+
schärfen (Messer)
+
+
sharpen (knife)
+
+ +
1538
+
+
+
+ + +
lâkûê
+
+ + + + + + + + + + + + +immer +always +toujours + +
Lâkûê ï gue na dûngu tî tö ngû.
+ +
We always go to the well to draw water.
+
+
+ + +
tl
+
+
always
+
+
immer
+
+
toujours
+
+ +
1363
+
+
+ + + +unablässig +constant +constant, incessant + +
mle-1060
+
+
+
+ + +
tâboröo
+
+ + + + + +
ta.bo.roo
+ +
3.1.21 / 1.1.21 [lb]
+
+
+ + + +Wandtafel +chalkboard +tableau noir + + +
ek
+
+
chalkboard
+
+
Wandtafel
+
+
+
+ + +
terê nî
+
+ + + + + + + +Seite +side (of something) +le côté (de quelque chose) + + +
tl
+
+
le côté (de quelque chose)
+
+
Seite
+
+
side (of something)
+
+ +
1391
+
+
+
+ + +
kpëngbä bê
+
+ + +Mut +courage, bravery +courage + +
i-235
+
+
+
+ + +
mû ngo
+
+ + + + + + + + + + + +schwanger werden +conceive +concevoir + + +
ek
+
+
conceive
+
+
concevoir
+
+
schwanger werden
+
+
+
+ + +
mêzä
+
+ + + + +Tisch +table +table + + +
ek
+
+
table
+
+
table
+
+
Tisch
+
+
+
+ + +
li tî ... akpêngba
+
+ + + + + + +eigensinning (sein) +stubborn (be) +obstiné, têtu (être) + +
Li tî môlengê nî akpêngba, lo ke yângâ lâ kûê lâ kûê.
+ +
The child is stubborn, he always disobeys.
+
+
+ + +
ek
+
+
(être) obstiné, têtu
+
+
eigensinning (sein)
+
+
stubborn
+
+ +
0317
+
+
+ +dumm (sein) +stupid (be) +stupide (être) + +
Li tî âla akpêngba tëtî âla nzï yê lâ kûê lâ kûê zûsuka afutîi finî tî âla.
+ +
The are stupid because they are always stealing things until it ruins their lives.
+
+
+ + +
ek
+
+
(être) stupide
+
+
dumm (sein)
+
+
stupid
+
+ + +
0260
+
+
+
+ + +
kubû
+
+ + + + +Zimmer +room +chambre, pièce + + +
tl
+
+
chambre, pièce
+
+
room
+
+
Zimmer
+
+ +
0671
+
+
+ + + +Schlafzimmer +bedroom +chambre (à coucher) + + +
tl
+
+
bedroom
+
+
chambre (à coucher)
+
+
Schlafzimmer
+
+ +
0672
+
+
+
+ + +
mangbêrê
+
+ + + + +Maniokstange, In Blättern gekochter Maniok-Kloß +stick of manioc +bâton de manioc + + +
ek
+
+
Maniokstange, In Blättern gekochter Maniok-Kloß
+
+
+
+ + +
kötä mapö
+
+ + + + + + + + + + + + +Harmattan +harmattan +harmattan +
harmattan
+
+
harmattan
+
+
Harmattan
+
+
+
+ + +
môlengê tî îtä tî kôlï
+
+ + + + + + + + + + + + + + + + +Neffe +nephew +neveu + + +
tl
+
+
Neffe
+
+
nephew
+
+
neveu
+
+ +
0358
+
+
+
+ + +
ngbädä
+
+ + + + +Flöhe +fleas +poux des habits + + +
ek
+
+
fleas
+
+
Flöhe
+
+
+
+ + +
mbênî kêkerêke
+
+ + + + + + + + + + + + +übermorgen +day after tomorrow +après-demain + +
Fadë lo sï na Bangui mbênî kêkerêke.
+ +
He will reach Bangui the day after tomorrow.
+
+
+ + +
tl
+
+
après-demain
+
+
day after tomorrow
+
+
übermorgen
+
+ +
1374
+
+
+
+ + +
särängö lisorö tî kubû
+
+ + + + + + + + + + + + + + + + +Geschlechtsverkehr haben +copulate, have sexual intercourse +faire l'amour + + +
tl
+
+
copulate, have sexual intercourse
+
+
faire l'amour
+
+
Geschlechtsverkehr haben
+
+ + +
0487
+
+
+
+ + +
libanëe
+
+ + + + +Libanese +Lebanese +libanais + + +
ek
+
+
Lebanese
+
+
libanais
+
+
Libanese
+
+
+
+ + +
zî yê kûê na yâ nî
+
+ + + + +entleeren +empty +vider + +
mle-1602
+
+
+
+ + +
nge
+
+ + +
ŋgɛ
+ +
1
+
+
+ + + +dünn, mager (sein) +thin (person) (be) +mince (une personne) (être) + +
Kobêla asâra lo ngangü. Nî laâ lo nge.
+ +
He is very sick. On account of this he is thin.
+
+
+ + +
ek
+
+
(être) mince (une personne)
+
+
dünn, mager (sein)
+
+
thin (person)
+
+ +
0193
+
+
+ + + +abnehmen +lose weight +maigrir +
abnehmen
+
+
maigrir
+
+
+
+ + +
dû tî ngû
+
+ + + + + + + + + + + +Brunnen +well +puits + + +
tl
+
+
Brunnen
+
+
puits
+
+
well
+
+ +
0679
+
+
+
+ + +
fûru (mbênî zo)
+
+ + + + + + + + +jemand erpressen +blackmail someone +faire chanter quelqu'un + + +
ek
+
+
jemand erpressen
+
+
+
+ + +
mamâ tî ôtoro
+
+ + + + + + + + +Bienenkönigin +queen bee +reine des abeilles + + +
ek
+
+
abeille
+
+
bee
+
+
Biene
+
+
+
+ + +
längö sïönî
+
+ + + + + + + + + + + +Ehebruch +adultery +adultère + + +
ek
+
+
adultère
+
+
adultery
+
+
Ehebruch
+
+ +
0947
+
+
+
+ + +
kpöröngö tî ngû
+
+ + + + + +
Kim - check the second word
+
+
+ + + + +
Kim - check the second word
+
+
+ + + +Blase +bubble +bulle + + +
tl
+
+
Blase
+
+
bubble
+
+
bulle
+
+ +
1302
+
+
+
+ + +
zîa lêgë na
+
+ + + + + + + + + + + +zur Seite treten (für jemand den Weg freigeben) +make way for someone, move over +laisser passer quelqu'un + + +
ek
+
+
zur Seite treten (für jemand den Weg freigeben)
+
+
+
+ + +
hölëngö
+
+ + +
o.lɛ.ngɔ / u.lɛ.ngɔ
+ +
2.2.2
+
+
+ + + +trocken, getrocknet +dry, dried +sec, séché + +
hölëngö susu.
+ +
getrockneter Fisch.
+
dried fish
+
poisson séché
+
+
+ +
hölëngö vekë.
+ +
getrocknete Okra
+
dried okra
+
gombo séché
+
+
+ + +
ek
+
+
trocken, getrocknet
+
+
+
+ + +
kobêla tî wâ
+
+ + +
kobêla tî dê
+ +
+ + + + + + + + + + + +Fieber +fever +fièvre + + +
ek
+
+
fever
+
+
Fieber
+
+
fièvre
+
+ + +
0229
+
+
+ + + +Malaria +malaria +paludisme + + +
tl
+
+
malaria
+
+
Malaria
+
+
paludisme
+
+ + +
0228
+
+
+
+ + +
nzorôko tî ngunzä
+
+ + + + + + + + + + + + +grün +green +vert + +
Na gbe tî ngû, pêrë ayeke na nzorôko tî ngunzä.
+ +
In the rainy season, the grass is green.
+
+
+ + +
ek
+
+
green
+
+
grün
+
+
vert
+
+ +
1559
+
+
+
+ + +
sâra ta tî sêse
+
+ + + + +(ein Gefäss) töpfern +make (clay pot) +façonner (pot) + +
monino-066
+
+
+
+ + +
ta tî ngû
+
+ + + + + + + + + + + + +Wassertopf +pot (for water) +jarre (à eau) + + +
tl
+
+
jarre (à eau)
+
+
pot (for water)
+
+
Wassertopf
+
+ +
0612
+
+
+
+ + +
pîka yâ tî
+
+ + + + + + + + + + + + +dreschen +thresh, beat (grain) +battre (la céréale) + + +
tl
+
+
battre (la céréale)
+
+
dreschen
+
+
thresh, beat (grain)
+
+ +
0762
+
+
+
+ + +
bâa li
+
+ + + + + + + + +träumen +to dream +rêver + +
bâa li (tî lo) na ndö tî...
+ +
träumen von...
+
dream about...
+
rêver de...
+
+
+ + +
ek
+
+
rêver
+
+
träumen
+
+
+
+ + +
zî sïönî pêrë
+
+ + + + + + + + + + + + + + + + +jäten +weed +enlever les mauvaises herbes + + +
tl
+
+
enlever les mauvaises herbes
+
+
jäten
+
+
weed
+
+ +
0750
+
+
+
+ + +
dondö
+
+ + +
do.ndo
+ +
1.2
+
+
+ + + +Scheide +vagina +vagin + + +
tl
+
+
Scheide
+
+
vagin
+
+
vagina
+
+ +
0048
+
+
+
+ + +
leke tënë
+
+ + + + + + + + +übereinkommen +agree, make an arrangement +s'accorder, faire des arrangements + + +
ek
+
+
agree, make an arrangement
+
+
s'accorder, faire des arrangements
+
+
übereinkommen
+
+ +
0472
+
+
+ + + +Pläne machen, planen +make plans +faire des projets + + +
ek
+
+
Pläne machen, planen
+
+
+ + + +(einen Streit) schlichten, beilegen +resolve, settle (dispute) +résoudre, régler (une dispute) + + +
tl
+
+
(einen Streit) schlichten, beilegen
+
+
resolve, settle (dispute)
+
+
résoudre, régler (une dispute)
+
+ +
0513
+
+
+ + + +lösen +solve +résoudre + +
mle-4458
+
+
+
+ + +
mozoko
+
+ + +
???
+
+ + + +Musik +music +musique + + +
ek
+
+
music
+
+
Musik
+
+
musique
+
+ +
0878
+
+
+
+ + +
bi gbânda
+
+ + + + + + + +(ein Netz) auswerfen +cast (net) +lancer (filet) + +
mle-0771
+
+
+
+ + +
bê tî ... atene
+
+ + + + +vermuten +suspect +soupçonner (se douter de) + +
i-966
+
+
+
+ + +
yeke mbîlîmbîlî
+
+ + + + + + + + + + + + + +gerade (sein) +straight (be) +droit (être) + +
Këkë nî ayeke mbîlîmbîlî. Aba ôko pëpe.
+ +
The board is straight. It isn't curved.
+
+
+ + +
ek
+
+
(être) droit
+
+
gerade (sein)
+
+
straight
+
+ +
1530
+
+
+ +richtig (sein) +right (be) +juste, correct (être) + +
Nzapä afa ngbanga na lêgë nî. Lo yeke mbîlîmbîlî lâ kûê lâ kûê.
+ +
God judges justly. He is always right.
+
+
+ + +
ek
+
+
(être) juste, correct
+
+
richtig (sein)
+
+
right
+
+ +
1578
+
+
+ +ehrlich (sein) +honest (be) +honnête (être) + + + + + + +
ek
+
+
(être) honnête
+
+
ehrlich (sein)
+
+
honest
+
+ +
0303
+
+
+ +gerecht (sein) +fair, just (be) +juste (être) + + +
tl
+
+
(être) juste
+
+
fair, just
+
+
gerecht (sein)
+
+ +
0521
+
+
+
+ + +
akuka
+
+ + + + +Schimmel +mould +moisissure + + +
tl
+
+
moisissure
+
+
mould
+
+
Schimmel
+
+ +
0584
+
+
+
+ + +
mandako
+
+ + +
ma.nda.ko
+ +
1.1.1
+
+
+ + + +Wettkampf +contest +compétition + + +
ek
+
+
contest
+
+
Wettkampf
+
+
+ + + +Prüfung +exam +examen + + +
ek
+
+
exam
+
+
examen
+
+
Prüfung
+
+
+ + + +Prüfung +test +épreuve + + +
ek
+
+
épreuve
+
+
Prüfung
+
+
test
+
+
+
+ + +
kûngûrûbä
+
+ + + + +buckelige Person +hunchback +bossu + + +
tl
+
+
bossu
+
+
buckelige Person
+
+
hunchback
+
+ + +
0198
+
+
+
+ + +
lokpoto
+
+ + +
lɔ.kpɔ.tɔ
+ +
1.1.1
+
+
+ + + +einheimisches Bier; +local beer +bière locale + + +
ek
+
+
bière locale
+
+
einheimisches Bier
+
+ +
0588
+
+
+ + + +alkoholischer Brei +alcoholic porridge +bouillie alcoolisé + + +
ek
+
+
alkoholischer Brei
+
+
+
+ + +
buba yâ tî
+
+ + + + + + + + + + + + +unterbrechen, stören +disrupt +perturber + + +
ek
+
+
disrupt
+
+
perturber
+
+
unterbrechen, stören
+
+
+
+ + +
+
+ + + + +zuerst +first +d'abord + +
Mo te kôbe sï, na pekônî fadë ë fono fönöngö.
+ +
Eat first, afterwards we can wander around.
+
Mange d'abord, après nous pourrons flâner.
+
+
+ + +
ek
+
+
d'abord
+
+
zuerst
+
+
+ + + +und +and +et + +
ek
+
+
and
+
+
et
+
+
und
+
+
+ + + +so daß, sodaß, damit +so that, if +afin que + + +
ek
+
+
so daß, sodaß, damit
+
+
+ +welcher, welche, welches +who, which, that +que, qui + +
ek
+
+
welcher, welche, welches
+
+
+
+ + +
bara
+
+ + + + +(be-)grüßen +greet +saluer + + +
tl
+
+
(be-)grüßen
+
+
greet
+
+
saluer
+
+ +
0443
+
+
+
+ + +
pendere-wâlï
+
+ + +Junge Frau +young woman +jeune femme + + +
+ + +
toröo
+
+ + + +
from French trop
+
+
+ +
to.ɾoo
+ +
1.21
+
+
+ + + +viel +a lot +beaucoup + + +
ek
+
+
a lot
+
+
beaucoup
+
+
viel
+
+ +
1639
+
+
+ + + +zuviel +too much +trop + +
Mbï te kôbe toröo. Yâ tî mbï aso.
+ +
I ate too much. My stomach hurts.
+
+
+ + +
ek
+
+
trop
+
+
zuviel
+
+
+
+ + +
pïkängö lisorö
+
+ + + + +Gespräch +conversation +causerie + + +
i-146
+
+
+
+ + +
tênë tî nëkängö yê na ndönî
+
+ + + + + + + + + + + + + + + + +Mahlstein, unterer Mahlstein +grinding stone, inferior stone +pierre à moudre, meule inférieure + + +
tl
+
+
grinding stone, inferior stone
+
+
Mahlstein, unterer Mahlstein
+
+
pierre à moudre, meule inférieure
+
+ + +
0615
+
+
+ + + + + +
tl
+
+ + +
0616
+
+
+
+ + +
fängö ngbanga
+
+ + + + +Urteil +judgment +jugement + +
i-552
+
+
+
+ + +
höndëngö terê tî (... tî) kü ...
+
+ + + + +Hinterhalt +ambush +embuscade, guet-apens + +
mle-0252
+
+
+
+ + +
-wanî
+
+ + +selbst +-self +-même + +
ek
+
+
-même
+
+
selbst
+
+
-self
+
+
+
+ + +
bânde
+
+ + + + +(Wund-)verband +bandage +bande pour pansement + + +
ek
+
+
(Wund-)verband
+
+
bandage
+
+
+
+ + +
gi ndâ tî
+
+ + + + + + + + + + + + + + +suche den Grund dafür +seek the reason for +chercher la raison pour laquelle + +
+ + +
kôzo
+
+ + +
kɔ.zɔ / ko.zo
+ +
3.1
+
+
+ +erster (sein) +first (be) +premier (être) + + + + +
ek
+
+
(être) premier
+
+
erster (sein)
+
+
first
+
+ +
1623
+
+
+ + + +bevor +before +avant + +
Lo sï kôzo lâkûi,.
+ +
He arrived before nightfall.
+
+
+ + +
tl
+
+
avant
+
+
before
+
+
bevor
+
+ + +
1354
+
+
+
+ + +
maka tî ködörö
+
+ + + + + + + + + + + + +Grenze +border (of ethnic area) +frontière (de pays) + + +
tl
+
+
border (of ethnic area)
+
+
frontière (de pays)
+
+
Grenze
+
+ +
0531
+
+
+
+ + +
kpêngba awe
+
+ + + + + + + + + + +reif (sein) (Obst) +ripe (be) +mûr (fruit) (être) + +
Mângo nî akpêngba awe. Mo lîngbi tî te nî.
+ +
The mango is ripe. You may eat it.
+
+
+ + +
tl
+
+
(être) mûr (fruit)
+
+
reif (sein) (Obst)
+
+
ripe
+
+ +
1247
+
+
+
+ + +
walombë
+
+ + + + +Held(in) +hero, heroine +héros, héroïne + + +
ek
+
+
Held(in)
+
+ +
mle-2320
+
+
+
+ + +
ïrï tî ködörö
+
+ + + + + + + + +Nachname +last name +nom de famille + + +
ek
+
+
Nachname
+
+
+
+ + +
bôndo
+
+ + +
??? Doubt this word
+
+ +
bo.ndo
+ +
3.1
+
+
+ + + +mischen +mix +mélanger + + +
ek
+
+
mélanger
+
+
mischen
+
+
mix
+
+ +
0596
+
+
+ + + +versammeln +assemble +rassembler + +
+ + +
mû terê
+
+ + + + + + + + +heiraten +get married +se marier + + +
ek
+
+
get married
+
+
heiraten
+
+
se marier
+
+ +
0939
+
+
+ + + +gewissenhaft +conscientious, hard-working (be) +sérieux (être) + +
i-942
+
+
+
+ + +
linda ngû
+
+ + + + + + + + + + + + +sinken +sink +sombrer + + +
tl
+
+
sink
+
+
sinken
+
+
sombrer
+
+ +
1490
+
+
+
+ + +
höngö ndönî
+
+ + + + +Überschuss +excess +excès + +
mle-1693
+
+
+
+ + +
maka tî yäkä
+
+ + + + + + + + + + + + +Grenze +boundary (of field) +borne (d'un champ) + + +
tl
+
+
borne (d'un champ)
+
+
boundary (of field)
+
+
Grenze
+
+ +
0744
+
+
+
+ + +
tï gbûgbû
+
+ + + + + + + + +absichtlich fallen, um sich zu verletzen, während man trauert +fall intentionally to harm oneself while grieving +lamentation lors d'un deuil + + +
ek
+
+
absichtlich fallen, um sich zu verletzen, während man trauert
+
+
+
+ + +
na ngû sô ahûnzi
+
+ + + + + + + + + + + + + + + + + + + + +letztes Jahr +last year +année dernière + +
Na ngû sô ahûnzi, ë fâ kötä yäkä.
+ +
Last year, we made a large garden.
+
L'année dernière, nous avons fait un grand jardin.
+
+
+ +
mle-2749
+
+
+
+ + +
zî sïökpärï (na li) tî ...
+
+ + + + + + + + +verzeihen, vergeben +forgive, pardon +pardonner + + +
& i-745
+
+ +
ek
+
+
forgive
+
+
pardonner
+
+
verzeihen, vergeben
+
+ +
mle-3434
+
+
+
+ + +
fôrôrô
+
+ + + + + + +
???
+
+ + + +Trillerpfeife +whistle +sifflet + + + + +
ek
+
+
sifflet
+
+
Trillerpfeife
+
+
whistle
+
+
+
+ + +
yângâ tî ndeke
+
+ + + + + + + + + + + + +Schnabel +beak, bill +bec + + +
tl
+
+
beak, bill
+
+
bec
+
+
Schnabel
+
+ +
1060
+
+
+
+ + +
dë ngbanga
+
+ + + + + + + + + + + +verurteilen +judge +juger + + +
ek
+
+
judge
+
+
juger
+
+
verurteilen
+
+ +
0519
+
+
+
+ + +
yeke dê
+
+ + + + + + +kalt (sein) +cold (objects) (be) +froid (être) + +
Wâ amingo na gbe tî tawâ nî. Tawâ nî ayeke dê.
+ + +
+ + +
tl
+
+
(être) froid
+
+
cold (objects)
+
+
kalt (sein)
+
+ +
1553
+
+
+
+ + +
ndânî
+
+ + + + +Grund, Ursache +reason, cause +raison, cause + + + + +
ek
+
+
Grund, Ursache
+
+
+ + + +Bedeutung +meaning +signification + + +
ek
+
+
Bedeutung
+
+
meaning
+
+
signification
+
+
+
+ + +
girisa lêgë
+
+ + + + + + + + + + +verloren (sein) +lost (be) +perdu, égaré (être) + +
Ndo avûko, lo girisa legê.
+ +
It is dark. He is lost.
+
+
+ + +
tl
+
+
(être) perdu, égaré
+
+
lost
+
+
verloren (sein)
+
+ +
0846
+
+
+
+ + +
ngombï
+
+ + +
???
+
+ + + +Musik +music +musique + + +
tl
+
+
music
+
+
Musik
+
+
musique
+
+ +
0878
+
+
+
+ + +
gbongô
+
+ + + + + +
gbɔ.ngɔ
+ +
1.3
+
+
+ + + +Hyäne +hyena +hyène + + +
Crocuta crocuta
+
+ +
tl
+
+
Hyäne
+
+
hyena
+
+
hyène
+
+ +
1003
+
+
+
+ + +
lingö-zegbesa
+
+ + +
???
+ +
1.2.1.1.1
+
+
+ + + +Infektion +infection +infection + +
mle-2514
+
+
+
+ + +
ta tî basënzi
+
+ + + + + + + + + + + + +Kochtopf (Steingut) +cooking pot (earthenware) +marmite (en terre) + + +
tl
+
+
cooking pot (earthenware)
+
+
Kochtopf (Steingut)
+
+
marmite (en terre)
+
+ +
0610
+
+
+
+ + +
ngambe (tî wâlï)
+
+ + + + + + + + + + + + +jüngere Schwester +younger sister +sœur cadette + + + +
0347
+
+
+
+ + +
hûle
+
+ + + + + + + +trocknen +dry +sécher + + +
ek
+
+
dry
+
+
sécher
+
+
trocknen
+
+
+
+ + +
wakälä
+
+ + + + +Spion +spy +espion + + +
tl
+
+
espion
+
+
Spion
+
+
spy
+
+ +
0869
+
+
+
+ + +
füngö bongö
+
+ + + + + + + + +Näherei, Schneiderei +sewing +couture + + + + +
ek
+
+
couture
+
+
Näherei, Schneiderei
+
+
sewing
+
+
+
+ + +
kânga ndö tî
+
+ + + + + + + + + + + + +zudecken +cover +couvrir + + +
tl
+
+
couvrir
+
+
cover
+
+
zudecken
+
+ + +
0642
+
+
+
+ + +
môlengê tî mbârâtâ
+
+ + + + + + + + + + + + +Fohlen, Füllen +colt +poulain + + +
tl
+
+
colt
+
+
Fohlen, Füllen
+
+
poulain
+
+ +
0985
+
+
+
+ + +
usïö
+
+ + + + + + + +vier (4) +four (4) +quatre (4) + + +
ek
+
+
four (4)
+
+
quatre (4)
+
+
vier (4)
+
+ +
1593
+
+
+
+ + +
li tî bulêe
+
+ + +
Changed English gloss from "regime (of bananas)."
+
+ + + + + + + + + + + +Bananen-Büschel +bunch (of bananas) +régime (de bananes) + + +
tl
+
+
Bananen-Büschel
+
+
bunch (of bananas)
+
+
régime (de bananes)
+
+ +
1199
+
+
+
+ + +
en
+
+ + + + +ja, sicher +yes, sure +oui, certes + + +
tl
+
+
ja, sicher
+
+
oui, certes
+
+
yes, sure
+
+ +
1699
+
+
+
+ + +
längö na sêse
+
+ + + + + + + + + + + + +liegend (sein) +lie down +se coucher + + +
tl
+
+
lie down
+
+
liegend (sein)
+
+
se coucher
+
+ +
0152
+
+
+
+ + +
zëndo
+
+ + + + +Versprechen +promise +promesse + + +
tl
+
+
promesse
+
+
promise
+
+
Versprechen
+
+ +
0458
+
+
+ + + +Entscheidung +decision +décision + + +
ek
+
+
decision
+
+
décision
+
+
Entscheidung
+
+
+
+ + +
zekëzekë
+
+ + + + + + + +Rassel (Musikinstrument) +rattle (musical instrument) +hochet (instrument de musique) + + +
tl
+
+
hochet (instrument de musique)
+
+
Rassel (Musikinstrument)
+
+
rattle (musical instrument)
+
+ +
0894
+
+
+
+ + +
fâa tî mbênî yê sô ayeke sï ânde
+
+ + + + + + + + + + + + + + + + +Omen, Vorzeichen +omen +augure, présage + + +
tl
+
+
augure, présage
+
+
omen
+
+
Omen, Vorzeichen
+
+ + +
0917
+
+
+
+ + +
sënë
+
+ + + + +Wurm +worm +ver + + +
ek
+
+
ver
+
+
worm
+
+
Wurm
+
+
+
+ + +
kamaräde
+
+ + + + +Freund +friend +ami + + +
ek
+
+
ami
+
+
Freund
+
+
friend
+
+ +
0380
+
+
+
+ + +
li tî da
+
+ + + + + + + + +Dach +roof +toit + + + + +
tl
+
+
Dach
+
+
roof
+
+
toit
+
+ + +
0668
+
+
+
+ + +
kinda na sêse
+
+ + + + + + + + + + + + +niederreißen, umkippen +knock down, knock over (an object) +terrasser (un objet) + + +
tl
+
+
knock down, knock over (an object)
+
+
niederreißen, umkippen
+
+
terrasser (un objet)
+
+ +
1432
+
+
+
+ + +
yenga
+
+ + + + +Woche +week +semaine + + +
ek
+
+
semaine
+
+
week
+
+
Woche
+
+
+
+ + +
munzû
+
+ + + + + + + +Europäer, Weißer +European, white +européen, blanc + + +
tl
+
+
Europäer, Weißer
+
+
European, white
+
+
européen, blanc
+
+ +
0330
+
+
+
+ + +
gbägbä
+
+ + + + +Wanderameise, Heeresameise +army ant, soldier ant +fourmi soldat + + +
tl
+
+
army ant, soldier ant
+
+
fourmi soldat
+
+
Wanderameise, Heeresameise
+
+ +
1124
+
+
+
+ + +
vongbâ
+
+ + + + +Wildschwein +wild boar, wild pig +phacochère + + +
Phacochoerus aethiopicus
+
+ +
tl
+
+
phacochère
+
+
wild boar, wild pig
+
+
Wildschwein
+
+ +
1000
+
+
+
+ + +
kambûsu
+
+ + + + +Lendenschurz +loin covering +slip traditionnel + + +
ek
+
+
Lendenschurz
+
+
+
+ + +
lâme
+
+ + + + +Rasierer, Rasierklinge +razor +rasoir + + +
tl
+
+
Rasierer, Rasierklinge
+
+
rasoir
+
+
razor
+
+ +
0566
+
+
+
+ + +
gue kôgarâ
+
+ + + + + + + + + + + +für die Schwiegereltern eines Mädchens zu arbeiten, um um seine Hand anzuhalten +work for a girl's in-laws to ask for her hand in marriage +donner ses services aux parents d'une fille pour demander la main + +
sich durch Arbeit bei der Familie eines Mädchens das Recht erwerben, dieses zu heiraten
+
work for a girl's in-laws to ask for her hand in marriage
+
donner ses services aux parents d'une fille pour demander la main
+
+ + +
ek
+
+
für die Schwiegereltern eines Mädchens zu arbeiten, um um seine Hand anzuhalten
+
+
+
+ + +
zûsuka
+
+ + + + +bis, bis daß +until +jusqu'à + +
ek
+
+
bis, bis daß
+
+
jusqu'à
+
+
until
+
+
+
+ + +
gïngö
+
+ + +
gi.ngɔ
+ +
2.2
+
+
+ + + +suchen +search +recherche de quelque chose + + + + +
ek
+
+
search
+
+
suchen
+
+
+
+ + +
ngongoa
+
+ + + + + +
ngo.ngo.a
+ +
1.1.1
+
+
+ + + +Saatgut, Samen +seed +graine (pour semer) + + +
tl
+
+
graine (pour semer)
+
+
Saatgut, Samen
+
+
seed
+
+ + +
1202
+
+
+
+ + +
dë bê tî ...
+
+ + + + + + + + + + + + +sich beruhigen, besänftigen, befrieden +calm down, appease, pacify +se calmer, apaiser + + +
tl
+
+
calm down, appease, pacify
+
+
se calmer, apaiser
+
+
sich beruhigen, besänftigen, befrieden
+
+ + +
0516
+
+
+
+ + +
gbägbä tî lapärä
+
+ + + + + + + + +Flughafen +airport +aéroport + + + + +
ek
+
+
aéroport
+
+
airport
+
+
Flughafen
+
+
+
+ + +
sû lörö
+
+ + + + + + + + + + + +losrennen +start to run +mettre (se) à courir + + +
ek
+
+
losrennen
+
+
+
+ + +
sâra batême
+
+ + + + + + + + + + + +jemanden taufen +baptize someone +baptiser + + +
ek
+
+
baptiser
+
+
jemanden taufen
+
+
+ + + +getauft werden +baptized (be) +recevoir le baptême + + +
ek
+
+
getauft werden
+
+
+
+ + +
yê tî pëngö wâ tî ândao
+
+ + + + + + + + + + + + + + + + + + + + +Blasebalg +bellows +soufflet + + +
tl
+
+
bellows
+
+
Blasebalg
+
+
soufflet
+
+ + +
0708
+
+
+
+ + +
gbanza
+
+ + + + +Mais +corn, maize +maïs + + +
Zea mays
+
+ +
tl
+
+
corn, maize
+
+
Mais
+
+
maïs
+
+ +
1232
+
+
+
+ + +
nzêne nzêne
+
+ + + + + + +verschiedene +diverse +divers + + +
ek
+
+
divers
+
+
diverse
+
+
verschiedene
+
+
+ +kleine +little +petit + +
Lo lï na yâ tî ânzêne nzêne tënë.
+ +
He entered into all the details.
+
Il est entré dans les détails.
+
+
+ + +
ek
+
+
kleine
+
+
little
+
+
petit
+
+ +
1509
+
+
+
+ + +
gue na gbenî
+
+ + + + + + + + + + + + +vertiefen +deepen +approfondir + + +
tl
+
+
approfondir
+
+
deepen
+
+
vertiefen
+
+ +
1523
+
+
+
+ + +
asïgîgî (gbikï)
+
+ + + + + + + + + + + + +schwitzen +perspire, sweat +transpirer, suer + +
Gbikï asïgîgî mîngi na terê tî lo tëtî lo sâra kusâla ahôn ndönî!
+ +
He is sweating all over because he worked too much!
+
+
+ + +
tl
+
+
perspire, sweat
+
+
schwitzen
+
+
transpirer, suer
+
+ + +
0123
+
+
+
+ + +
likünü
+
+ + + + +Knie +knee +genou + + +
tl
+
+
genou
+
+
knee
+
+
Knie
+
+ +
0066
+
+
+
+ + +
fa tënë na
+
+ + + + + + + + +informieren +inform +informer + + + + +
ek
+
+
inform
+
+
informer
+
+
informieren
+
+
+
+ + +
pôndi
+
+ + + + + +
???
+
+ + + +Nagel +nail +pointe, clou + + +
tl
+
+
clou
+
+
Nagel
+
+
nail
+
+ +
0724
+
+
+
+ + +
dîko mbëtï
+
+ + + + +lesen +read +lire + + +
ek
+
+
lesen
+
+
lire
+
+
read
+
+
+
+ + +
pekô tî (gerê tî) (zo)
+
+ + + + + + + + + + + + + + + + +Fußabdruck, Fußspuren (Mensch) +footprint (human) +empreinte (de pied d'homme) + + +
tl
+
+
empreinte (de pied d'homme)
+
+
footprint (human)
+
+
Fußabdruck, Fußspuren (Mensch)
+
+ +
0779
+
+
+
+ + +
gbôkôrâ
+
+ + +
gbo.ko.ɾa
+ +
3.3.3
+
+
+ + + +Kichererbsen +Bambara groundnut (Voandzeia subterranea) +pois de terre + +
Kichererbsen
+
chickpeas
+
pois de terre
+
+ + +
ek; pn
+
+
Kichererbsen
+
+
+
+ + +
mbâ
+
+ + + + +Freund +friend +ami + + +
ek
+
+
ami
+
+
Freund
+
+
friend
+
+ +
0380
+
+
+ + + +Kollege +colleague +compatriote + + +
ek
+
+
colleague
+
+
compatriote
+
+
Kollege
+
+
+
+ + +
ngôbo
+
+ + +
ngɔ.bɔ
+ +
3.1
+
+
+ + + +Brauch +custom, tradition +coutume + + +
ek
+
+ +
0932
+
+
+ + + +Angewohnheit, Gewohnheit, Beschaffenheit +habit +habitude + + +
i-499
+
+
+ + + +Methode +method +méthode + + +
ek
+
+
method
+
+
Methode
+
+
méthode
+
+
+
+ + +
mbârâtâ
+
+ + + + +Pferd +horse +cheval + + +
ek
+
+
cheval
+
+
horse
+
+
Pferd
+
+ +
0982
+
+
+
+ + +
bê tî ... apîka
+
+ + + + + + +haben vor Angst +heart pounding with fear +avoir peur + + +
ek
+
+
haben vor Angst
+
+
+
+ + +
finî môlengê
+
+ + + + + + + + + + + +Kleinkind +baby +bébé + + +
ek
+
+
baby
+
+
bébé
+
+
Kleinkind
+
+ +
0332
+
+
+
+ + +
ngömbâyä
+
+ + + + + +
ngo.mba.ya
+ +
2.3.2
+
+
+ + + +neun (9) +nine (9) +neuf (9) + + +
tl
+
+
neuf (9)
+
+
neun (9)
+
+
nine (9)
+
+ +
1598
+
+
+
+ + +
vümä
+
+ + + + +Fliege +fly +mouche + + +
tl
+
+
Fliege
+
+
fly
+
+
mouche
+
+ +
1141
+
+
+
+ + +
zari
+
+ + + + +Ameisenbär +anteater, antbear, aardvark +orycterope, fourmilier + + + +
1007
+
+
+
+ + +
didi tî mozoko
+
+ + + + + + + + + + + + +Horn (Musikinstrument) +horn (musical instrument) +cor (instrument de musique) + + +
tl
+
+
cor (instrument de musique)
+
+
horn (musical instrument)
+
+
Horn (Musikinstrument)
+
+ +
0892
+
+
+
+ + +
fêen
+
+ + + + + + + +Geruch, Duft +odor +odeur + + +
ek
+
+
Geruch, Duft
+
+
odeur
+
+
odor
+
+ + +
1568
+
+
+
+ + +
nze
+
+ + + + +Mond +moon +lune + + +
tl
+
+
lune
+
+
Mond
+
+
moon
+
+ +
1318
+
+
+ + + +Monat +month +mois + + +
tl
+
+
mois
+
+
Monat
+
+
month
+
+ +
1368
+
+
+
+ + +
zû na sêse
+
+ + + + + + + + + + + + +landen, sich niederlassen +land, alight +atterrir, se poser + + +
tl
+
+
atterrir, se poser
+
+
land, alight
+
+
landen, sich niederlassen
+
+ +
1074
+
+
+
+ + +
lêgë mîngi
+
+ + + + + + + + + + + +oft +often +souvent + +
Lêgë mîngi, âmôlengê awara kôbe tî te pëpe.
+ +
Often the children do not get food to eat.
+
Souvent les enfants n'ont pas de nourriture.
+
+
+ + + +
1361
+
+
+
+ + +
fâ küä tî yângâ
+
+ + + + + + + + + + + + + + + + +rasieren +shave +se raser + + +
tl
+
+
rasieren
+
+
se raser
+
+
shave
+
+ + +
0565
+
+
+
+ + +
kömändëmä
+
+ + +
ko.ma.nde.ma
+ +
2.2.2.2
+
+
+ + + +Befehl, Befehlsgewalt +command +commandement + + +
ek
+
+
Befehl, Befehlsgewalt
+
+
command
+
+
commandement
+
+
+ + + +Autorität +authority +autorité + + +
ek
+
+
authority
+
+
Autorität
+
+
autorité
+
+
+
+ + +
Zâbolo
+
+ + + + +Satan, Teufel +Satan +diable + + +
ek
+
+
diable
+
+
Satan
+
+
Satan, Teufel
+
+
+
+ + +
ndao
+
+ + +
ndao
+ +
11
+
+
+ + + +Schmied +blacksmith +forgeron + + +
ek
+
+
blacksmith
+
+
forgeron
+
+
Schmied
+
+ + +
0399
+
+
+ + + +Schmiede +forge +forge + + +
tl
+
+
forge
+
+
forge
+
+
Schmiede
+
+ +
0705
+
+
+
+ + +
lüngö kûâ
+
+ + + + + + + + + + +Beerdigung, Begräbnis +burial +enterrement + + + + +
ek
+
+
Beerdigung, Begräbnis
+
+
burial
+
+
enterrement
+
+
+
+ + +
ëdëngö-zo
+
+ + +
e.de.ngɔ.zo
+ +
2.2.2.1
+
+
+ + + +Sozialhilfe +social assistance +assistance sociale + + +
ek
+
+
Sozialhilfe
+
+
+
+ + +
nyön mânga
+
+ + + + + + + + + + + +rauchen +to smoke +fumer + + +
ek
+
+
fumer
+
+
rauchen
+
+
+
+ + +
särä
+
+ + + + +Juckreiz +itch +démangeaison + + +
tl
+
+
démangeaison
+
+
Krätze
+
+
scabies
+
+
+
+ + +
mû (kôlï, wâlï)
+
+ + + + + + + + + + + + + + + + +heiraten +marry +se marier, épouser + + +
tl
+
+
heiraten
+
+
marry
+
+
se marier, épouser
+
+ +
0939
+
+
+
+ + +
gidi
+
+ + + + +Glücks-Spiel +game of chance +jeu de hasard + + +
ek
+
+
Glücks-Spiel
+
+
+
+ + +
ndo tî särängö purû
+
+ + + + + + + + + + + + + + + + +Latrine, Toilette, WC +latrine, toilet +latrines, toilette + + +
tl
+
+
latrine, toilet
+
+
latrine, toilette
+
+
Latrine, Toilette, WC
+
+ +
0681
+
+
+
+ + +
fâ ngbanga na li tî ... awe
+
+ + +
Originally: zo sô a fâ ngbanga na li tî lo awe
+
+ + + + + + + + + + + + + +verurteilt (sein) +convicted (be) +condamné, inculpé (être) + +
Fadë lo sâra kânga tëtî afâ ngbanga na li tî lo awe
+ +
He will go to prison since he is guilty.
+
+
+ + +
tl
+
+
(be) convicted
+
+
(être) condamné, inculpé
+
+
verurteilt (sein)
+
+
+
+ + +
kpêne
+
+ + + + +wunderbar +astounding, miraculous +étonnant, miraculeux + + +
ek
+
+
wunderbar
+
+
+
+ + +
tîko
+
+ + +
ti.kɔ
+ +
3.1
+
+
+ + + +husten +cough +tousser + + +
tl
+
+
cough
+
+
husten
+
+
tousser
+
+ +
0112
+
+
+
+ + +
zonyön
+
+ + + + +Zwiebel +onion +oignon + + +
tl
+
+
oignon
+
+
onion
+
+
Zwiebel
+
+ +
1220
+
+
+
+ + +
kokoro
+
+ + + + + +
kɔ.kɔ.ɾɔ
+ +
1.1.1
+
+
+ + + +Bogen +bow (hunting) +arc (de chasse) + + +
ek
+
+
arrow
+
+
flèche
+
+
Pfeil
+
+ +
0780
+
+
+
+ + +
na gbe tî dê
+
+ + + + + + + + + + + + + + + + + + +im Schatten +in the shade +à l'ombre + +
Âbâgara alütï na gbe tî dê.
+ +
The cows stand in the shade.
+
Les vaches se tiennent à l'ombre.
+
+
+
im Schatten
+
+
+
+ + +
ôko ...
+
+ + + + + + +
ɔ.kɔ
+ +
3.1
+
+
+ +gleich (sein) +same (be) +le même (être) + +
Ôko ngbö nî adê îtä tî mbï.
+ +
The same snake struck my sibling.
+
+
+ + +
tl
+
+
(être) le même
+
+
gleich (sein)
+
+
same
+
+ +
0424
+
+
+ +aforementioned +déjà mentionné + +
Ôko zo nî sô mbï wa âla ndâi tî lo, lo kîri bîrï.
+ +
The aforementioned person I warned you of, he came back yesterday.
+
+
+
aforementioned
+
+
+
+ + +
kupkup
+
+ + + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + +
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ +
0755
+
+
+
+ + +
yorö ti kâi sïönî yorö
+
+ + + + +Gegengift +antidote +antidote + +
i-20
+
+
+
+ + +
yeke mîngi pëpe
+
+ + + + + + + + + + +knapp (sein) +scarce (be) +peu abondant (être) + +
Kôbe ayeke mîngi pëpe, nî laä nzara asâra âla.
+ +
Food is scarce and so they are hungry.
+
+
+ + +
tl
+
+
(être) peu abondant
+
+
knapp (sein)
+
+
scarce
+
+ +
0822
+
+
+
+ + +
zîa ngîâ na bê tî ...
+
+ + + + + + + + + + + + + + + + +gefallen, befriedigen +please, satisfy +plaire, satisfaire + + +
tl
+
+
gefallen, befriedigen
+
+
plaire, satisfaire
+
+
please, satisfy
+
+ +
0505
+
+
+
+ + +
sukûla ngû
+
+ + + + + + + + +sich waschen, baden, duschen +take a bath, shower +se laver + + +
ek
+
+
se laver
+
+
sich waschen, baden, duschen
+
+
take a bath, shower
+
+ +
0561
+
+
+
+ + +
sitrön
+
+ + +
si.trɔ̰
+
+ + + +Zitrone +lemon +citron + + +
Citrus aurantiifolia
+
+ +
tl
+
+
citron
+
+
lemon
+
+
Zitrone
+
+ +
1210
+
+
+
+ + +
+
+ + + + +öffnen +open +ouvrir + + + + +
ek
+
+
öffnen
+
+
open
+
+
ouvrir
+
+ + +
0639
+
+
+ +offen (sein) +open (be) +ouvert (être) + + +
tl
+
+
(être) ouvert
+
+
offen (sein)
+
+
open
+
+ +
0638
+
+
+ + + +entfernen, herausnehmen +remove, take out (from container) +enlever, sortir (d'un récipient), ôter + + +
tl
+
+
enlever, sortir (d'un récipient), ôter
+
+
entfernen, herausnehmen
+
+
remove, take out (from container)
+
+ +
0634
+
+
+ + + +loslassen +let go +relâcher + + +
ek
+
+
let go
+
+
loslassen
+
+
relâcher
+
+ +
0660
+
+
+ + + +ernten, ausgraben (Yams) +harvest, dig up (yams) +récolter, déterrer (ignames) + + +
tl
+
+
ernten, ausgraben (Yams)
+
+
harvest, dig up (yams)
+
+
récolter, déterrer (ignames)
+
+ +
0758
+
+
+
+ + +
wara ... na pekô tî kûâ tî
+
+ + + + + + + + + + + + + + + + +erben +inherit +hériter + + +
tl
+
+
erben
+
+
hériter
+
+
inherit
+
+ +
0841
+
+
+
+ + +
so ti ... (mo) ... (pendere)
+
+ + + + + + + +That is really (beautiful) + +
+ + +
kono
+
+ + +
kɔ.nɔ
+ +
1.1
+
+
+ + + +zunehmen, dick (sein) +gain weight, fat (be) +grossir, grosse (être) + +
Ângasa sô ate kôbe tî yäkä. Nî laâ âla kono mîngi.
+ +
Those goats ate crops. That is why they are so fat.
+
+
+ + +
ek
+
+
zunehmen, dick (sein)
+
+
+ +groß (sein) +big (be) +grand, gros (être) + +
ködörö tî Bangui akono mîngi.
+ +
The town of Bangui is very big.
+
+
+
(être) grand, gros
+
+
big
+
+
groß (sein)
+
+ +
1507
+
+
+ + + +wachsen +grow up +grandir + +
Môlengê nî akono bîanî. Lo gä zo awe.
+ +
The child has grown up. He's an adult [lit. he has become a person]
+
+
+ + +
tl
+
+
grandir
+
+
grow up
+
+
wachsen
+
+ +
0247
+
+
+ + + +vergrößern +enlarge +agrandir +
agrandir
+
+
enlarge
+
+
vergrößern
+
+
+
+ + +
ta
+
+ + + + +Kochtopf +pan, pot +marmite, pot + + +
ek
+
+
Kochtopf
+
+
+
+ + +
na gbenî
+
+ + +
na gbe tî
+ +
+ + + + + + + +unten +below +en bas + +
Âla löndö na ndüzu tî hötö nî, âla zûu na gbenî.
+ +
They started from on top of the hill and went down below.
+
+
+ + +
ek
+
+
below
+
+
en bas
+
+
unten
+
+ +
1663
+
+
+ + + +unten +down +en bas + +
Lo lütï na hötö, lo bâa na gbenî.
+ +
He stood on the hill and looked down.
+
+
+ + +
tl
+
+
down
+
+
en bas
+
+
unten
+
+ +
1663
+
+
+
+ + +
lë-gbïä
+
+ + +
lë gbïä
+ +
+ + + + + + + + + + +über jmd herrschen, regieren, dominieren +rule over, dominate +gouverner, dominer + + +
tl
+
+
gouverner, dominer
+
+
rule over, dominate
+
+
über jmd herrschen, regieren, dominieren
+
+ + +
0496
+
+
+ + + +regieren +reign +régner + + +
tl
+
+
regieren
+
+
régner
+
+
reign
+
+
+
+ + +
wabûburû
+
+ + + + +Taub-(stumme) Person +deaf (mute) person +sourd-muet + + +
& i-677
+
+ +
tl
+
+
deaf (mute) person
+
+
sourd-muet
+
+
Taub-(stumme) Person
+
+ + +
0197
+
+
+
+ + +
zîa ngîâ na bê tî ...
+
+ + + + + + + + + + + + + + + + + + + + +unterhalten +to entertain +distraire + +
+ + +
sêgô
+
+ + +
sɛ.gɔ
+ +
3.3
+
+
+ + + +Ton +tone +ton + + +
ek
+
+
ton
+
+
Ton
+
+
tone
+
+
+
+ + +
palâse
+
+ + + + +Ort, Stelle, Platz +place, spot +endroit + + +
ek
+
+
endroit
+
+
Ort, Stelle, Platz
+
+
+
+ + +
+
+ + + + +Frucht tragen +bear fruit +fructifier + + + + +
ek
+
+
Frucht tragen
+
+
fructifier
+
+ +
monino-081
+
+
+
+ + +
söngö yâ tî düngü
+
+ + + + + + + + + + + + + + + + +(Geburts-)Wehen +labour, birth pains +labeur, douleur d'accouchement + + +
& i-220
+
+ +
tl
+
+
(Geburts-)Wehen
+
+
labeur, douleur d'accouchement
+
+
labour, birth pains
+
+ + +
0243
+
+
+
+ + +
na lêgë tî
+
+ + + + + + + + + + + + + + +über, via +by means of +au moyen de + +
Âla fâ këkë na Lêgë tî dö.
+ +
They cut trees by means of axes.
+
Ils ont coupé des arbres au moyen de haches.
+
+
+ + +
ek
+
+
über, via
+
+
+
+ + +
fafadësô
+
+ + +
fa.fa.de.so
+ +
1.1.2.3
+
+
+ + + +sofort, sogleich +immediately, just +tout de suite, immédiatement + +
A nînga pëpe. Lo kûi fafadësô.
+ +
It hasn't been long. He just died.
+
+
+ + +
ek
+
+
sofort, sogleich
+
+ +
mle-2461
+
+
+
+ + +
tanda
+
+ + + + +to line something up, spread something out + +
+ + +
kporo
+
+ + +
kpɔ.ɾɔ
+ +
1.1
+
+
+ + + +sieden, kochen (Wasser) +boil (water) +bouillir (l'eau), bouillonner + + +
tl
+
+
boil (water)
+
+
bouillir (l'eau), bouillonner
+
+
sieden, kochen (Wasser)
+
+ +
0608
+
+
+
+ + +
âla
+
+ + + + +ihr +you (PL) +vous (PL) + + +
tl
+
+
ihr
+
+
vous (PL)
+
+ + +
1652
+
+
+ + + +sie (Mehrzahl) +they +ils, elles + + +
tl
+
+
ils, elles
+
+
sie (Mehrzahl)
+
+
they
+
+ + +
1653
+
+
+ + + +Sie (Höflichkeitsform) +you (honorific) +vous (honorifique) + + +
ek
+
+
Sie (Höflichkeitsform)
+
+
vous
+
+
you
+
+
+
+ + +
müngö gbâ tî wâlï
+
+ + + + + + + + + + + + + + + + +Polygamie, Vielehe +polygamy +polygamie + + +
tl
+
+
polygamie
+
+
Polygamie, Vielehe
+
+
polygamy
+
+ +
0946
+
+
+
+ + +
lê tî ... abe
+
+ + + + + + +er ist wütend +angry (be) +fâché (être) + +
Lê tî lo abe tëtî mbênî zo anzï ngäsa tî lo.
+ +
He is angry because someone stole his goat.
+
+
+ + +
ek
+
+
(être) fâché
+
+
angry
+
+
er ist wütend
+
+ + +
0279
+
+
+
+ + +
rêk
+
+ + + + +um jeden Preis, nur/einzig +at all costs, solely +â tout prix, uniquement + +
ek
+
+
um jeden Preis, nur/einzig
+
+
+
+ + +
kokö
+
+ + +
???
+ +
1.2
+
+
+ + + +Fürbitte, Fürsprache +intercession +intercession + + +
ek
+
+
Fürbitte, Fürsprache
+
+
intercession
+
+
intercession
+
+
+ + + +rechtliche Verteidigung +legal defense +défense (juridique) + + +
ek
+
+
rechtliche Verteidigung
+
+
+
+ + +
kara
+
+ + + + +überschreiten, übersteigen, zuviel (sein) +go beyond, be too much, overwhelm, defeat, discourage +dépasser, être trop + +
Nzapä, yê tî kara lo ayeke äpe.
+ +
Nothing is too difficult for God.
+
Dieu, rien ne le dépasse.
+
+
+ + +
ek, sam, bmm
+
+
überschreiten, übersteigen, zuviel (sein)
+
+
+ + + +beschämen +embarrass +mettre dans l'embarras, faire honte à + +
gfk-d
+
+ +
mle-1592
+
+
+
+ + +
wü pupu
+
+ + + + + + + + + + + + +atmen +breathe +respirer + + +
tl
+
+
atmen
+
+
breathe
+
+
respirer
+
+ + +
0106
+
+
+
+ + +
kanäre
+
+ + + + +Ente +duck +canard + + +
tl
+
+
canard
+
+
duck
+
+
Ente
+
+ +
0980
+
+
+
+ + +
nzere na ...
+
+ + + + + + + + +gefallen, befriedigen +please, satisfy +plaire, satisfaire + + +
tl
+
+
gefallen, befriedigen
+
+
plaire, satisfaire
+
+
please, satisfy
+
+ +
0505
+
+
+
+ + +
tângo
+
+ + +
ta.ngo
+ +
3.1
+
+
+ + + +Zeit, Zeitspanne, Periode +time, period +temps, période + + +
ek
+
+
temps, période
+
+
time, period
+
+
Zeit, Zeitspanne, Periode
+
+ +
1352
+
+
+
+ + +
katikâti
+
+ + + + +Grenze +border, boundary, limit +frontière, limite + + +
ek
+
+
border
+
+
frontière
+
+
Grenze
+
+ +
i-578
+
+
+
+ + +
baobä
+
+ + +
???
+ +
1.1.2
+
+
+ + + +Baobab, Affenbrotbaum +baobab tree +baobab + + +
Adansonia digitata
+
+ +
tl
+
+
baobab
+
+
baobab tree
+
+
Baobab, Affenbrotbaum
+
+ +
1162
+
+
+
+ + +
voro terê
+
+ + + + + + + + +sich beschweren +complain +se plaindre + + + + +
ek
+
+
complain
+
+
se plaindre
+
+
sich beschweren
+
+ + +
0467
+
+
+ + + +um Rat bitten +ask for advice +chercher conseil + + +
ek
+
+
um Rat bitten
+
+
+
+ + +
miambe
+
+ + +
mi.a.mbe
+ +
1.1.1
+
+
+ + + +acht (8) +eight (8) +huit (8) + +
+ + +
gozo
+
+ + +
gɔ.zɔ
+ +
1.1
+
+
+ + + +Maniok +manioc, cassava +manioc + + +
Manihot esculenta
+
+ +
tl
+
+
manioc
+
+
manioc, cassava
+
+
Maniok
+
+ +
1227
+
+
+
+ + +
êre ngû
+
+ + + + + + + + + + + +(Wasser) ausschöpfen +bail out water +vider l'eau, écoper + + +
ek
+
+
(Wasser) ausschöpfen
+
+
bail out water
+
+
vider l'eau, écoper
+
+ +
0854
+
+
+ + + +fischen (Ausschöpfmethode) +fish by bailing out water +pêcher en vidant l'eau + + +
ek
+
+
fischen (Ausschöpfmethode)
+
+
+
+ + +
ze
+
+ + + + +Leopard +leopard +léopard + + +
Panthera pardus
+
+ +
tl
+
+
leopard
+
+
Leopard
+
+
léopard
+
+ +
1024
+
+
+ + + +Panther +panther +panthère + + +
ek
+
+
panther
+
+
Panther
+
+
panthère
+
+
+ + + +Tiger +tiger +tigre + + + + +
Tiger not indigenous to Africa
+
+ +
ek
+
+
tiger
+
+
Tiger
+
+
tigre
+
+
+
+ + +
ngangü pupu
+
+ + + + + + + + + + + + +Sturm +storm +orage + + +
tl
+
+
orage
+
+
storm
+
+
Sturm
+
+ +
1332
+
+
+
+ + +
zî (kamba)
+
+ + + + +vereinigen +detach, untie +détacher, dénouer + +
i-299
+
+
+
+ + +
daveke
+
+ + + + +Syphilis +syphilis +syphilis + + +
ek
+
+
syphilis
+
+
syphilis
+
+
Syphilis
+
+
+
+ + +
dindôn
+
+ + +
dḭ.do̰
+ +
1.3
+
+
+ + + +Truthahn, Pute +turkey +dindon + +
dindon
+
+
Truthahn, Pute
+
+
turkey
+
+ +
0978
+
+
+
+ + +
fonônö
+
+ + +
???
+
+ + + +Radio +radio +radio + + +
ek
+
+
radio
+
+
radio
+
+
Radio
+
+
+
+ + +
mbâgë na mbâgë
+
+ + + + + + + + + + + + + + + + + + + + + +von überall +from everywhere +de partout + +
Ângungu alöndö na mbâgë na mbâgë.
+ +
Mosquitoes came from everywhere.
+
Des moustiques sont venus de partout.
+
+
+ +
Koyt-Deballé G.F.: Illustrated Lexicon Sängö-English
+
+
+ + + +Auf jeder Seite +on each side +de chaque côté + +
Zême nî azâ mbâgë na mbâgë.
+ +
The knife is sharp on both sides.
+
Le couteau est aiguisé de chaque côté.
+
+
+ +
ek
+
+
auf der einen Seite
+
+
+
+ + +
löndö na ködrö
+
+ + + + + + + + + + + +seinen Wohnort /seine Heimat verlassen +move away, change one's home +émigrer, déménager, quitter un pays ou village + + + + +
ek
+
+
émigrer, déménager, quitter un pays ou village
+
+
move away, change one's home
+
+
seinen Wohnort /seine Heimat verlassen
+
+
+
+ + +
balëmbrâmbrâ
+
+ + + + + + + +siebzig (70) +seventy (70) +soixante-dix (70) + + +
tl
+
+
seventy (70)
+
+
siebzig (70)
+
+
soixante-dix (70)
+
+ +
1616
+
+
+
+ + +
lê tî ... ahän
+
+ + +er ist vorsichtig, aufmerksam +he is alert, prudent, hard to trick +il est vigilant, attentif + +
er ist vorsichtig, aufmerksam
+
he is alert, prudent, hard to trick
+
il est vigilant, attentif, difficile à tromper
+
+ + +
ek
+
+
er ist vorsichtig, aufmerksam
+
+
+
+ + +
bâgara
+
+ + + + +Ochse, Rind +bull, cow, ox (general term), bovine +bœuf, vache + + +
tl
+
+
bœuf, vache
+
+
bull, cow, ox (general term), bovine
+
+
Ochse, Rind
+
+ +
0958
+
+
+
+ + +
särängö ngangü
+
+ + + + +Gewalt +violence +violence + +
+ + +
bêkombïte
+
+ + +
bɛ.kɔ.mbi.tɛ
+ +
3.1.2.1
+
+
+ + + +Mittag +noon +midi + + +
tl
+
+
midi
+
+
Mittag
+
+
noon
+
+ +
1379
+
+
+
+ + +
+
+ + + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + +
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ +
0755
+
+
+
+ + +
kâmba
+
+ + + + +Seil, Liane, Schnur, Draht +rope +corde + + + + +
tl
+
+
corde
+
+
rope
+
+
Seil, Liane, Schnur, Draht
+
+ +
0653
+
+
+ + + +Faden +thread +fil + + +
tl
+
+
Faden
+
+
fil
+
+
thread
+
+ +
0727
+
+
+ + + +Draht +wire +fil + + +
ek
+
+
Draht
+
+
fil
+
+
wire
+
+
+ + + +Draht +strap +courroie + + + +
0651
+
+
+ + + +Liane, Rebe +vine +liane + + +
tl
+
+
liane
+
+
Liane, Rebe
+
+
vine
+
+ +
1191
+
+
+ + + +Griff +handle +poignée, manche, anse + + +
tl
+
+
Griff
+
+
handle
+
+
poignée, manche, anse
+
+ +
0631
+
+
+
+ + +
dödô
+
+ + +
dɔ.dɔ
+ +
2.3
+
+
+ + + +tanzen +dance +danser + + +
ek
+
+
dance
+
+
danser
+
+
tanzen
+
+ +
0884
+
+
+
+ + +
kpîkara
+
+ + + + +Schuppentier +pangolin, scaly anteater +pangolin + + +
Manis spp.
+
+ +
1008
+
+
+
+ + +
söngö yê
+
+ + + + +Schmerz +pain +douleur + + +
& i-964
+
+ +
tl
+
+
douleur
+
+
pain
+
+
Schmerz
+
+ + +
0230
+
+
+
+ + +
mëngä wâ
+
+ + + + + + + + + + + + +Flamme +flame +flamme + + +
tl
+
+
flame
+
+
flamme
+
+
Flamme
+
+ +
1306
+
+
+
+ + +
fadë fadë
+
+ + + + + + + + +schnell (sein) +fast (be) +rapide (être) + +
Babâ aîri lo. Lo gä fadë fadë.
+ +
Father called him. He came rapidly.
+
+
+ + +
tl
+
+
(être) rapide
+
+
fast
+
+
schnell (sein)
+
+ +
1419
+
+
+
+ + +
tatara ndo
+
+ + + + + + + + +(blind) ertasten +grope (as a blind man) +toucher (comme un aveugle) +
(blind) ertasten
+
+
+
+ + +
kangoya
+
+ + +
ka.ngo.ya
+ +
1.1.1
+
+
+ + + +Palmwein +palm wine +vin de palme + + +
tl
+
+
Palmwein
+
+
vin de palme
+
+ +
0590
+
+
+
+ + +
wöngö-terê
+
+ + + + + + + + +lange Pause, Urlaub +long break, vacation +repos de longue durée, vacances + + +
ek
+
+
lange Pause, Urlaub
+
+
+
+ + +
toto kûâ
+
+ + +
toto töngana (gaduru)
+ +
+ +
a toto
+ +
+ + + +heulen, klagen (an Beerdigung) +mourn, wail, ululate (at funeral) +pleurer, gémir, ululer + +
Âwâli atoto kûâ tî lo mîngi.
+ +
The women wailed a lot at his funeral.
+
+
+ + +
tl
+
+
heulen, klagen (an Beerdigung)
+
+
pleurer, gémir
+
+
wail, ululate (at funeral)
+
+ + +
0951
+
+
+
+ + +
yongôro bongö
+
+ + + + + + + + + + + + +Robe, Gewand (für Männer) +robe (man's gown) +boubou + + +
tl
+
+
boubou
+
+
robe (man's gown)
+
+
Robe, Gewand (für Männer)
+
+ +
0545
+
+
+
+ + +
pâpä
+
+ + + + +Sandalen +sandals +sandales + + +
ek
+
+
Sandalen
+
+
sandales
+
+
sandals
+
+ +
0548
+
+
+ + + +Schlappen +old shoes +savate + + +
ek
+
+
savate
+
+
Schlappen
+
+
+
+ + +
mä na bê
+
+ + + + + + + + + + + + +glauben +believe +croire + + + + +
tl
+
+
believe
+
+
croire
+
+
glauben
+
+ +
0253
+
+
+ + + +Gott vertrauen +have faith +avoir foi +
Gott vertrauen
+
+
+
+ + +
ngâakô
+
+ + +
nga.ko
+ +
31.3 / 32.31
+
+
+ + + +Zuckerrohr +sugarcane +canne à sucre + + +
ek
+
+
canne à sucre
+
+
sugarcane
+
+
Zuckerrohr
+
+ + +
1241
+
+
+
+ + +
yeke na mayëre
+
+ + + + + + + + + + +klug, intelligent (sein) +intelligent (be) +intelligent (être) + + +
tl
+
+
(être) intelligent
+
+
intelligent
+
+
klug, intelligent (sein)
+
+ + +
0259
+
+
+
+ + +
li tî ngû
+
+ + + + + + + + +Quelle +spring +source + + +
tl
+
+
Quelle
+
+
source
+
+
spring
+
+ + +
1290
+
+
+
+ + +
fungûla mozoko
+
+ + +
fungûla not used commonly with this meaning. sl accepts this usage as normal for muxic.
+
+ +
from Lingala Fungola?
+
+ + + + + + +öffnen, (Musik) präsentieren +present (music) +ouvrir, présenter (la musique) + + +
ek
+
+
öffnen, (Musik) präsentieren
+
+
+
+ + +
wangën-längö
+
+ + +
tâa mbäkôro
+
+ + + +seniler Mensch +senile person +personne sénile + + + +
0203
+
+
+
+ + +
kônde
+
+ + +
???
+ +
3.1
+
+
+ + + +Rechnen +math +calcul + + +
ek
+
+
calcul
+
+
math
+
+
Rechnen
+
+
+
+ + +
zîa bê na ndö tî yê
+
+ + + + +abhängen von +depend on +dépendre de + +
gfk-d
+
+ +
mle-1313
+
+
+
+ + +
yëngërë
+
+ + + + +Sieb +sieve +tamis + + +
ek
+
+
Sieb
+
+
sieve
+
+
tamis
+
+
+
+ + +
âdu
+
+ + + + +betreffend, falls +concerning, if +concernant, si + +
ek
+
+
betreffend, falls
+
+
+
+ + +
lêgëôko
+
+ + + + + + + + + + +
le.ge.ɔ.kɔ
+ +
3.2.3.1
+
+
+ + + +zusammen, miteinander +together +ensemble + +
Zîa ï gue lêgëôko tî tö ngû.
+ +
Let us go together to draw water.
+
+
+ + +
ek
+
+
ensemble
+
+
together
+
+
zusammen, miteinander
+
+
+ +dasselbe +same (be) +le même (être) + +
Ï na mo, ï yeke lêgëôko.
+ +
You and I, we are the same.
+
+
+ + +
tl
+
+
(être) le même
+
+
dasselbe
+
+
same
+
+ +
0424
+
+
+
+ + +
mbele
+
+ + + + + + + +Bund +bond, alliance +alliance + + +
ek
+
+
Bund
+
+
+ + + +rituelles Mahl +ritual meal +repas rituel + + +
ek
+
+
rituelles Mahl
+
+
+
+ + +
ngôi ahön awe
+
+ + + + + + + + + + + + +spät +late +tard + +
Ngôi ahön awe, a lîngbi ï kîri na yângâ da.
+ +
It is late, we must return home.
+
+
+ + +
tl
+
+
late
+
+
spät
+
+
tard
+
+ +
1357
+
+
+
+ + +
nzönî yê
+
+ + + + + + + + + + +wichtig (sein) +important (be) +important (être) + + +
tl
+
+
(être) important
+
+
important
+
+
wichtig (sein)
+
+ +
1586
+
+
+
+ + +
bi
+
+ + + + +werfen +throw +jeter + + + + +
ek
+
+
jeter
+
+
throw
+
+
werfen
+
+
+ + + +wegwerfen +throw away, get rid of +jeter + + +
tl
+
+
jeter
+
+
throw away, get rid of
+
+
wegwerfen
+
+ +
1468
+
+
+ + + +werfen +throw +lancer + + +
tl
+
+
lancer
+
+
throw
+
+
werfen
+
+ + +
1430
+
+
+
+ + +
yê kûê
+
+ + + + + + + + + + + + +alles +everything +tout, toutes choses + + +
tl
+
+
alles
+
+
everything
+
+
tout, toutes choses
+
+ +
1644
+
+
+
+ + +
boma
+
+ + +
???
+
+ + + +Dürre, Trockenheit, Hungersnot +drought, famine +sécheresse, famine, disette + + +
tl
+
+
drought, famine
+
+
Dürre, Trockenheit, Hungersnot
+
+
sécheresse, famine, disette
+
+ +
1341
+
+
+
+ + +
ngäsa
+
+ + + + +Ziege +goat +chèvre + + +
tl
+
+
chèvre
+
+
goat
+
+
Ziege
+
+ +
0965
+
+
+
+ + +
tï gbâgba
+
+ + + + + + + + + + + +Mädchenkreisspiel, in dem jedes Mädchen sich in die Arme der anderen Spieler fallen läßt +play a girls' circle game, played by tossing oneself into the arms of the others +jouer un jeu des filles, qui se jettent dans les mains les unes après les autres + +
Mädchenkreisspiel spielen, in dem jedes Mädchen sich in die Arme der anderen Spieler werfen läßt
+
to play a girls' circle game, played by tossing oneself into the arms of the others
+
jouer un jeu des filles, qui se jettent dans les mains les unes après les autres
+
+ + +
ek
+
+
Mädchenkreisspiel, in dem jedes Mädchen sich in die Arme der anderen Spieler fallen läßt
+
+
+
+ + +
langä
+
+ + + + +Taro-Yams +taro root +taro + + +
Colocasia esculenta
+
+ +
tl
+
+
taro
+
+
taro root
+
+
Taro-Yams
+
+ +
1228
+
+
+
+ + +
ngombî
+
+ + +
ngbaka-ma'bo
+
+ +
ngo.mbi
+ +
1.3
+
+
+ + + +Harfe +harp +harpe + + +
ek
+
+
Harfe
+
+
harp
+
+
harpe
+
+ +
0890
+
+
+
+ + +
gbogbo
+
+ + +
gbo.gbo
+ +
1.1
+
+
+ + + +Bett +bed +lit + + +
tl
+
+
bed
+
+
Bett
+
+
lit
+
+ +
0696
+
+
+
+ + +
yôro kâmba
+
+ + + + + + + + + + + + +auffädeln (Perlen) +string, thread (beads) +enfiler (perles) + + +
tl
+
+
auffädeln (Perlen)
+
+
enfiler (perles)
+
+
string, thread (beads)
+
+ +
0550
+
+
+
+ + +
gene
+
+ + + + +Besucher, Gast +visitor +visiteur + + +
tl
+
+
Besucher, Gast
+
+
visiteur
+
+
visitor
+
+ +
0384
+
+
+
+ + +
mbâgë tî kôlï
+
+ + + + + + + + +rechte Seite +right side +côté droite + + + + +
ek
+
+
rechte Seite
+
+
+
+ + +
dö zo na likundû
+
+ + +
Originally: döngö zo na likundû
+
+ + + + + + + + + + + + + + + +verzaubern, verhexen +bewitch, cast spell +ensorceler + + +
tl
+
+
bewitch, cast spell
+
+
ensorceler
+
+
verzaubern, verhexen
+
+ +
0919
+
+
+
+ + +
balëe (ndo)
+
+ + + + + + + + + + +
ba.lee
+ +
1.21
+
+
+ + + +fegen, kehren +sweep +balayer + + +
tl
+
+
balayer
+
+
fegen, kehren
+
+
sweep
+
+ + +
0735
+
+
+
+ + +
parâba
+
+ + + + +Streit +quarrel +querelle + + +
ek
+
+
quarrel
+
+
querelle
+
+
Streit
+
+ + +
0508
+
+
+
+ + +
turunêe
+
+ + + + +drehen +turn (something) +tourner + +
drehen
+
+
tourner
+
+
turn (something)
+
+
+
+ + +
wamändängö-mbëtï
+
+ + + + + + + + +Student/-in +student +étudiant + + +
ek
+
+
étudiant
+
+
student
+
+
Student/-in
+
+
+
+ + +
hûru körö
+
+ + + + + + + + + + + + +sich schnäuzen +blow nose +se moucher + + +
tl
+
+
blow nose
+
+
se moucher
+
+
sich schnäuzen
+
+ +
0105
+
+
+
+ + +
zo tî mvene
+
+ + + + +Lügner +liar +menteur + +
mle-2809
+
+
+
+ + +
bi pärä
+
+ + + + + + + + + + + + +ein Ei legen +lay an egg +pondre + + +
tl
+
+
ein Ei legen
+
+
lay an egg
+
+
pondre
+
+ +
1080
+
+
+
+ + +
da-lîmo
+
+ + +
da.li.mɔ
+ +
1.3.1
+
+
+ + + +Kino +movie theater +cinéma + + +
ek
+
+
cinéma
+
+
Kino
+
+
+ + + +Fernseh-Sender, Fernseh-Studio +television station +station de télévision +
Fernseh-Sender, Fernseh-Studio
+
+
+
+ + +
fä ndendë
+
+ + + + +Riskieren +gamble +jouer sur, parier + +
lb
+
+ +
mle-2046
+
+
+
+ + +
zo tî yorö
+
+ + + + + + + + + + + + +Fetischpriester +fetish priest +féticheur + + +
tl
+
+
féticheur
+
+
Fetischpriester
+
+
fetish priest
+
+ +
0410
+
+
+
+ + +
kötä lâ
+
+ + + + + + + + + + + + +Tag, Tageslicht +daytime +jour, journée (lumière) + + +
tl
+
+
daytime
+
+
jour, journée (lumière)
+
+
Tag, Tageslicht
+
+ +
1383
+
+
+
+ + +
këngû
+
+ + + + +Zahnstocher, Zahnbürste +tooth stick, toothbrush +brosse à dents, bâton à nettoyer les dents + + +
tl
+
+
brosse à dents, bâton à nettoyer les dents
+
+
tooth stick, toothbrush
+
+
Zahnstocher, Zahnbürste
+
+ +
0568
+
+
+
+ + +
mbätä tî gbïä
+
+ + + + + + + + +(politische) Macht +authority +pouvoir (politique) + + +
ek
+
+
(politische) Macht
+
+
authority
+
+
+ + + +Thron +throne +trône + + +
ek
+
+
Thron
+
+
throne
+
+
trône
+
+
+
+ + +
tambûla
+
+ + +
tambêla
+ +
+ + + +gehen, spazieren +walk +marcher + + +
tl
+
+
gehen, spazieren
+
+
marcher
+
+
walk
+
+ + +
0154
+
+
+ + + +Gehen +walk(ing), hike(ing) +marche + +
i-617
+
+
+ + + +move +bouger, se déplacer + + +
tl
+
+
bouger, se déplacer
+
+
move
+
+ +
1397
+
+
+ + + +Reise +journey +voyage + + +
tl
+
+
journey
+
+
Reise
+
+
voyage
+
+ +
0842
+
+
+
+ + +
tënë
+
+ + + + +Wort +word +parole, mot + + + + +
tl
+
+
parole, mot
+
+
word
+
+
Worte
+
+ +
0431
+
+
+ + + +Thema +subject +sujet + + +
ek
+
+
subject
+
+
sujet
+
+
Thema
+
+
+
+ + +
pë yâ tî ...
+
+ + + + + + + + +worfeln, windsichten +winnow, throw in air (grain) +vanner + + +
ek
+
+
vanner
+
+
winnow
+
+
worfeln, windsichten
+
+ + +
0764
+
+
+
+ + +
ndarä
+
+ + +
??? tones on ndara not consistent
+
+ + + +Weisheit +wisdom +sagesse + + +
tl
+
+
sagesse
+
+
Weisheit
+
+
wisdom
+
+ + +
0257
+
+
+ + + +Intelligenz +intelligence +intelligence + + +
ek
+
+
intelligence
+
+
intelligence
+
+
Intelligenz
+
+
+ + + +Vorsicht +caution +prudence + + +
ek
+
+
caution
+
+
prudence
+
+
Vorsicht
+
+
+
+ + +
edêe
+
+ + + + +helfen +help +aider + + +
ek
+
+
aider
+
+
helfen
+
+
help
+
+ +
0492
+
+
+
+ + +
bûku
+
+ + + + +Buch +book +livre + + +
ek
+
+
book
+
+
Buch
+
+
livre
+
+
+
+ + +
kêtê da
+
+ + + + + + + + + + + +Hütte +hut +case + + +
tl
+
+
case
+
+
hut
+
+
Hütte
+
+ +
0663
+
+
+
+ + +
yô na yâ tî mabôko
+
+ + + + + + + + + + + + +(auf den Armen) tragen +carry (in arms) +porter (dans les bras) + + +
tl
+
+
(auf den Armen) tragen
+
+
carry (in arms)
+
+
porter (dans les bras)
+
+ + +
0859
+
+
+
+ + +
omënë
+
+ + +
o.mɛ.nɛ
+ +
1.2.2 / 1.1.2
+
+
+ + + +sechs +six (6) +six + + +
tl
+
+
sechs
+
+
six
+
+
six (6)
+
+ +
1595
+
+
+
+ + +
sukûla fotöo
+
+ + + + + + + + +Film entwickeln +develop film +développer une épreuve + + +
ek
+
+
Film entwickeln
+
+
+
+ + +
gbe tî gerê
+
+ + + + + + + + + + + + +Sohle +sole +plante du pied + + +
tl
+
+
plante du pied
+
+
Sohle
+
+
sole
+
+ +
0072
+
+
+
+ + +
pîka lisorö
+
+ + + + + + + + + + + +plaudern, ein Gespäch führen +chat, converse, talk +causer, converser + + +
ek
+
+ + +
0438
+
+
+
+ + +
gïngö bê
+
+ + + + +Besorgniserregend +care, concern, worrying +souci + +
i-960
+
+
+
+ + +
kangamëe
+
+ + + + +tailliertes langes Kleid +fitted long dress +robe droite ajustée + + +
ek
+
+
tailliertes langes Kleid
+
+
+
+ + +
sämba asâra ...
+
+ + + + + + + + + +betrunken (sein) +drunk (be) +soûl (être) + +
Lo yeke pîka wâli tî lo tëtî sämba asâra lo.
+ +
He is beating his wife because he is drunk.
+
+
+ + +
tl
+
+
(être) soûl
+
+
betrunken (sein)
+
+
drunk
+
+ +
0182
+
+
+
+ + +
bengbä mê
+
+ + + + + + + + + + + + +weißer Mann +white man +homme blanc + + +
tl
+
+
homme blanc
+
+
weißer Mann
+
+
white man
+
+ + +
0330
+
+
+
+ + +
mû ndo
+
+ + + + + + + + + + + +sich verbreiten +spread out, take over a place +se répandre, s'étendre + + + + +
tl
+
+
se répandre, s'étendre
+
+
sich verbreiten
+
+
spread out, take over a place
+
+ +
1415
+
+
+
+ + +
wabâda tî halëzo
+
+ + + + +Abgeordneter +delegate +député + + +
ek
+
+
Abgeordneter
+
+
delegate
+
+
député
+
+
+
+ + +
leke (kpälë)
+
+ + + + + + + + + + + + +(Streit) beilegen, lösen +resolve, settle (dispute) +résoudre, régler (une dispute) + + +
tl
+
+
(Streit) beilegen, lösen
+
+
resolve, settle (dispute)
+
+
résoudre, régler (une dispute)
+
+ +
0513
+
+
+
+ + +
längö
+
+ + +
la.ngɔ
+ +
2.2
+
+
+ + + +Tag +day +journée + + + + +
ek
+
+
day
+
+
journée
+
+
Tag
+
+ +
1383
+
+
+
+ + +
mbrâmbrâ
+
+ + + + + + + +sieben (7) +seven (7) +sept (7) + + +
tl
+
+
sept (7)
+
+
seven (7)
+
+
sieben (7)
+
+ +
1596
+
+
+
+ + +
+
+ + + + +atmen +breathe +respirer + + +
ek
+
+
atmen
+
+
breathe
+
+
respirer
+
+ + +
0106
+
+
+
+ + +
tätärängö
+
+ + + + + + + + +Liebkosung +caress +caresse + +
caress
+
+
caresse
+
+
Liebkosung
+
+ +
0485
+
+
+
+ + +
ndembö tî nzângi
+
+ + + + + + + + +Basketball, Korbball +basketball +basket + + +
ek
+
+
basket
+
+
basketball
+
+
Basketball, Korbball
+
+
+
+ + +
+
+ + + + +wollen +want, desire +vouloir, désirer + + +
ek
+
+
vouloir, désirer
+
+
want, desire
+
+
wollen
+
+ +
0287
+
+
+ + + +mögen, lieben, wünschen +like, love +aimer + + +
tl
+
+
aimer
+
+
like, love
+
+
mögen, lieben, wünschen
+
+ +
0284
+
+
+
+ + +
waküâ
+
+ + + + +Verwandter des Verstorbenen +relative of the dead person +parent d'un mort + + +
ek
+
+
Verwandter des Verstorbenen
+
+
+
+ + +
kîsîrî
+
+ + +Pfannkuchen +pancake +galette + +
i-460
+
+
+
+ + +
kêtê sï
+
+ + + + + + + + + + + +kurz darauf, etwas später +a little later +un peu après + +
Lo lütï, lo bâa ndo, kêtê sï, lo hön.
+ +
He stopped, he looked around, a little later, he left.
+
Il s'est arrêté, il a surveillé les alentours, un peu après, il est parti.
+
+
+ + +
ek
+
+
kurz darauf, etwas später
+
+
+
+ + +
banga
+
+ + + + + + + +Norden +north +nord + + +
ek
+
+
nord
+
+
Norden
+
+
north
+
+ +
1658
+
+
+
+ + +
wäfängö-lêgë
+
+ + + + +Leitfaden +guide +guide + +
mle-2197
+
+
+
+ + +
kongä
+
+ + +
ko.nga
+ +
1.2
+
+
+ + + +Viper, Kreuzotter +puff adder +vipère + + +
Bitis arietans
+
+ +
tl
+
+
puff adder
+
+
Viper, Kreuzotter
+
+
vipère
+
+ +
1097
+
+
+
+ + +
kpëngö mbeto
+
+ + + + + + + + + + + +Angst +fear +crainte + + +
tl
+
+
Angst
+
+
crainte
+
+
fear
+
+ +
0276
+
+
+ + + +(Ehr-)furcht +awe, reverence (for God) +crainte révérencielle, vénération + + +
tl
+
+
(Ehr-)furcht
+
+
awe, reverence (for God)
+
+
crainte révérencielle, vénération
+
+ +
0905
+
+
+
+ + +
balëôko na mbrâmbrâ
+
+ + + + + + + + + + + + +siebzehn (17) +seventeen (17) +dix-sept (17) + + +
tl
+
+
dix-sept (17)
+
+
seventeen (17)
+
+
siebzehn (17)
+
+ +
1606
+
+
+
+ + +
ngû
+
+ + + + +Jahr +year +an, année + + +
tl
+
+
an, année
+
+
Jahr
+
+
year
+
+ +
1369
+
+
+ + + +Alter +age +âge + + +
ek
+
+
age
+
+
âge
+
+
Alter
+
+
+
+ + +
hötö tî âbobo
+
+ + + + + + + + + + + + +Termitenhügel +termite hill +termitière + + +
tl
+
+
termite hill
+
+
Termitenhügel
+
+
termitière
+
+ +
1153
+
+
+
+ + +
yeke wâ
+
+ + + + + + + + + +heiss (sein) +hot (objects) (be) +chaud (être) + +
Ngû tî kâwa nî ayeke wâ mîngi.
+ +
The coffee water is very hot.
+
+
+ + +
tl
+
+
(être) chaud
+
+
heiss (sein)
+
+
hot (objects)
+
+ +
1552
+
+
+
+ + +
kä tî sänzö
+
+ + + + +kochen +boil +furoncle + +
i-454
+
+
+
+ + +
ndö
+
+ + +
ndo
+ +
2
+
+
+ + + +Spitze, (oben) +top +le dessus + + + + +
ek
+
+
le dessus
+
+
Spitze, (oben)
+
+
top
+
+ +
1387
+
+
+
+ + +
na mabôko tî
+
+ + + + + + + + +in der Verantwortung/Sorge von +in care of +aux soins de + +
Fadë ë zîa môlengê nî na mabôko tî mamâ tî lo.
+ +
We will leave the child in the care of his mother.
+
+
+ + +
ek
+
+
in der Verantwortung/Sorge von
+
+
+
+ + +
ngôongô
+
+ + +
???
+
+ + + +Sperber +sparrowhawk +épervier + + +
tl
+
+
épervier, faucon
+
+
Falke, Habicht
+
+
hawk
+
+
+
+ + +
ngûngbi
+
+ + +
ngu.ngbi
+ +
3.1
+
+
+ + + +aufwidckeln +coil (rope) +enrouler + + + + +falten +fold +plier +
Falte
+
+
pleat
+
+
pli
+
+
+
+ + +
sambâ
+
+ + + + +Nebenfrau +fellow-wife, co-wife +coépouse + + +
tl
+
+
coépouse
+
+
fellow-wife, co-wife
+
+
Nebenfrau
+
+ +
0364
+
+
+
+ + +
sürüngö pörö-terê
+
+ + + + + + + + + + + + + + + + +Gesichtsschnitt (e), Tätowierung (en) +(facial) incision(s), tattoo(s) +scarification(s), tatouage(s) + + +
tl
+
+
Gesichtsschnitt (e), Tätowierung (en)
+
+
scarification(s), tatouage(s)
+
+ +
0559
+
+
+
+ + +
ngû tî me sô agbû terê
+
+ + + + + + + + + + + + + + + + + + + + +Sauermilch +curdled milk +lait caillé + + +
tl
+
+
lait caillé
+
+
Sauermilch
+
+ +
0586
+
+
+
+ + +
lêyäkä
+
+ + + + +Feld, Acker +field +champ + + +
ek
+
+
champ
+
+
Feld, Acker
+
+
field
+
+ +
0743
+
+
+
+ + +
kusâla
+
+ + + + +Arbeit +work +travail + + +
tl
+
+
Arbeit
+
+
travail
+
+
work
+
+ +
0703
+
+
+ + + +Aufgabe +assignment +tâche, devoir + + +
ek
+
+
assignment
+
+
Aufgabe
+
+
+ + + +Dienst +service +service + + +
ek
+
+
Dienst
+
+
service
+
+
service
+
+
+
+ + +
sandûku tî kûâ
+
+ + + + + + + + + + + +Sarg +casket, coffin +cercueil + + + + +
ek
+
+
cercueil
+
+
Sarg
+
+
+
+ + +
nzapä
+
+ + + + +Gott (sekundäre), Gottheit, Götze +god (lesser), idol +dieu, divinité (secondaire), idole + +
dieu, divinité (secondaire), idole
+
+
god (lesser), idol
+
+
Gott (sekundäre), Gottheit, Götze
+
+ + +
0907
+
+
+
+ + +
kâi kpô
+
+ + + + + + + + + + + +nichts sagen +remain silent +ne rien dire + + +
ek
+
+
nichts sagen
+
+ +
0442
+
+
+
+ + +
kusâra
+
+ + + + + + + +Arbeit +work +travail + +
ek
+
+
Arbeit
+
+
travail
+
+
work
+
+
+
+ + +
lîngbi
+
+ + + + +genügen +adequate, enough (be) +suffire + +
Fadë kôbe nî alîngbi na âzo kûê.
+ +
The food will be enough for everyone.
+
+
+ + +
ek
+
+
genügen
+
+
suffire
+
+
+ +gleich (sein) wie +equal to (be) +égal à (être) + +
Könöngö tî âla alingbi terê.
+ +
Their size was the same.
+
+
+ + +
ek
+
+
(être) égal à
+
+
equal to
+
+
gleich (sein) wie
+
+ +
1633
+
+
+ + + +fähig (sein), können +able to (be) +capable (être), pouvoir + +
Âkôli nî alingbi tî yü bongö tî marä nî ôko.
+ +
The men were able to wear the same clothing.
+
+
+ + +
Shows a distinction in modality
+
+ +
tl
+
+
(être) capable, pouvoir
+
+
able to
+
+
fähig (sein), können
+
+ +
1570
+
+
+ + + +sollte +ought to +devoir + +
A lîngbi âzo asâra kua.
+ +
It is necessary that people work.
+
+
+
devoir
+
+
sollte
+
+
+
+ + +
kotöon
+
+ + +
kɔ.tɔ̰ɔ̰
+ +
1.21
+
+
+ + + +Baumwolle +cotton +coton + + +
Gossypium spp.
+
+ +
ek
+
+
Baumwolle
+
+
coton
+
+
cotton
+
+ +
1244
+
+
+
+ + +
walâ
+
+ + + + +so ist's +there it is, there we are +voilà! + +
ek
+
+
so ist's
+
+
voilà!
+
+
+
+ + +
gbû mbëtï ngangü
+
+ + + + + + + + +eifrig studieren +study diligently +persévérer dans les études + + +
ek
+
+
eifrig studieren
+
+
+
+ + +
gïngö wâlï wala kôlï tî zo
+
+ + + + + + + + + + + + + + + + + + + + +Ehebruch +adultery +adultère + + +
tl
+
+
adultère
+
+
adultery
+
+
Ehebruch
+
+ +
0947
+
+
+
+ + +
zaranga
+
+ + + + +horse antelope, roan +antilope chevaline + +
+ + +
ô
+
+ + +
o
+ +
3 / 2 [lb]
+
+
+ + + +Ausdruck von Verbundheit +mark eliciting warmth +marque de familiarité + +
Ausdruck von der Verbundheit, Freundlichheit
+
mark at the end of a phrase eliciting warmth or friendship
+
marque de familiarité à la fin d'une phrase qui sollicite la réponse de l'audience
+
+ +
Mo gue nzönî-oô.
+ +
Auf Wiedersehen. (Komm gut heim.)
+
See you later. (Go well.)
+
Au revoir. (Vas bien.)
+
+
+ +
ek
+
+
Ausdruck von Verbundheit
+
+
+
+ + +
pitäan
+
+ + + + +Prostitution +prostitution +prostitution + + +
ek
+
+
prostitution
+
+
prostitution
+
+
Prostitution
+
+
+
+ + +
hürüngö tî ndeke
+
+ + + + + + + + + + + + +(Vogel-)Schwarm +flock (of birds), flight of birds +vol, volée (d'oiseaux) + + +
tl
+
+
(Vogel-)Schwarm
+
+
flock (of birds), flight of birds
+
+
vol, volée (d'oiseaux)
+
+ +
1070
+
+
+
+ + +
demerdëe
+
+ + + + +sich alleine zurechtfinden +fend for oneself +se débrouiller + + +
ek
+
+
sich alleine zurechtfinden
+
+
+
+ + +
kânga mapîâ
+
+ + + + + + + + +ein Hüfttuch tragen +wear a pagne +porter un pagne + +
ein Hüfttuch tragen (Wickeljupe)
+
wear a pagne (wrap-around skirt)
+
porter un pagne
+
+ + +
ek
+
+
ein Hüfttuch tragen
+
+
+
+ + +
lütï
+
+ + + + +stehen +stand +être, se tenir debout + + + + +
tl
+
+
être, se tenir debout
+
+
stand
+
+
stehen
+
+ + +
0169
+
+
+ + + +anhalten, aufhören +cease, stop +cesser, s'arrêter + + +
tl
+
+
anhalten, aufhören
+
+
cease, stop
+
+
cesser, s'arrêter
+
+ +
1505
+
+
+
+ + +
ndo tî sükülängö ngû
+
+ + + + + + + + + + + + + + + + +Badehaus, Dusche +bathing place, bath house +douche + + +
tl
+
+
Badehaus, Dusche
+
+
bathing place, bath house
+
+
douche
+
+ +
0680
+
+
+
+ + +
îri ndo na
+
+ + + + + + + + +um Hilfe rufen +call for help +faire appel à + + +
ek
+
+
um Hilfe rufen
+
+
+
+ + +
vundü
+
+ + + + +Leid, Traurigkeit +grief, sadness +chagrin, tristesse + + +
ek
+
+
chagrin
+
+
grief
+
+
Leid
+
+ +
i-1035
+
+
+
+ + +
+
+ + +geschlagen (sein) +defeated (be) +vaincu, battu, défait (être) + +
Equipe tî RCA azuêe sïönî mîngi. Âla tï.
+ +
The CAR team played poorly. It was defeated.
+
+
+ + +
originally zo sô atï. Longbo suggested Zo/lo sô mbênî zo asö benda na ndö tî lo.
+
+ +
tl
+
+
(être) vaincu, battu, défait
+
+
defeated
+
+
geschlagen (sein)
+
+ +
0875
+
+
+ + + +versagen +fail +échouer + +
Examen nî ahön ngangü tî lo. Lo tï.
+ +
The test was too hard for him. He failed.
+
+
+ + +
tl
+
+
échouer
+
+
fail
+
+
versagen
+
+ +
0298
+
+
+
+ + +
dû tî kötä ngû sô ahôle
+
+ + + + + + + + + + + + + + + + +Flussbett (trocken) +riverbed (dry) +wadi, lit sec de rivière + +
Flussbett (trocken)
+
+
riverbed (dry)
+
+
wadi, lit sec de rivière
+
+ + +
1295
+
+
+
+ + +
mbütü
+
+ + + + +Sand +sand +sable + + +
tl
+
+
sable
+
+
sand
+
+
Sand
+
+ +
1274
+
+
+
+ + +
+
+ + + + +üben, ausüben +practice, exercise +pratiquer, exercer + + +
ek
+
+
üben, ausüben
+
+
+
+ + +
hûnda lêgë
+
+ + + + + + + + + + + +sich verabschieden +take one's leave, say goodbye +prendre congé + +
+ + +
kono yâ nî
+
+ + + + + + + + + + +
kɔ.nɔ ya ni
+ +
1.1 3 3
+
+
+ + + +vergrößern +enlarge +agrandir + + +
tl
+
+
agrandir
+
+
enlarge
+
+
vergrößern
+
+ +
1508
+
+
+
+ + +
yê tî yüngü na kêtê gerê
+
+ + + + + + + + + + + + +Knöchelreif, Knöchelspange +ankle ring, bangle +anneau de cheville + + +
tl
+
+
ankle ring, bangle
+
+
anneau de cheville
+
+
Knöchelreif, Knöchelspange
+
+ +
0553
+
+
+
+ + +
hän
+
+ + + + +aufgehen, hell werden +dawn, light up +éclaircir + +
lê tî lo ahän.
+ +
ist aufmerksam, vorsichtig, schwer zu täuschen
+
he is alert, prudent, hard to trick
+
il est vigilant, attentif, difficile à tromper
+
+
+ + +
ek
+
+
aufgehen, hell werden
+
+
éclaircir
+
+
+
+ + +
lîkirî
+
+ + + + +Unwissenheit +ignorance +ignorance + + +
ek
+
+
ignorance
+
+
ignorance
+
+
Unwissenheit
+
+
+
+ + +
dema na söngö terê
+
+ + + + + + + + + + + + + + + + +stöhnen (vor Schmerzen) +groan (with pain) +gémir (de douleur) + + +
tl
+
+
gémir (de douleur)
+
+
groan (with pain)
+
+
stöhnen (vor Schmerzen)
+
+ + +
0116
+
+
+
+ + +
sâra limo
+
+ + + + + + + + + + + + +zeichnen +draw (picture) +dessiner + + +
tl
+
+
dessiner
+
+
draw (picture)
+
+
zeichnen
+
+ +
0897
+
+
+
+ + +
ndâ
+
+ + + + +Grund, Ursprung, Bedeutung +cause, basis, reason +origine, fondement, raison + + + + +
ek
+
+
Grund, Ursprung, Bedeutung
+
+
+ + + +Bedeutung +meaning +sens, signification + + +
tl
+
+
Bedeutung
+
+
meaning
+
+
sens, signification
+
+ +
0432
+
+
+
+ + +
eglîze
+
+ + + + +Kirche +church +église + + +
ek
+
+
church
+
+
église
+
+
Kirche
+
+
+
+ + +
Pakara
+
+ + + + +Herr +Mister +Monsieur + + +
ek
+
+
Herr
+
+
Mister
+
+
Monsieur
+
+
+
+ + +
kpangäbä
+
+ + + + +Maniok-Wurzelknolle, Maniok-Wurzel +sweet cassava root +tubercule de Cassava sucré + + +
ek
+
+
Maniok-Wurzelknolle, Maniok-Wurzel
+
+
+ + + +Bulbe, Tuberkel +bulb, tuber +bulbe, tubercule + + +
tl
+
+
bulb, tuber
+
+
bulbe, tubercule
+
+
Bulbe, Tuberkel
+
+ + +
1184
+
+
+
+ + +
bübängö nî
+
+ + + + +Schaden +damage +dégât + +
mle-1226
+
+
+
+ + +
lâmba
+
+ + + + +Lampe +lamp +lampe + + +
ek
+
+
lamp
+
+
lampe
+
+
Lampe
+
+ +
0698
+
+
+
+ + +
dëbä
+
+ + + + +verfluchen +curse +maudire + + +
tl
+
+
curse
+
+
maudire
+
+
verfluchen
+
+ +
0920
+
+
+ + + +Fluch +curse +malédiction + + +
ek
+
+
curse
+
+
Fluch
+
+
malédiction
+
+
+
+ + +
kanîfu
+
+ + + + +Taschenmesser +pocket knife +canif + + +
ek
+
+
canif
+
+
Taschenmesser
+
+
+
+ + +
terê tî da
+
+ + + + +wand eines Hauses +wall of a house +mur d'une maison + + + +
0664
+
+
+
+ + +
lakpängbä
+
+ + +glatzköpfig (sein), kahl +bald (be) +chauve (être) + +
Lo lakpängbä. [LB]
+ +
He is bald
+
Il est chauve
+
+
+ + +
& mle
+
+ +
ek
+
+
(be) bald
+
+
(être)
+
+
chauve
+
+
glatzköpfig (sein), kahl
+
+ + +
0190
+
+
+
+ + +
tumba na gîgî
+
+ + + + + + + + + + + +rausschmeißen +kick out +jeter dehors + + +
ek
+
+
rausschmeißen
+
+
+
+ + +
mû batême
+
+ + + + + + + + + + + +getauft werden +baptized (be) +recevoir le baptême + + +
ek
+
+
getauft werden
+
+
+
+ + +
ngôlô
+
+ + +
???
+
+ + + +Schnecke +snail +escargot + + +
tl
+
+
escargot
+
+
Schnecke
+
+
snail
+
+ +
1094
+
+
+
+ + +
bîâ
+
+ + + + +Lied +song, hymn +chant + + + + +
tl
+
+
chant
+
+
Lied
+
+
song, hymn
+
+ +
0879
+
+
+
+ + +
küä tî terê tî nzö
+
+ + + + + + + + + + + + + + + + +Maishaar (?) +silk, hair (of maize) +poils, "barbe" (de maïs) + + +
tl
+
+
Maishaar (?)
+
+
poils, "barbe" (de maïs)
+
+
silk, hair (of maize)
+
+ +
1186
+
+
+
+ + +
pete
+
+ + + + +kneten +knead +pétrir + + + + +
ek
+
+
knead
+
+
kneten
+
+
pétrir
+
+ +
0601
+
+
+ + + +(zer)drücken, quetschen +press, squeeze +presser + + +
tl
+
+
(zer)drücken, quetschen
+
+
press, squeeze
+
+
presser
+
+ +
1456
+
+
+ + + +zerquetschen +crush +écraser + + +
ek
+
+
crush
+
+
écraser
+
+
zerquetschen
+
+ +
1457
+
+
+
+ + +
sô ngbondâ
+
+ + + + + + + + + + + + +prügeln +spank (child) +donner des fessées + + +
tl
+
+
donner des fessées
+
+
prügeln
+
+
spank (child)
+
+ +
0490
+
+
+
+ + +
gbegôgbïä
+
+ + +
gbɛ.gɔ.gbia
+ +
1.3.22
+
+
+ + + +(offizieller) Sprecher des Präsidenten +presidential spokesperson +porte-parole présidentiel + + +
ek
+
+
(offizieller) Sprecher des Präsidenten
+
+
+
+ + +
mve
+
+ + + + + + + +Besitzer +owner +propriétaire, maître + + +
Rare
+
+ +
ek
+
+
Besitzer
+
+
owner
+
+
propriétaire, maître
+
+ +
0812
+
+
+
+ + +
deku tî ngonda
+
+ + + + + + + + + + + +Ratte +rat +rat + + +
tl
+
+
rat
+
+
rat
+
+
Ratte
+
+ +
1010
+
+
+
+ + +
singîla
+
+ + + + +Dank +thanks +remerciement + + +
ek
+
+
Dank
+
+
remerciement
+
+
thanks
+
+
+
+ + +
dû tî sembë
+
+ + + + + + + + +tiefer Teller, Schüssel +bowl +assiette creuse, bol + + +
tl
+
+
assiette creuse, bol
+
+
bowl
+
+
tiefer Teller, Schüssel
+
+ +
0621
+
+
+
+ + +
kâmba sô a kânga yângâ nî
+
+ + + + + + + + + + + + +Knoten +knot +nœud + + +
tl
+
+
knot
+
+
Knoten
+
+
nœud
+
+ + +
0654
+
+
+
+ + +
töngana tî lâkûê
+
+ + + + + + + + + + + + + + +wie gewöhnlich +as usual +comme d'habitude + +
Ë yeke te kôbe tî ndäpêrêrê na ngbonga 6, töngana tî lâkûê.
+ +
Wir frühstücken wie gewohnt um 6:00 Uhr.
+
We will eat breakfast at 6:00 a.m., as usual.
+
Nous prendrons le petit déjeuner à 6h00, comme d'habitude.
+
+
+
+
+ + +
pîka lê
+
+ + + + + + +attraktiv, anziehend +attractive +attirant + + + + +
ek
+
+
attirant
+
+
attractive
+
+
attraktiv, anziehend
+
+
+
+ + +
kânga
+
+ + + + +binden, anbinden (eine Last) +fasten, bind (load) +attacher, lier (un fardeau) + + + + +
tl
+
+
attacher, lier (un fardeau)
+
+
binden, anbinden (eine Last)
+
+
fasten, bind (load)
+
+ +
0655
+
+
+ + + +(an-) binden, knoten +tie (knot) +attacher, nouer + + +
tl
+
+
(an-) binden, knoten
+
+
attacher, nouer
+
+
tie (knot)
+
+ +
0656
+
+
+ + + +schließen +close +fermer + + +
ek
+
+
close
+
+
fermer
+
+
schließen
+
+ +
0640
+
+
+ + + +anbinden (Schafe, Ziegen) +tether (sheep, goats) +attacher (moutons, chèvres) + + +
tl
+
+
anbinden (Schafe, Ziegen)
+
+
attacher (moutons, chèvres)
+
+
tether (sheep, goats)
+
+ +
0771
+
+
+ + + +hängen +hang +pendre, suspendre + +
i-763
+
+
+
+ + +
yângâ tî ngbëndä
+
+ + + + + + + + + + + + +Stöpsel +stopper, plug +bouchon + + +
tl
+
+
bouchon
+
+
stopper, plug
+
+
Stöpsel
+
+ +
0630
+
+
+
+ + +
mä terê
+
+ + + + + + + + +passen +befit, suit +convenir (à quelqu'un) + + +
tl
+
+
befit, suit
+
+
convenir (à quelqu'un)
+
+
passen
+
+ +
0429
+
+
+ + + +übereinstimmen, +agree, get along with +se mettre d'accord, se comprendre + + +
ek
+
+
agree, get along with
+
+
se mettre d'accord, se comprendre
+
+
übereinstimmen,
+
+ +
0472
+
+
+ + + +passen sich einigen übereinstimmen, sich verstehen sich vertragen +make up +s'arranger + + +
ek
+
+
make up
+
+
passen sich einigen übereinstimmen, sich verstehen sich vertragen
+
+
s'arranger
+
+ +
0513
+
+
+
+ + +
bingbi tënë
+
+ + + + +sich streiten +argue +se disputer + + +
0465
+
+
+
+ + +
lêgëôko töngana
+
+ + + + + + + + +gleicherweise, gleich wie +the same as, like +de la même manière, comme + +
A doroko kombâ lêgëôko töngana a doroko kôndo.
+ +
One butchers a guinea the same as one butchers a chicken.
+
+
+ + +
ek
+
+
gleicherweise, gleich wie
+
+
+
+ + +
zîa bê tî ... na (ndö)
+
+ + + + +seien Sie ernst +serious (be) +concentré (être) + +
mle-4229
+
+
+
+ + +
sisä
+
+ + + + +Sehne +tendon +tendon + + +
tl
+
+
Sehne
+
+
tendon
+
+
tendon
+
+ +
0090
+
+
+
+ + +
nzöpäsä
+
+ + +
nzɔ.pa.sa
+ +
2.2.2
+
+
+ + + +Glück +good luck +bonheur, chance + + +
ek
+
+
Glück
+
+
+
+ + +
tara terê
+
+ + + + + + + + +Wettkampf machen +have a match +essayer ses forces + + +
ek
+
+
Wettkampf machen
+
+
+
+ + +
kötä kângbi
+
+ + + + + + + + +Kapitel +chapter +chapitre + + +
ek
+
+
chapitre
+
+
chapter
+
+
Kapitel
+
+
+
+ + +
lîngbi na
+
+ + + + + + + + +verdienen +deserve +mériter + + +
ek
+
+
deserve
+
+
mériter
+
+
verdienen
+
+ +
mle-1323
+
+
+
+ + +
zere
+
+ + + + +verachten, schlecht behandeln +scorn, despise +mépriser + + +
ek
+
+
mépriser
+
+
scorn, despise
+
+
verachten, schlecht behandeln
+
+ +
0286
+
+
+
+ + +
bibê
+
+ + + + + + + + +Gedanken, Ideen +thoughts, ideas +idées, pensées + + +
ek
+
+
Gedanken, Ideen
+
+
+ + + +Verstand +mind +raison + + +
ek
+
+
mind
+
+
raison
+
+
Verstand
+
+
+ + + +Meinung +opinion +opinion + + +
ek
+
+
+
+ + +
gbïngö tî yäkä
+
+ + + + + + + + +Buschfeuer +brush fire +feu de brousse + + +
ek
+
+
Buschfeuer
+
+
+
+ + +
koto (tî bäbolo)
+
+ + +
ko.to
+ +
1.1
+
+
+ + + +hügel +mound of soil (for plants like sweet potatoes) +butte + + +
i-120
+
+
+
+ + +
mbo
+
+ + +
mbo
+ +
1
+
+
+ + + +Hund +dog +chien + + +
tl
+
+
chien
+
+
dog
+
+
Hund
+
+ +
0991
+
+
+
+ + +
mazïi
+
+ + + + +Magie +magic +magie + + +
ek
+
+
magic
+
+
magie
+
+
Magie
+
+
+
+ + +
gï sô
+
+ + + + + + + + +so bald +as soon as +aussitôt + +
Gï sô lo sï, ë löndö tî gue.
+ +
As soon as he came, we got up and went.
+
+
+ + +
ek
+
+
aussitôt
+
+
so bald
+
+
+
+ + +
ngû tî lê
+
+ + + + + + + + +Tränen +tears +larmes + + + + +
tl
+
+
larmes
+
+
tears
+
+
Tränen
+
+ +
0097
+
+
+
+ + +
ôke
+
+ + +
ɔ.kɛ
+ +
3.1
+
+
+ + + +wieviel(e)? +how much, how many? +combien ? + +
Ayeke tî fûta lo pâta ôke?
+ +
One should pay him how much?
+
+
+ + +
tl
+
+
combien ?
+
+
how much, how many?
+
+
wieviel(e)?
+
+ +
1690
+
+
+
+ + +
wamüä
+
+ + + + + + + +Witwe +widow +veuve + + +
tl
+
+
veuve
+
+
widow
+
+
Witwe
+
+ + +
0371
+
+
+
+ + +
sûru këkë
+
+ + + + + + + + +Holz brechen +split wood +fendre le bois + + +
tl
+
+
Holz brechen
+
+
+
+ + +
lôso
+
+ + +
lɔ.sɔ
+ +
3.1
+
+
+ + + +Reis +rice +riz + + +
Oryza sativa
+
+ +
ek
+
+
Reis
+
+
rice
+
+
riz
+
+ +
1236
+
+
+
+ + +
wafängö (yê)
+
+ + + + + + + + + + + + +Lehrer +teacher +enseignant + + +
ek
+
+
enseignant
+
+
Lehrer
+
+
teacher
+
+
+ + + +Meister +master +maître + + +
tl
+
+
maître
+
+
master
+
+
Meister
+
+ + +
0394
+
+
+
+ + +
gôro
+
+ + +
gɔ.ɾɔ
+ +
3.1
+
+
+ + + +Kolanuß +kola nut +noix de kola + + +
Cola nitida
+
+ +
tl
+
+
cola nut
+
+
Kolanuß
+
+
noix de cola
+
+ +
1239
+
+
+
+ + +
sumâli
+
+ + + + + + + +eingeweihte Person des Ngakola-Ritus +initiated person of specific Ngakola rite +initié de la divinité de Ngakola + + +
ek
+
+
eingeweihte Person des Ngakola-Ritus
+
+
+
+ + +
kpälë
+
+ + + + +Problem +problem +problème + + +
tl
+
+
problem
+
+
Problem
+
+
problème
+
+ +
0325
+
+
+ + + +Anlass +event +événement + + +
ek
+
+
Anlass
+
+
évènement
+
+
event
+
+
+ + + +Mühsal, Bedrängnis +hardship, distress +difficulté, détresse + + +
tl
+
+
difficulté, détresse
+
+
hardship, distress
+
+
Mühsal, Bedrängnis
+
+ +
0319
+
+
+
+ + +
lê tî wâ
+
+ + + + + + + + +Glut +embers, live charcoal +braise + + + + +
tl
+
+
braise
+
+
Glut
+
+
+ + + +Hölle +hell +enfer + + +
ek
+
+
enfer
+
+
hell
+
+
Hölle
+
+
+
+ + +
kilöo
+
+ + +
ki.loo
+ +
1.21
+
+
+ + + +Kilogramm +kilogram +kilogramme + + +
ek
+
+
kilogram
+
+
Kilogramm
+
+
kilogramme
+
+
+ + + +Waage +scale +balance + + +
ek
+
+
balance
+
+
scale
+
+
Waage
+
+
+
+ + +
dîngo
+
+ + +
di.ngo
+ +
3.1
+
+
+ + + +Grille +cricket +grillon + + +
tl
+
+
cricket
+
+
Grille
+
+
grillon
+
+ +
1133
+
+
+
+ + +
kîri sïönî na ...
+
+ + + + + + + + + + + + + + +Rache bekommen +to get revenge +se venger + +
+ + +
fâ yâ tî
+
+ + + + + + + + + + + + +(zer-)brechen +break +casser + + +
tl
+
+
(zer-)brechen
+
+
break
+
+
casser
+
+ +
1460
+
+
+ + + +aufschneiden +slice +trancher + + +
tl
+
+
aufschneiden
+
+
slice
+
+
trancher
+
+ + +
0594
+
+
+
+ + +
timöon
+
+ + +
ti.mɔ̰ɔ̰
+ +
1.21
+
+
+ + + +Zeuge +witness +témoin + +
i-993
+
+
+
+ + +
ndo
+
+ + +
ndo
+ +
1
+
+
+ + + +Ort +place +endroit, lieu + + + + +
tl
+
+
endroit, lieu
+
+
Ort
+
+
place
+
+ +
1255
+
+
+
+ + +
kürü nyama
+
+ + + + + + + + +Trockenfleisch +jerky meat +viande boucanée + + + + +
ek
+
+
Trockenfleisch
+
+
+
+ + +
lurêe
+
+ + + + + + + +rollen +roll +rouler + + +
ek
+
+
roll
+
+
rollen
+
+
rouler
+
+ + +
1414
+
+
+
+ + +
bäbolo
+
+ + + + +
ba.bɔ.lɔ / ba.bɔ.ɾɔ
+ +
2.1.1
+
+
+ + + +Süßkartoffel +sweet potato +patate douce + + +
Ipomoea batatas
+
+ +
tl
+
+
patate douce
+
+
Süßkartoffel
+
+
sweet potato
+
+ +
1230
+
+
+
+ + +
tîtene
+
+ + + + +damit +so that +pour que + +
ek
+
+
damit
+
+
+
+ + +
kûku na likünü
+
+ + + + + + + + +knien +kneel +s'agenouiller + + +
ek
+
+
kneel
+
+
knien
+
+
s'agenouiller
+
+ + +
0176
+
+
+
+ + +
tûku sörö
+
+ + + + + + + + + + + + +spucken +spit +cracher + + +
ek
+
+
cracher
+
+
spit
+
+
spucken
+
+ + +
0111
+
+
+
+ + +
zî tënë na li tî ...
+
+ + + + +verzeihen +pardon, forgive +pardonner + +
& i-745
+
+ +
mle-3434
+
+
+
+ + +
bale
+
+ + + +
fr ling: ebale (kc)
+
+
+ + + +Fluss +river +fleuve + + +
ek
+
+
fleuve
+
+
Fluss
+
+
river
+
+ + +
1293
+
+
+
+ + +
yê tî pëngö pupu
+
+ + + + + + + + + + + + + + + + +Ventilator +fan +éventail + + +
tl
+
+
éventail
+
+
fan
+
+
Ventilator
+
+ +
0699
+
+
+
+ + +
hë ...
+
+ + + + +verspotten +make fun of, laugh at +se moquer de + +
i-664
+
+
+
+ + +
nzenze
+
+ + + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + + +
ek
+
+
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ + + + + +
0755
+
+
+ + + +Sichel +sickle +faucille + + + +
0754
+
+
+
+ + +
hûru ngbângbâ
+
+ + + + + + + + + + + +mit Küssen begrüssen +greet with kisses on the cheeks +faire des accolades + + +
ek
+
+
faire des accolades
+
+
greet with kisses on the cheeks
+
+
mit Küssen begrüssen
+
+ +
0486
+
+
+
+ + +
körö
+
+ + +
kɔ.ɾɔ
+ +
2.2
+
+
+ + + +Erkältung +cold +rhume + + + + +
ek
+
+
cold
+
+
Erkältung
+
+
rhume
+
+ +
i-881
+
+
+ + + +Schleim +phlegm +flegme, glaire + + +
tl
+
+
phlegm
+
+
Schleim
+
+ +
0094
+
+
+
+ + +
köngbö
+
+ + +
kɔ.ngbɔ
+ +
2.2 / 3.2 [lb]
+
+
+ + + +Kind nach Zwillingen geboren +child born after twins +enfant né après des jumeaux + + +
ek
+
+
Kind nach Zwillingen geboren
+
+
+
+ + +
këkë tî fige
+
+ + + + + + + + + + + + +Feigenbaum +fig tree +figuier + + +
Ficus spp.
+
+ +
tl
+
+
Feigenbaum
+
+
fig tree
+
+
figuier
+
+ +
1165
+
+
+
+ + +
fafadë
+
+ + + + +sofort, sogleich +immediately +tout de suite, immédiatement + +
A lîngbi lo gä fafadë!
+ +
He must come immediately!
+
+
+ + +
ek
+
+
immediately
+
+
sofort, sogleich
+
+ +
mle-2461
+
+
+
+ + +
taâ
+
+ + + + +wahr +real, true (be) +vrai (être) + +
Asâra sô na taâ wên.
+ +
This is made of real metal.
+
+
+ + +
ek
+
+
vrai
+
+
wahr
+
+
+ + + +eigentlich, wirklich, tatsächlich +really, truly +en réalité + +
Mbï gue taâ na yâ tî ködrö nî.
+ +
This is truly my mother who gave birth to me.
+
+
+ + +
ek
+
+
eigentlich, wirklich, tatsächlich
+
+
en réalité
+
+
really, truly
+
+ +
1695
+
+
+
+ + +
sänzö
+
+ + +
sa.nzo
+ +
2.2
+
+
+ + + +Eiter +pus +pus + + +
tl
+
+
Eiter
+
+
pus
+
+
pus
+
+ +
0221
+
+
+
+ + +
na mbâgë na mbâgë
+
+ + + + + + + + +rundherum +on all sides, from everywhere +de partout, de tous les côtés + +
Ngû apîka na mbâgë na mbâgë.
+ +
It rained all around.
+
+
+ + +
ek
+
+
rundherum
+
+
+
+ + +
sâki
+
+ + + + +Sack +sack +sac + + +
ek
+
+
sac
+
+
sack
+
+
Sack
+
+ +
0624
+
+
+
+ + +
bâa ... na ngonzo
+
+ + + + +stirnrunzeln +frown +avoir un regard noir, froncer les sourcils + +
sc [Ps 80.16]
+
+ +
mle-2016
+
+
+
+ + +
ngungu
+
+ + + + +Mücke +mosquito +moustique + + +
tl
+
+
mosquito
+
+
moustique
+
+
Mücke
+
+ +
1142
+
+
+
+ + +
hînga (kôlï, wâlï)
+
+ + + + + + + + + + + + + + + + +Geschlechtsverk ehr haben +copulate +faire l'amour + +
copulate
+
+
faire l'amour
+
+
Geschlechtsverk ehr haben
+
+ + + +
0487
+
+
+
+ + +
ânarûmbatêe
+
+ + + + +Mädchenhüpfspiel +hopping game for girls +jeu des filles + +
Mädchenhüpfspiel, wo sich alle im Kreis aufstellen und abwechselnd in der Mitte tanzen
+
hopping game for girls who form a circle and take turns dancing in the middle
+
jeu des filles qui se mettent en circle au centre duquel elles dansent à tour de rôle
+
+ + +
ek
+
+
Mädchenhüpfspiel
+
+
+
+ + +
sâra kôgara
+
+ + + + + + + + + + + +für die Schwiegereltern eines Mädchens arbeiten, um um seine Hand anzuhalten +work for a girl's in-laws to ask for her hand in marriage +donner ses services aux parents d'une fille pour demander la main + + +
ek
+
+
für die Schwiegereltern eines Mädchens arbeiten, um um seine Hand anzuhalten
+
+
+
+ + +
bere
+
+ + + + +leugnen +deny +nier + + +
ek
+
+
deny
+
+
leugnen
+
+
nier
+
+ + +
0470
+
+
+
+ + +
tambêla
+
+ + + + + + + +spazieren, gehen +go on a walk +marcher + + +
ek
+
+
go on a walk
+
+
marcher
+
+
spazieren, gehen
+
+ + +
0154
+
+
+ + + +sich bewegen, umziehen +move (intr) +bouger, se déplacer + + +
ek
+
+
bouger, se déplacer
+
+
move (intr)
+
+
sich bewegen, umziehen
+
+ +
1397
+
+
+
+ + +
sêngê
+
+ + +
verbe + sêngê
+ +
+ + + +kein Problem +no problems +sans problème + +
Mbï yeke sêngê.
+ +
Mir geht es gut
+
I'm fine
+
Ça va bien
+
+
+ +
Ayeke sêngê.
+ +
es macht nichts, gern geschehen
+
it doesn't matter, don't mention it
+
ça ne fait rien, ce n'est rien
+
+
+ + +
ek
+
+
kein Problem
+
+
+ + + +kein Problem +without difficulty +sans problème + +
Atâa sô mbï hînga lêgë nî pëpe, fadë mbï sï sêngê
+ +
Even though I don't know the way, I will arrive without difficulty.
+
+
+ + +
ek
+
+
kein Problem
+
+
+ + + +einfach so, kostenlos +without anything, free of charge +sans rien, gratuitement + +
Lo dëköngö sêngê.
+ +
He shouts without purpose.
+
+
+ + +
ek
+
+
einfach so, kostenlos
+
+
+ + + +wertlos +without value (be) +sans valeur (être) + +
Atêne so ayeke diamanâa äpe. Ala yeke sêngê!
+ +
Those stones are not diamonds. They are of no value.
+
+
+ + +
ek
+
+
wertlos
+
+
+ + + +nackt (sein) +naked (be) +nu (être) + +
Lo yeke sêngê. Lo yü bongö äpe.
+ +
He is naked. He is wearing no clothing.
+
+
+ + +
ek
+
+
(être) nu
+
+
nackt (sein)
+
+
naked
+
+ + +
0540
+
+
+
+ + +
gë dû
+
+ + + + + + + + + + + + + + + +graben +dig +creuser + + +
tl
+
+
creuser
+
+
dig
+
+
graben
+
+ +
0740
+
+
+
+ + +
kêtê ngû-Nzapä
+
+ + + + + + + +Nieselregen +drizzle +pluie fine, bruine + + +
tl
+
+
drizzle
+
+
Nieselregen
+
+
pluie fine, bruine
+
+ +
1336
+
+
+
+ + +
te yâ nî
+
+ + + + + + + + + + + + +knacken, knabbern +crunch +croquer + + +
tl
+
+
croquer
+
+
crunch
+
+
knacken, knabbern
+
+ +
0142
+
+
+ + + +kauen +chew +mâcher + + +
tl
+
+
chew
+
+
kauen
+
+
mâcher
+
+ +
0143
+
+
+
+ + +
kpo na zeme
+
+ + + + + + + + + + + +
+ + +
kpêngba pëpe
+
+ + +
originally: âde (~angbâ) ti kpîngba pëpe
+
+ + + + + + + + + +unreif (sein) +unripe (be) +non-mûr, vert (être) + +
Ndâli tî sô akpêngba pëpe, mango nî akpîi mîngi.
+ +
Because it is unripe, the mango is very sour.
+
+
+ + +
tl
+
+
(être) non-mûr, vert
+
+
unreif (sein)
+
+
unripe
+
+ +
1249
+
+
+
+ + +
töndö
+
+ + +
to.ndo
+ +
2.2
+
+
+ + + +Bericht +report, account +rapport, compte rendu + + +
tl
+
+
Bericht
+
+
rapport, compte rendu
+
+
report, account
+
+ + +
0483
+
+
+
+ + +
+
+ + + + +logophoric_SG pronoun +pronom logophorique_SG + + +
ek
+
+
+
+ + +
dëkîte
+
+ + + + +zweifeln +doubt +douter (que) + + +
ek
+
+
doubt
+
+
douter
+
+
zweifeln
+
+ +
mle-1467
+
+
+ + + +(be-) streiten, debattiere +argue, debate +disputer, débattre avec + + +
ek
+
+
(be-) streiten
+
+
argue
+
+
disputer
+
+ +
mle-1252
+
+
+
+ + +
zekë
+
+ + + + +Kauri Muschel +cowrie shell +cauris + + + + +
ek
+
+
cauri
+
+
cowrie shell
+
+
Kauri Muschel
+
+ +
0818
+
+
+
+ + +
düngö
+
+ + +
du.ngɔ
+ +
2.2
+
+
+ + + +Geburt, Entbindung +birth, delivery +naissance, accouchement + + +
ek
+
+
Geburt, Entbindung
+
+
+
+ + +
gi bê
+
+ + + + + + + + +sich sorgen +upset, anxious (be) +se troubler + + + + +
ek
+
+
sich sorgen
+
+
+ + + +traurig (sein) +sad (be) +triste (être) + + +
ek
+
+
(être) triste
+
+
sad
+
+
traurig (sein)
+
+ +
0271
+
+
+ + + +zögern +hesitate +hésiter + + +
tl
+
+
hesitate
+
+
hésiter
+
+
zögern
+
+ +
0290
+
+
+
+ + +
sâra koto (tî bäbolo)
+
+ + + + +hügel +hill up soil, earth up (for plants like sweet potatoes) +butter (les ignames) + + +
i-121
+
+
+
+ + +
fuku tî gozo
+
+ + + + + + + + + + + +Maniokmehl +manioc flour +farine de manioc + + +
ek
+
+
Maniokmehl
+
+
+
+ + +
mbîrîmbîrî
+
+ + + + +gerade +straight (be) +droit (être) + +
droit
+
+
gerade
+
+
straight
+
+ +
1530
+
+
+ + + +gerade +just (be) +juste (être) + +
Ngbanga nî ayeke mbîrîmbîrî.
+ +
The judgment was just.
+
Le procès était juste.
+
+
+ +
mle-2673
+
+
+
+ + +
petoröle
+
+ + +
???
+
+ + + +Kerosin, Petroleum +kerosene, paraffin +pétrole + + +
ek
+
+
Kerosin, Petroleum
+
+
pétrole
+
+
+
+ + +
matânga
+
+ + + + +Feier +celebration +fête + + +
tl
+
+ + +
0581
+
+
+ + + +Festessen, Festmahl +feast +fête, festin + + + +
0933
+
+
+ + + +Zeremonie +ceremony +cérémonie + + +
mle-0800
+
+
+ + + +Feiertag +holiday +jour de fête + + +
ek
+
+
Feiertag
+
+
holiday
+
+
+
+ + +
papa
+
+ + +
papa (tî ködrö)
+ +
+ + + + + + +Löffel +spoon +cuillère + + + + +
ek
+
+
cuillère
+
+
Löffel
+
+
spoon
+
+
+ + + +(traditioneller) Löffel +spoon (traditional) +cuillère (traditionnelle) + +
Lo te kôbe na papa tî ködrö.
+ +
He eats food with a traditional spoon.
+
Il prend son repas avec une cuillère traditionnelle.
+
+
+ + +
tl
+
+
cuillère (traditionnelle)
+
+
spoon (traditional)
+
+
traditioneller) Löffel
+
+ + +
0623
+
+
+
+ + +
godobe
+
+ + +
gɔ.dɔ.be
+ +
1.1.1
+
+
+ + + +Dieb, Taugenichts +thief, miscreant +délinquant + + +
ek
+
+
délinquant
+
+
Dieb, Taugenichts
+
+
+
+ + +
bânge
+
+ + + + + + + +Marihuana, Haschisch +marijuana +chanvre indien + + +
ek
+
+
Marihuana, Haschisch
+
+
marijuana
+
+
+
+ + +
hurukuzü
+
+ + + + +Verwandlung, Metamorphose +metamorphosis +métamorphose + + +
ek
+
+
métamorphose
+
+
metamorphosis
+
+
Verwandlung, Metamorphose
+
+
+
+ + +
zigidâ
+
+ + + + +Hüftenperlschnur +string of beads worn around the hips +collier de grains (autour du bassin) + + +
ek
+
+
Hüftenperlschnur
+
+
+
+ + +
gä kötä
+
+ + + + + + + + +wachsen, erwachsen werden +grow up +grandir, devenir adulte + + + + +
ek
+
+
wachsen, erwachsen werden
+
+
+
+ + +
sâra nî kpângbârâ
+
+ + + + + + + + +abflachen, plätten +flatten +aplatir, aplanir + + +
tl
+
+
abflachen, plätten
+
+
aplatir, aplanir
+
+
flatten
+
+ +
1526
+
+
+
+ + +
pito
+
+ + +
pi.to
+ +
1.1
+
+
+ + + +Vorhaut +foreskin +prépuce + + +
ek
+
+
foreskin
+
+
prépuce
+
+
Vorhaut
+
+
+
+ + +
pörö tî lê
+
+ + + + + + + + +Augenlied +eyelid +paupière + + + + +
tl
+
+
Augenlied
+
+
eyelid
+
+
paupière
+
+ +
0008
+
+
+
+ + +
tombôka
+
+ + + + +
to.mbo.ka
+ +
1.3.1
+
+
+ + + +rebellieren +rebel +se révolter + + + + +
ek
+
+
rebel
+
+
rebellieren
+
+
+ + + +Tumult, Wahnsinn +tumult, madness +tumulte, folie + + +
ek
+
+
Tumult, Wahnsinn
+
+
+
+ + +
gügümä
+
+ + + + +Stottern +stuttering +bégaiement + + +
ek
+
+
bégaiement
+
+
Stottern
+
+
stuttering
+
+
+
+ + +
gi kûâ
+
+ + + + + + + + + + + +ein Draufgänger (sein), tollkühn/waghalsig (sein) +be a daredevil, take mortal risks +prendre des risques (mortels) + + +
ek
+
+
ein Draufgänger (sein), tollkühn/waghalsig (sein)
+
+
+
+ + +
motöo
+
+ + +
mo.too
+ +
1.21
+
+
+ + + +Motorrad +motorcycle +moto + + +
ek
+
+
moto
+
+
motorcycle
+
+
Motorrad
+
+
+
+ + +
kipêe
+
+ + + + +sich um etwas kümmern +take care of +s'occuper de + + +
ek
+
+
sich um etwas kümmern
+
+
s'occuper de
+
+
take care of
+
+ +
0494
+
+
+
+ + +
wakânga
+
+ + + + +Gefangener +prisoner +prisonnier + + +
ek
+
+
Gefangener
+
+
prisoner
+
+
prisonnier
+
+ +
0876
+
+
+
+ + +
monya
+
+ + +
mɔ.nya
+ +
1.1
+
+
+ + + +Schwager, Schwägerin +brother-in-law, sister-in-law +belle-sœur, beau-frère + + +
ek
+
+
Schwager, Schwägerin
+
+
+
+ + +
zî yâ tî
+
+ + + + + + + + + + + + +lösen +untie +dénouer + + +
& i-299
+
+ +
tl
+
+
dénouer
+
+
lösen
+
+
untie
+
+ +
0657
+
+
+
+ + +
hînga tene
+
+ + + + + + + + + + +sicher (sein) +sure (be) +certain (être) + + +
connaître parler [Sims]
+
+ +
ek
+
+
sicher (sein)
+
+
+
+ + +
bibê
+
+ + + + + + + + +nachdenken +think, ponder +réfléchir + + + + +
ek
+
+
nachdenken
+
+
réfléchir
+
+
+ + + +think about, meditate on, question +réfléchir, méditer, se demander si + +
+ + +
ngbanga tî
+
+ + + + + + + + +für, wegen +for, because of +pour, à cause de + + + +
ek
+
+
für, wegen
+
+
+ + + +weil, da +because +parce que + + +
tl
+
+
because
+
+
parce que
+
+
weil, da
+
+ +
1693
+
+
+
+ + +
gbâ
+
+ + + + +Haufen +pile +tas, paquet + + +
tl
+
+
Haufen
+
+
pile
+
+
tas, paquet
+
+ +
0646
+
+
+ + + +Bündle +bundle +paquet, faisceau + + +
tl
+
+
bundle
+
+
Bündle
+
+
paquet, faisceau
+
+ +
0645
+
+
+ + + +Schachtel +box +carton, boîte + + +
tl
+
+
box
+
+
carton, boîte
+
+
Schachtel
+
+ +
0625
+
+
+
+ + +
ndêndê
+
+ + + + +verschieden, unterschiedlich +different (be) +divers (être) + +
Lo te âkôbe ndêndê.
+ + +
+ + +
ek
+
+
different
+
+
divers
+
+
verschieden, unterschiedlich
+
+ +
+ + + +anders +differently +différemment + +
Âla sâra kua ndêndê.
+ +
They work differently.
+
+
+
anders
+
+
différemment
+
+
differently
+
+
+
+ + +
komense
+
+ + +
???
+ +
1.1.1
+
+
+ + + +beginnen +begin +commenser +
begin
+
+
beginnen
+
+
commenser
+
+
+
+ + +
tëtî
+
+ + + + + + + +für, wegen +for, because, on account of +pour, à cause de + +
ek
+
+
für, wegen
+
+
+
+ + +
lïngî
+
+ + + + +Fetisch, Zauberheilmittel +fetish, curative charm +fétiche + + +
ek
+
+
fétiche
+
+
Fetisch, Zauberheilmittel
+
+
fetish, curative charm
+
+ +
0924
+
+
+
+ + +
fuku tî farîni
+
+ + + + + + + + +Weizenmehl +wheat flour +farine de blé + + +
ek
+
+
Weizenmehl
+
+
+
+ + +
sâra ködrö na
+
+ + + + + + + + + + + +wohnen +dwell, inhabit +habiter + + +
tl
+
+
dwell, inhabit
+
+
habiter
+
+
wohnen
+
+ +
0526
+
+
+
+ + +
mîngo
+
+ + +
mi.ngɔ
+ +
3.1
+
+
+ + + +aus- /ab-schalten +shut off +éteindre, arrêter + + +
ek
+
+
aus- /ab-schalten
+
+
+ + + +auslöschen, löschen +quench, extinguish +éteindre + + +
tl
+
+
auslöschen, löschen
+
+
éteindre
+
+
quench, extinguish
+
+ +
1497
+
+
+
+ + +
vurü makongö
+
+ + + + + + + + + + + + +Made +maggot +asticot +
asticot
+
+
Made
+
+
maggot
+
+
+
+ + +
wümä
+
+ + + + + + + +Stolz +pride +orgueil + + +
ek
+
+
orgueil
+
+
pride
+
+
Stolz
+
+
+
+ + +
zä zängö
+
+ + + + + + +hell (sein) +bright (be) +brillant, vif (être) + +
Yôro finî pile na fadë torche nî azä zängaö.
+ +
Put in new batteries and the flashlight will be bright.
+
+
+ + +
tl
+
+
(être) brillant, vif
+
+
bright
+
+
hell (sein)
+
+ +
1494
+
+
+
+ + +
yôro
+
+ + + + +braten, frittieren +fry, deep-fry +frire + + +
tl
+
+
braten, frittieren
+
+
frire
+
+
fry, deep-fry
+
+ + +
0605
+
+
+ + + +einweichen +soak +(faire) tremper + + +
tl
+
+
(faire) tremper
+
+
einweichen
+
+
soak
+
+ +
1486
+
+
+ + + +grillen +grill, +griller, + + +
ek
+
+
grill,
+
+
grillen
+
+
griller,
+
+
+ + + +braten, rösten +roast +rôtir + + +
tl
+
+
braten, rösten
+
+
roast
+
+
rôtir
+
+ + +
0604
+
+
+
+ + +
mbîngö
+
+ + + + + +
mbi.ngɔ
+ +
3.2 / 3.1
+
+
+ + + +Dunkelheit +darkness +obscurité + + +
ek
+
+
darkness
+
+
Dunkelheit
+
+
obscurité
+
+ + +
1351
+
+
+
+ + +
leke ndânî
+
+ + + + + + + + + + + + +begradigen, aufrichten +straighten +redresser, rendre droit + + +
tl
+
+
begradigen, aufrichten
+
+
redresser, rendre droit
+
+
straighten
+
+ +
1531
+
+
+
+ + +
kâra
+
+ + + + +Buschtaxi, Bus +bush taxi, bus +taxi-brousse, bus + + +
ek
+
+
Buschtaxi, Bus
+
+
+
+ + +
wôtoro
+
+ + + + + + + + +Biene +bee +abeille + + +
ek
+
+
abeille
+
+
bee
+
+
Biene
+
+ +
1143
+
+
+ + + +Honig +honey +miel + + +
1156
+
+
+
+ + +
lakërë
+
+ + + + +Steinfläche +flat lateritic rock surface +replat latéritique + + +
ek
+
+
Steinfläche
+
+
+ + + +Dreschplatz +threshing-floor +aire de battage + + +
tl
+
+
aire de battage
+
+
Dreschplatz
+
+
threshing-floor
+
+ +
0761
+
+
+ + + +Lichtung +open place, clearing +clairière + + +
ek
+
+
clairière
+
+
Lichtung
+
+
open place, clearing
+
+ +
1259
+
+
+
+ + +
li ti ... akpe
+
+ + +to be dumbfounded + +
+ + +
danganga
+
+ + + + +Krankenhaus, Klinik +hospital, clinic +hôpital, clinique + + +
ek
+
+
Krankenhaus, Klinik
+
+
+
+ + +
kötä zo
+
+ + + + + + + + +Erwachsener +adult +adulte + + +
ek
+
+
adult
+
+
adulte
+
+
Erwachsener
+
+ + +
0337
+
+
+ + + +wichtige Person +important person +personnalité importante + + +
ek
+
+
important person
+
+
personnalité importante
+
+
wichtige Person
+
+ +
1574
+
+
+
+ + +
sindi
+
+ + + + +Sesam +sesame +sésame + + +
ek
+
+
Sesam
+
+
sesame
+
+
sésame
+
+ +
1238
+
+
+
+ + +
ndângbâ môlengê
+
+ + + + + + + + + + + + +jüngstes Kind +youngest child +benjamin + +
Ïrï tî ndângbâ môlengê ti mbï ayeke Trésor. Dr. Sims
+ +
The name of my youngest child is Treasure.
+
+
+ + +
ek
+
+
benjamin
+
+
jüngstes Kind
+
+
+
+ + +
tawâ
+
+ + + + +Kochtopf +pan +marmite + + +
ek
+
+
Kochtopf
+
+
marmite
+
+
pan
+
+
+
+ + +
+
+ + +
bo
+ +
2
+
+
+ + + +steinigen +stone +lapider +
Stein jemanden
+
+
+
+ + +
+
+ + + + + + + +ausruhen +rest +se reposer +
ausruhen
+
+
rest
+
+
+
+ + +
dödörö
+
+ + +
do.do.ɾo
+ +
2.2.2
+
+
+ + + +Rebhuhn +partridge, francolin +perdrix + + +
tl
+
+
partridge, francolin
+
+
perdrix
+
+
Rebhuhn
+
+ +
1046
+
+
+
+ + +
zo tî mawa
+
+ + + + + + + + + + + +unglücklicher Mensch, Unglücksrabe +afflicted person +malheureux + + +
ek
+
+
malheureux
+
+
unglücklicher Mensch, Unglücksrabe
+
+
+
+ + +
dutï ndurü
+
+ + + + + + + + + + + +sei bereit +be ready +être prêt + +
+ + +
zîa ... na lêgë
+
+ + + + + + + + +ein Stück nach Hause begleiten +accompany someone part way home +accompagner à mi-chemin + + +
tl
+
+
accompagner à mi-chemin
+
+
accompany someone part way home
+
+
ein Stück nach Hause begleiten
+
+
+
+ + +
+
+ + + + +weit öffnen +open wide +ouvrir + + + + +
ek
+
+
ouvrir
+
+
weit öffnen
+
+
+
+ + +
yïndû
+
+ + + + +Waise +orphan +orphelin + + +
tl
+
+
orphan
+
+
orphelin
+
+
Waise
+
+ +
0373
+
+
+
+ + +
sënë tî sêse
+
+ + + + + + + + + + + + +Regenwurm +earthworm +ver de terre + + +
tl
+
+
earthworm
+
+
Regenwurm
+
+
ver de terre
+
+ +
1140
+
+
+
+ + +
parara
+
+ + + + +Libelle +dragonfly +libellule + + +
tl
+
+
dragonfly
+
+
Libelle
+
+
libellule
+
+ +
1145
+
+
+
+ + +
këkë tî mbûrü
+
+ + + + + + + + + + + + +Öl-Palme +oil palm +palmier à huile + + +
Elaeis guineensis
+
+ +
tl
+
+
oil palm
+
+
Öl-Palme
+
+
palmier à huile
+
+ + +
1168
+
+
+
+ + +
lîngbi tî fâ ...
+
+ + + + +sterblich +fatal (be) +mortel (être) + +
Kobêla sô alîngbi tî fâ zo.
+ +
That sickness is fatal.
+
Cette maladie est mortelle.
+
+
+ +
mle-1791
+
+
+
+ + +
kînda
+
+ + + + +Leiche +corpse +cadavre + + +
ek
+
+
cadavre
+
+
corpse
+
+
Leiche
+
+ +
0953
+
+
+ + + +Gespenst +ghost +fantôme + + +
ek
+
+
fantôme
+
+
Gespenst
+
+
ghost
+
+ + +
0909
+
+
+
+ + +
gbâzâbängâ
+
+ + + + +Fahrrad +bicycle +vélo + + +
ek
+
+
bicycle
+
+
Fahrrad
+
+
vélo
+
+
+
+ + +
kangû tî wên
+
+ + + + + + + + +Pokal +sport trophy +coupe (sport) + + +
ek
+
+
Pokal
+
+
+
+ + +
müngö yângâ
+
+ + + + + + + + + + + + +Befehl +order [command] +ordre, commande + + +
tl
+
+
Befehl
+
+
order [command]
+
+
ordre, commande
+
+ +
0498
+
+
+ + + +Versprechen +promise +promesse +
promesse
+
+
promise
+
+
Versprechen
+
+
+
+ + +
+
+ + + + + + + +atmen +breathe +respirer + + +
ek
+
+
atmen
+
+
breathe
+
+
respirer
+
+ + +
0106
+
+
+
+ + +
+
+ + + + +dieser, jener +that, the aforementioned +ce, cette + + + + +
ek
+
+
dieser, jener
+
+
+
+ + +
gbâ tî âkêtê nyama
+
+ + + + +ameisenkolonie +colony (of ants) +colonie (de fourmis) + +
mle-0948
+
+
+
+ + +
vâla
+
+ + + + +??? +shield +bouclier +
???
+
+
bouclier
+
+
shield
+
+
+
+ + +
lo
+
+ + +
lo
+ +
1
+
+
+ + + +er +he +il (humain) + + +
tl
+
+
er
+
+
he
+
+
il (humain)
+
+ +
1650
+
+
+ + + +sie +she +elle + + +
ek
+
+
elle
+
+
she
+
+
sie
+
+
+ + + +es +it +il + + +
ek
+
+
es
+
+
il
+
+
it
+
+
+
+ + +
yöngö
+
+ + + + +Abstand +distance +distance + +
gfk-d
+
+ +
i-316
+
+
+
+ + +
sânzêri
+
+ + + + +Wache, Wächter +guard +sentinelle + + +
ek
+
+
guard
+
+
sentinelle
+
+
Wache, Wächter
+
+
+
+ + +
balëgümbâyä
+
+ + + + + + + +neunzig (90) +ninety (90) +quatre-vingt-dix (90) + + +
tl
+
+
neunzig (90)
+
+
ninety (90)
+
+
quatre-vingt-dix (90)
+
+ +
1618
+
+
+
+ + +
buba ïrï tî
+
+ + + + +unehre +dishonor +déshonorer + +
i-298
+
+
+
+ + +
kötä buä
+
+ + + + + + + + +Bischof +bishop +évêque + + +
ek
+
+
Bischof
+
+
bishop
+
+
évêque
+
+
+
+ + +
vukö zo
+
+ + + + + + + + +dunke2.lhäutig +dark-skinned +personne à la peau noire + + +
ek
+
+
dark-skinned
+
+
dunke2.lhäutig
+
+
+
+ + +
gbôto terê
+
+ + + + + + + + +sich ausstrecken, (den Körper) strecken +stretch (one's body) +s'étendre + + +
ek
+
+
s'étendre
+
+
sich ausstrecken, (den Körper) strecken
+
+
+ + + +sich zurückziehen, sich absondern +withdraw oneself from others +se retirer + + +
ek
+
+
sich zurückziehen, sich absondern
+
+
+
+ + +
yâ tî ... akânga
+
+ + + + +verstopft (sein) +constipated (be) +constipé (être) + +
Lo te mâpa mîngi sï yâ tî lo akânga.
+ +
He ate lots of bread and became constipated.
+
Il est constipé parce qu'il a mangé trop de pain.
+
+
+ +
i-216
+
+
+
+ + +
kôro
+
+ + +
ko.ɾo
+ +
3.1
+
+
+ + + +durchstechen +pierce +percer + + +
tl
+
+
durchstechen
+
+
percer
+
+
pierce
+
+ +
1452
+
+
+ +undicht +leaky +percé + + +
ek
+
+
leaky
+
+
percé
+
+
undicht
+
+
+
+ + +
+
+ + + + +
+ + +
hïngängö yê
+
+ + + + + + + + + + + + +Wissen, Kenntnis +knowledge +connaissance + + +
tl
+
+
connaissance
+
+
knowledge
+
+
Wissen, Kenntnis
+
+ + +
0256
+
+
+
+ + +
wayenda
+
+ + + + +director + +
+ + +
kîri na pekô
+
+ + + + + + + + +zurückkommen +return, come back +retourner, revenir + + +
ek
+
+
zurückkommen
+
+ +
i-878
+
+
+ + + +vermindern, verkleinern +reduce +diminuer + + +
ek
+
+
diminuer
+
+
reduce
+
+
vermindern, verkleinern
+
+ +
1630
+
+
+
+ + +
ngbö
+
+ + +
ngbɔ
+ +
2
+
+
+ + + +Zwilling +twin +jumeau + + +
tl
+
+
jumeau
+
+
twin
+
+
Zwilling
+
+ +
0333
+
+
+
+ + +
kêtê ngû sô asua
+
+ + + + + + + + + + + + + + + + +Bach +brook, stream +ruisseau + + +
tl
+
+
Bach
+
+
brook, stream
+
+
ruisseau
+
+ + +
1292
+
+
+
+ + +
na gbe lê tî
+
+ + + + + + + + + + + + + + + + + + +in Gegenwart von +in the presence of +en présence de + +
Agbôto wanzï nî na gbe lê tî juge.
+ +
They dragged the thief into the presence of the judge.
+
+
+ +
ek
+
+
in Gegenwart von
+
+
+
+ + +
sâra na bê ôko
+
+ + + + + + + + + + + + +etwas mit ganzem Herzen oder gerne machen +do something wholeheartedly +faire de tout cœur + + +
ek
+
+
etwas mit ganzem Herzen oder gerne machen
+
+
+
+ + +
kötä ta
+
+ + + + + + + + + + + + +Schleim (organisch) +slime (organic) +vase (organique) + + +
tl
+
+
Schleim (organisch)
+
+
slime (organic)
+
+
vase (organique)
+
+ +
1304
+
+
+
+ + +
gi (kôli, wâlï, terê)
+
+ + + + + + + + +umwerben, ins Bett locken +woo, chase after someone +se courtiser + + +
ek
+
+
umwerben, ins Bett locken
+
+
+
+ + +
da tî büzë
+
+ + + + + + + + + + + +Laden, Geschäft +shop, store +magasin, boutique + + + + +
ek
+
+
Laden, Geschäft
+
+
+
+ + +
lenge
+
+ + + + +Perle +pearl +perle + + +
ek
+
+
pearl
+
+
perle
+
+
Perle
+
+
+ + + +Perle, Kügelchen +bead +perle + + +
tl
+
+
bead
+
+
perle
+
+
Perle, Kügelchen
+
+ + +
0549
+
+
+
+ + +
+
+ + + + +kommen +come +venir + + + + +
tl
+
+
come
+
+
kommen
+
+
venir
+
+ +
1399
+
+
+ + + +werden +become +devenir + + +
ek
+
+
become
+
+
devenir
+
+
werden
+
+
+
+ + +
gbudu
+
+ + + + +afrikanischer Spinat +African spinach +épinards africains + + +
ek
+
+
afrikanischer Spinat
+
+
+
+ + +
hânda
+
+ + + + +täuschen, betrügen +cheat, trick, deceive +tricher, tromper + + +
& mle
+
+ +
tl
+
+
cheat, trick, deceive
+
+
täuschen, betrügen
+
+
tromper
+
+ + +
0507
+
+
+ + + +verraten +betray +trahir + +
i-1028
+
+
+
+ + +
ndârârâ
+
+ + + + +Spannung +tension +tension + +
mle-4794
+
+
+ + + +dicht +tightly +fermement + +
Âla gbôto kâmba nî ndârârâ.
+ +
Sie zogen das Seil fest.
+
They pulled the rope tightly.
+
Ils ont tiré la corde fermement.
+
+
+
+
+ + +
li ködörö
+
+ + + + + + + + +Hauptstadt +capital city +capitale + + +
ek
+
+
capitale
+
+
Hauptstadt
+
+
+
+ + +
vêre
+
+ + + + +Trinkglas +drinking glass +verre à boire + + +
ek
+
+
Trinkglas
+
+
+
+ + +
famïi
+
+ + + + +Familie, Angehörige, Verwandte +family, relatives +famille, parenté + + +
tl
+
+
Familie, Angehörige, Verwandte
+
+
famille, parenté
+
+
family, relatives
+
+ +
0341
+
+
+
+ + +
më ngo
+
+ + + + + + + + + + + +schwanger werden +conceive +tomber enceinte + + +
ek
+
+
conceive
+
+
schwanger werden
+
+
tomber enceinte
+
+
+
+ + +
sakpä
+
+ + + + +Korb +basket +panier + + +
tl
+
+
basket
+
+
Korb
+
+
panier
+
+ +
0626
+
+
+
+ + +
bëngö
+
+ + +
bɛ.ngɔ
+ +
2.2
+
+
+ +reif +ripe +mûr + + +
ek
+
+
mûr
+
+
reif
+
+
ripe
+
+ +
1247
+
+
+ + + +rote Farbe +redness +rougeur + + +
ek
+
+
redness
+
+
rote Farbe
+
+
rougeur
+
+
+
+ + +
fôlôlô
+
+ + + + + +
???
+
+ + + +Trillerpfeife +whistle +sifflet + + +
ek
+
+
sifflet
+
+
Trillerpfeife
+
+
whistle
+
+
+
+ + +
müngö terê tî kôlï na wâlï
+
+ + + + + + + + + + + + + + + + + + + + +Ehe +marriage (state of wedlock) +mariage (pas la cérémonie), alliance + + +
tl
+
+
Ehe
+
+
mariage (pas la cérémonie), alliance
+
+
marriage (state of wedlock)
+
+ +
0940
+
+
+
+ + +
bengbä wên
+
+ + + + + + + + + + + + + + + + +Bronze +bronze +bronze + + +
tl
+
+
+
+ + +
sâra veke
+
+ + + + + + + + + + + +für die Eltern eines Mädchens arbeiten, um um seine Hand anzuhalten +work for a girl's parents to ask for her hand in marriage +donner ses services aux parents d'une fille pour demander la main + +
sich durch Arbeit bei der Familie eines Mädchens das Recht erwerben, dieses zu heiraten
+
work for a girl's parents to ask for her hand in marriage
+
donner ses services aux parents d'une fille pour demander la main
+
+ + +
ek
+
+
für die Eltern eines Mädchens arbeiten, um um seine Hand anzuhalten
+
+
+
+ + +
yamba
+
+ + + + +ehren +honor +honorer + + +
ek
+
+
ehren
+
+
honor
+
+
honorer
+
+ +
0283
+
+
+ + + +empfangen, willkommen heißen +welcome, greet +accueillir + + +
ek
+
+
accueillir
+
+
empfangen, willkommen heißen
+
+
+
+ + +
yê kûê ahûnzi awe
+
+ + + + + + + + + + + + + + + + + + +es ist vorbei +it's all over, to be done for +c'est fini + +
+ + +
fa sïökpärï na gîgî
+
+ + + + + + + + + + + +Sünde bekennen +confess sin +confesser le péché + + +
ek
+
+
Sünde bekennen
+
+
+
+ + +
nzombö
+
+ + +
nzɔ.mbɔ
+ +
1.2
+
+
+ + + +Schlammfisch (lebt in der Trockenzeit im Schlamm) +lungfish, mudfish (lives in the mud during dry season) +poisson-boue, poisson qui vit dans la boue + + +
tl
+
+
lungfish, mudfish (lives in the mud during dry season)
+
+
poisson-boue, poisson qui vit dans la boue
+
+
Schlammfisch (lebt in der Trockenzeit im Schlamm)
+
+ +
1085
+
+
+ + + +Aal +eel +anguille + + +
tl
+
+
Aal
+
+
anguille
+
+
eel
+
+ +
1086
+
+
+
+ + +
mbênî äpe
+
+ + + + + + + + + + + +nicht mehr +no longer +ne plus + +
Lo tï na motöo, nîlaâ lo yê tî kpë na nî mbênî äpe.
+ +
He fell on a motorbike, therefore he no longer wants to ride it.
+
+
+ +
ek
+
+
nicht mehr
+
+
+
+ + +
balëôko na gümbâyä
+
+ + + + + + + + + + + + +neunzig (90) +nineteen (19) +dix-neuf (19) + + +
tl
+
+
dix-neuf (19)
+
+
neunzig (90)
+
+
nineteen (19)
+
+ +
1608
+
+
+
+ + +
zîa kûngbâ na sêse
+
+ + + + + + + + + + + + + + + + +entladen +unload +décharger + + +
tl
+
+
décharger
+
+
entladen
+
+
unload
+
+ +
0865
+
+
+
+ + +
lësüängö
+
+ + +
le.su.a.ngɔ
+ +
2.2.2.2
+
+
+ + + +Rebellion +rebellion +révolte + + +
ek
+
+
rebellion
+
+
Rebellion
+
+
révolte
+
+
+
+ + +
ngbïngbï
+
+ + + + +Reuse +fish trap +nasse + + +
tl
+
+
fish trap
+
+
nasse
+
+
Reuse
+
+ +
0801
+
+
+
+ + +
mbäkôro
+
+ + +
mba.kɔ.ɾɔ
+ +
2.3.1
+
+
+ + + +alte Person, Alter/Alte +old person +vieux, vieille + + + + +
tl
+
+
alte Person, Alter/Alte
+
+
old person
+
+
vieux, vieille
+
+ +
0340
+
+
+ + + +alt (sein) +old (not young) (be) +vieux (être) + + +
tl
+
+
(être) vieux
+
+
alt (sein)
+
+
old (not young)
+
+ + +
0248
+
+
+
+ + +
kötä lê nî
+
+ + + + + + + + + + + + +Breite +width +largeur + +
kötä lê tî ngû
+ +
wide river
+
rivière large
+
+
+ + +
Example given by Central African
+
+ +
tl
+
+
Breite
+
+
largeur
+
+
width
+
+ +
1519
+
+
+
+ + +
söngö li
+
+ + + + + + + + + + + + +Kopfschmerzen +headache +maux de tête + + +
tl
+
+
headache
+
+
Kopfschmerzen
+
+
maux de tête
+
+ +
0235
+
+
+
+ + +
balaka
+
+ + +
check ada
+
+ + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + +
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ +
0755
+
+
+
+ + +
kûma
+
+ + + + +Boa , Riesenschlange +boa +boa + + +
ek
+
+
boa
+
+
boa
+
+
Boa , Riesenschlange
+
+
+ + + +Pythonschlange +python +python + + +
Python spp.
+
+ +
tl
+
+
python
+
+
python
+
+
Pythonschlange
+
+ +
1098
+
+
+
+ + +
commencé
+
+ + + + +
+ + +
kîri ... te
+
+ + + + + + + + + + + + +wiederkäuen +ruminate, chew cud +ruminer + + +
tl
+
+
ruminate, chew cud
+
+
ruminer
+
+
wiederkäuen
+
+ + +
1040
+
+
+
+ + +
yayâ tî wâlï
+
+ + + + +ältere Schwester +older sister +sœur aînée + + +
& i-952
+
+ +
ek
+
+
ältere Schwester
+
+ + +
0347
+
+
+
+ + +
ngû tî pêrë
+
+ + + + + + + + +Tau +dew +rosée + + +
tl
+
+
dew
+
+
rosée
+
+
Tau
+
+ +
1338
+
+
+
+ + +
gä fuku
+
+ + + + + + + + + + + + +schmelzen +melt (intr) +fondre + + +
tl
+
+
fondre
+
+
melt (intr)
+
+
schmelzen
+
+ +
1499
+
+
+
+ + +
sô kâ
+
+ + + + + + + + + + + + +jener ... dort +that ... there +ce ... -là + +
Mbi ndui kôlï sô ge, me koli so ka ayo mingi.
+ + +
+ + +
tl
+
+
ce ... -là
+
+
jener ... dort
+
+
that ... there
+
+ +
1680
+
+
+
+ + +
wara kä
+
+ + + + + + + + + + + + +sich verletzen +hurt oneself +se blesser + + +
tl
+
+
hurt oneself
+
+
se blesser
+
+
sich verletzen
+
+ +
0207
+
+
+
+ + +
mandërë
+
+ + + + +Bettwanze +flea, bedbug +punaise + + +
tl
+
+
Bettwanze
+
+
flea, bedbug
+
+
punaise
+
+ +
1120
+
+
+
+ + +
linda
+
+ + + + +eindringen, eintreten +enter +pénétrer, entrer + + +
ek
+
+
eindringen, eintreten
+
+
enter
+
+
pénétrer, entrer
+
+ +
1407
+
+
+ + + +deep (of water) (be) + +
Sam
+
+
deep
+
+
+
+ + +
wandê
+
+ + + + +Fremder +stranger (unknown) +étranger (inconnu) + + +
tl
+
+
étranger (inconnu)
+
+
Fremder
+
+
stranger (unknown)
+
+ +
0385
+
+
+ + + +Ausländer +foreigner +étranger + + +
ek
+
+
Ausländer
+
+
étranger
+
+
foreigner
+
+
+
+ + +
târârâ
+
+ + +
possibly from Fulfulde tal
+
+ + + +sauber +clean (be) +propre (être) + + +
tl
+
+
clean
+
+
propre
+
+
sauber
+
+ +
1584
+
+
+ +hell (sein) +light (colour) (be) +clair (être) + + +
tl
+
+
(être) clair
+
+
hell (sein)
+
+
light (colour)
+
+ +
1563
+
+
+
+ + +
bozö tî gbe tî gô tî (ndeke)
+
+ + + + + + + + + + + + + + + + + + + + +Kropf +crop (of bird) +jabot + + +
tl
+
+
crop (of bird)
+
+
jabot
+
+
Kropf
+
+ +
1063
+
+
+
+ + +
na kötï
+
+ + + + + + + + + + + + +rechts (Richtung) +right (direction) +à droite + +
Da tî mbï ayeke na kötï tî lêgë. [LB]
+ +
My house is to the right of the road.
+
Ma maison est à droite du chemin.
+
+
+ + +
tl
+
+
rechts (Richtung)
+
+
right (direction)
+
+ +
1666
+
+
+
+ + +
kpâa
+
+ + + + +spät +recently +récemment, ces derniers temps + +
mle-3876
+
+
+
+ + +
mbênî zo
+
+ + + + + + + + +jemand +someone +quelqu'un + +
ek
+
+
jemand
+
+
quelqu'un
+
+
someone
+
+
+
+ + +
ti
+
+ + + +
+ + +
mbürü
+
+ + + + +Puder +powder +poudre + + +
ek
+
+
poudre
+
+
powder
+
+
Puder
+
+
+
+ + +
da tî sämbëlängö Nzapâ
+
+ + + + +haus des Gebets +prayer hut/house +case/maison de prière + + +
i-141
+
+
+
+ + +
ngbongbôro nî kûê
+
+ + + + + + + + + +ganz +whole +entier, l'ensemble, le tout + +
Âzo tî nzï arô kûngbâ nî na ngbongbôro nî kûê.
+ +
The thieves gathered up the whole load of household goods.
+
+
+ + +
tl
+
+
entier, l'ensemble, le tout
+
+
ganz
+
+
whole
+
+ +
1642
+
+
+
+ + +
+
+ + + + +dick, fett (sein) +fat, thick (be) +épais, gras (être) + + +
tl
+
+
(être) épais, gras
+
+
dick, fett (sein)
+
+
fat, thick
+
+ +
1517
+
+
+
+ + +
gïngö nyama
+
+ + + + + + + + +Jagd +hunt +chasse + + +
ek
+
+
chasse
+
+
hunt
+
+
Jagd
+
+ +
i-168
+
+
+
+ + +
kutukutu
+
+ + + + +Auto, Lastwagen +car, truck +auto, camion + + +
ek
+
+
Auto, Lastwagen
+
+
+
+ + +
kpângbârâ sembë
+
+ + + + + + + +Teller +plate +assiette + + +
ek
+
+
assiette
+
+
plate
+
+
Teller
+
+ +
0620
+
+
+ + + +Tablett +platter +plateau + + +
ek
+
+
plateau
+
+
platter
+
+
Tablett
+
+
+
+ + +
omö
+
+ + +
???
+
+ + + +Namensvetter +namesake +homonyme + + +
tl
+
+
homonyme
+
+
Namensvetter
+
+
namesake
+
+ +
0360
+
+
+
+ + +
yângâ tî ... azä
+
+ + + + + + + + +gemeine Worte sprechen +speak hurtful words +dire les paroles blessantes + + + + +
ek
+
+
gemeine Worte sprechen
+
+
+
+ + +
nzönî pëpe
+
+ + + + + + + + + + +Unrecht (haben), sich irren +wrong (be) +(avoir) tort + + +
tl
+
+
(avoir) tort
+
+
Unrecht (haben), sich irren
+
+
wrong
+
+ +
1581
+
+
+
+ + +
popôto
+
+ + + + +
pɔ.pɔ.tɔ
+ +
1.3.1
+
+
+ + + +Schlamm, Lehm +mud +boue + + +
ek
+
+
boue
+
+
mud
+
+
Schlamm, Lehm
+
+ +
1278
+
+
+
+ + +
mangbêlê
+
+ + + + + + + +Maniokstange, In Blättern gekochter Maniok-Kloß +stick of manioc +bâton de manioc + + +
ek
+
+
Maniokstange, In Blättern gekochter Maniok-Kloß
+
+
+
+ + +
ngbâ gï na ndö nî
+
+ + + + +betonen, bestehen +emphasize, insist +souligner, insister + +
mle-1598
+
+
+
+ + +
ötö
+
+ + + + + +
ɔ.tɔ
+ +
2.2
+
+
+ + + +Berg +mountain +montagne + + +
tl
+
+
Berg
+
+
montagne
+
+
mountain
+
+ +
1262
+
+
+
+ + +
lï pëpe
+
+ + + + + + + + +flach, seicht, oberflächlich (sein) +shallow (be) +peu profond (être) + + + +
1524
+
+
+
+ + +
ngbanga tî sô
+
+ + + + + + +damit, weil +so that, because +pour que, parce que + +
ek
+
+
damit, weil
+
+
+
+ + +
ndo-wâ
+
+ + + + + + + + + + + + +Hitze +heat +chaleur + + +
ek
+
+
chaleur
+
+
heat
+
+
Hitze
+
+
+ + + +heisses Wetter +hot weather +temps chaud + + +
tl
+
+
heisses Wetter
+
+
temps chaud
+
+ +
1345
+
+
+
+ + +
zîa (mbênî zo) na bê
+
+ + + + + + +verbittert (sein), nachtragend (sein) +bitter (be), hold a grudge +rancunier (être) + + +
ek
+
+
verbittert (sein), nachtragend (sein)
+
+
+
+ + +
zegë
+
+ + + + + + + +Kauri Muschel +cowrie shell +cauris + + +
ek
+
+
cauri
+
+
cowrie shell
+
+
Kauri Muschel
+
+ +
0818
+
+
+
+ + +
tî nyen
+
+ + + + + + + + +was für? +what kind of? +quelle sorte de ? + +
Nyama tî nyen âla bi na yâ tî kâsa nî?
+ +
What kind of meat did they throw into the sauce?
+
+
+ + +
ek
+
+
was für?
+
+
+
+ + +
küä tî terê tî (ândeke)
+
+ + + + + + + + + + + + + + + + +Feder +feather +plume + + +
tl
+
+
feather
+
+
Feder
+
+
plume
+
+ +
1058
+
+
+
+ + +
sâra lê
+
+ + + + + + + + + + + + +blinzeln +blink +cligner (des yeux) + + +
tl
+
+
blink
+
+
blinzeln
+
+
cligner (des yeux)
+
+ +
0103
+
+
+ + + +zwinkern +wink (eye) +faire un clin d'œil + + +
tl
+
+
faire un clin d'œil
+
+
wink (eye)
+
+
zwinkern
+
+ +
0104
+
+
+
+ + +
gue lêgëôko na ...
+
+ + +jemanden begleiten +accompany +accompagner + + + +
0415
+
+
+
+ + +
ngâsi
+
+ + + + +nießen +sneeze +éternuer + + +
tl
+
+
éternuer
+
+
nießen
+
+
sneeze
+
+ +
0115
+
+
+
+ + +
sâra înön
+
+ + + + + + + + + + + + +Harn lassen +urinate +uriner + + +
tl
+
+
Harn lassen
+
+
urinate
+
+
uriner
+
+ +
0119
+
+
+
+ + +
hë ngîâ
+
+ + + + + + + + + + + + +lachen +laugh +rire + + +
tl
+
+
lachen
+
+
laugh
+
+
rire
+
+ +
0269
+
+
+
+ + +
bongö
+
+ + + + +
bɔ.ngɔ
+ +
1.2
+
+
+ + + +Kleidungsstücke +article of clothing, clothes +vêtements, habits + + + + + + +
tl
+
+
article of clothing, clothes
+
+
Kleidungsstücke
+
+
vêtements, habits
+
+ + +
0536
+
+
+
+ + +
gbôto
+
+ + +
gbɔ.tɔ
+ +
3.1
+
+
+ + + +ziehen +pull +tirer + + + + +
tl
+
+
pull
+
+
tirer
+
+
ziehen
+
+ +
1434
+
+
+ + + +herausnehmen +extract +extraire + + +
ek
+
+
extract
+
+
extraire
+
+
herausnehmen
+
+
+ + + +schießen +shoot +tirer (une arme) + + +
tl
+
+
schießen
+
+
shoot
+
+
tirer (une arme)
+
+ +
1431
+
+
+
+ + +
kayëe
+
+ + + + +Heft +notebook +cahier + + +
ek
+
+
cahier
+
+
Heft
+
+
notebook
+
+
+
+ + +
+
+ + + + +ein Trankopfer ausgießen +pour libation +verser une libation + + +
tl
+
+
ein Trankopfer ausgießen
+
+
pour libation
+
+
verser une libation
+
+ + +
0930
+
+
+
+ + +
gbegô
+
+ + +
gbɛ.gɔ
+ +
1.3
+
+
+ + + +Kehlkopf, Adamsapfel +voice box, Adam’s apple +larynx, pomme d'Adam + + +
0026
+
+
+ + + +Stimme +voice +voix + + +
ek
+
+
Stimme
+
+
voice
+
+
voix
+
+ + +
0434
+
+
+
+ + +
ndö tî gô
+
+ + + + + + + + + + + + +Schulter +shoulder +épaule + + +
tl
+
+
épaule
+
+
Schulter
+
+
shoulder
+
+ +
0031
+
+
+
+ + +
kôro mê
+
+ + + + + + + + + + + + +die Ohren stechen +pierce ears +percer les oreilles + + +
tl
+
+
die Ohren stechen
+
+
percer les oreilles
+
+
pierce ears
+
+ +
0556
+
+
+
+ + +
balëûse na gümbâyä
+
+ + + + +neunundzwanzig (29) +twenty-nine (29) +vingt-neuf (29) + +
neunundzwanzig (29)
+
+
twenty-nine (29)
+
+
vingt-neuf (29)
+
+ +
chan_07
+
+
+
+ + +
büzë
+
+ + + + +Handel +trade, business +commerce + + + + +
ek
+
+
commerce
+
+
Handel
+
+
+
+ + +
mâsa
+
+ + + + +Fahrer, Chauffeur +driver +chauffeur + + +
ek
+
+
chauffeur
+
+
driver
+
+
Fahrer, Chauffeur
+
+
+ + + +Kaufmann, Geschäftsmann +businessman +grand commerçant + + +
ek
+
+
businessman
+
+
Kaufmann, Geschäftsmann
+
+
+
+ + +
yeke yeke
+
+ + + + + + + + +sehr langsam, allmählich, sanft +very slowly, gradually, gently +très doucement + +
Âkalä atambûla yeke yeke.
+ +
Snails travel very slowly.
+
+
+ + +
ek
+
+
sehr langsam, allmählich, sanft
+
+
+
+ + +
karakânzi
+
+ + + + +violett, dunkelbraun +purple, maroon +violet, marron pourpré + + +
ek
+
+
violett, dunkelbraun
+
+
+
+ + +
kpô
+
+ + +
kpɔ
+ +
3
+
+
+ + + +ruhig +quiet +tranquille + + + + +
ek
+
+
quiet
+
+
ruhig
+
+
tranquille
+
+
+ + + +unbeweglich +still +immobile + +
mle-4595
+
+
+
+ + +
gerê tî lâ
+
+ + + + + + + + +Uhrzeit +time +heure + + + + +
ek
+
+
heure
+
+
time
+
+
Uhrzeit
+
+
+
+ + +
zîa na mbâgë
+
+ + + + +reservieren Sie im Voraus +reserve in advance +réserver d'avance + +
i-871
+
+
+
+ + +
+
+ + + + +Hand +hand +main +
hand
+
+
Hand
+
+
main
+
+
+
+ + +
fa atene
+
+ + + + + + + + + + + + + + +zeigen +show +montre + +
+ + +
pâsi tî mosoro
+
+ + + + + + + + +Unterentwicklung, Armut +underdevelopment, poverty +sous-développement, pauvreté + + +
ek
+
+
Unterentwicklung, Armut
+
+ +
i-754
+
+
+
+ + +
ndeke tî bâgara
+
+ + + + + + + + + + + + +Kuhreiher +cattle egret +garde-bœuf + + +
Ardeola ibis (Bubulcus ibis)
+
+ +
tl
+
+
cattle egret
+
+
garde-bœuf
+
+
Kuhreiher
+
+ +
1047
+
+
+
+ + +
ûru
+
+ + + + + + + +blasen +blow +souffler +
blasen
+
+
blow
+
+
souffler
+
+
+
+ + +
gbôto ngû tî me tî (bâgara)
+
+ + + + + + + + + + + + + + + + + + + + +melken (Kühe) +milk (cows) +traire (vaches) + + +
tl
+
+
melken (Kühe)
+
+
milk (cows)
+
+
traire (vaches)
+
+ +
0773
+
+
+
+ + +
meniz(y)ëe
+
+ + + + +unselbständige Tischler +cabinet maker +menuisier + +
jl & lb = (y)
+
+ +
mle-0758
+
+
+
+ + +
këkë tî tâmuru
+
+ + + + + + + + + + + + +Dattelpalme +date palm +dattier + + +
Phoenix dactylifera
+
+ +
tl
+
+
date palm
+
+
Dattelpalme
+
+
dattier
+
+ +
1171
+
+
+
+ + +
de maseka
+
+ + + + + + + + +noch jung +still young +encore jeune + + +
ek
+
+
noch jung
+
+
+
+ + +
wö terê
+
+ + + + + + + + + + + + +sich ausruhen +rest +se reposer + + +
tl
+
+
rest
+
+
se reposer
+
+
sich ausruhen
+
+ + +
0185
+
+
+
+ + +
na ngôi nî sô
+
+ + + + + + + + + + + + + + + + + +in diesem Moment +at that moment +à ce moment là + +
Wâ tî bëkpä azä, sî na ngôi nî sô, lo tï lo kûi.
+ + +
+
+
+ + +
bi na gîgî
+
+ + + + + + + + + + + +rausschmeißen +throw out +jeter dehors + + +
ek
+
+
rausschmeißen
+
+
+
+ + +
likisi
+
+ + +
perhaps from Fulfulde, rikisi
+
+ + + +Betrügerei, Schwindel +fraud, trickery, cheat +fraude, escroquerie + +
Yê tî likisi ahön ndö nî na garâ.
+ +
Fraud surpasses all limits at the market.
+
+
+ + +
ek
+
+
Betrügerei, Schwindel
+
+
fraud, trickery, cheat
+
+
fraude, escroquerie
+
+
+
+ + +
yîngi gbânda
+
+ + + + + + + + + + + +ein Tor schießen +shoot a goal +marquer un but + + +
ek
+
+
ein Tor schießen
+
+
+
+ + +
babâ-kötä
+
+ + + + + + + + +Vaters älterer Brudere +father's older brother +frère aîné du père + + +
tl
+
+
frère aîné du père
+
+
uncle (paternal, father's older brother)
+
+
Vaters älterer Brudere
+
+ + +
0348
+
+
+
+ + +
a
+
+ + + + +man +one +on + +
Kôbe awe. A lîngbi ï gwe na garâ.
+ +
The food is finished. We must go to the market.
+
+
+ + +
ek
+
+
man
+
+
on
+
+
one
+
+
+
+ + +
mekemeke
+
+ + +
??? Need to add tone.
+
+ + + +überfüllt, übermäßig +overflowing, excessive +débordé, excessif + +
sl & cm
+
+
überfüllt, übermäßig
+
+
+
+ + +
makönzi
+
+ + +
ma.ko.nzi / ma. kɔ.nzi
+ +
1.2.1
+
+
+ + + +Chef, Führer +chief, boss, headman +chef + + +
ek
+
+
chef
+
+
Chef, Führer
+
+
chief, boss, headman
+
+ + +
0392
+
+
+
+ + +
hûnda
+
+ + + + +fragen, bitten +ask, request +demander, poser une question + + + + +
& i-536
+
+ +
tl
+
+ +
0453
+
+
+ + + +abfragen, prüfen +quiz, examine, question +interroger + + +
i-536
+
+
+ + + +Anfrage +request +demande, requête + + +
tl
+
+
Anfrage
+
+
demande, requête
+
+
request
+
+ +
0455
+
+
+
+ + +
kôlï
+
+ + +
kɔ.li
+ +
3.2
+
+
+ + + +Mann +man +homme + +
Gï âkôlï apîka birä.
+ +
Only men fight wars.
+
+
+ + +
tl
+
+
homme
+
+
man
+
+
Mann
+
+ + +
0328
+
+
+ + + +Ehemann, Gatte +husband +mari, époux + +
Adam ayeke kôlï tî Eve.
+ +
Adam is the husband of Eve.
+
+
+
Ehemann, Gatte
+
+
husband
+
+
mari, époux
+
+ + +
0362
+
+
+ +männlich +male +mâle + +
Kôlï kôndo adü pärä pëpe.
+ +
Roosters do not lay eggs.
+
+
+
male
+
+
mâle
+
+
männlich
+
+
+
+ + +
vukö kara-kangi
+
+ + + + + + + + +Ebenholzbaum +ebony tree +ébène + + +
tl
+
+
ébène
+
+
Ebenholzbaum
+
+
ebony tree
+
+ +
1159
+
+
+
+ + +
kolêe
+
+ + +
fr French
+
+ +
kɔ.lee
+ +
1.31 / 1.21
+
+
+ + + +zusammenkleben +stick together +coller +
coller
+
+
zusammenkleben
+
+
+
+ + +
zîngo na längö
+
+ + + + + + + + + + + + +aufwachen +wake up (intr) +se réveiller + + +
tl
+
+
aufwachen
+
+
se réveiller
+
+
wake up (intr)
+
+ +
0130
+
+
+
+ + +
balambo
+
+ + +
ba.la.mbo
+ +
1.1.1
+
+
+ + + +Rattan-Schemel +rattan stool +siège en rotin + + +
ek
+
+
Rattan-Schemel
+
+
+
+ + +
bi zekë
+
+ + + + + + + + + + + +Los werfen, wahrsagen +practice divination +faire la divination + + +
ek
+
+
Los werfen, wahrsagen
+
+
+
+ + +
ngümbâyä
+
+ + + + + + + +neun (9) +nine (9) +neuf (9) + +
+ + +
konza
+
+ + +
ko.nza
+ +
1.1
+
+
+ + + +Matte +mat +natte + + +
tl
+
+
mat
+
+
Matte
+
+
natte
+
+ +
0697
+
+
+
+ + +
mafüta tî kâsa
+
+ + + + + + + + + + + + +Fett +fat +graisse + + +
tl
+
+
fat
+
+
Fett
+
+
graisse
+
+ +
0571
+
+
+
+ + +
zamba
+
+ + + + +Palmwedel +palm branch, frond +palme + + + +
1194
+
+
+
+ + +
diamäa
+
+ + + + +Diamant +diamond +diamant + + +
ek
+
+
diamant
+
+
Diamant
+
+
diamond
+
+
+
+ + +
ngombe
+
+ + +
ngo.mbe
+ +
1.1
+
+
+ + + +Gewehr +rifle, gun +fusil + + +
ek
+
+
fusil
+
+
Gewehr
+
+
rifle, gun
+
+ +
0872
+
+
+
+ + +
fâ ngborô
+
+ + + + + + + + + + + +gegenseitig den Daumen schnippen +snap thumbs +claquer le pouce + +
gegenseitig den Daumen schnippen (intime Begrüßung)
+
snap thumbs (greeting of friendship)
+
claquer le pouce (salutation d'amitié)
+
+ + +
ek
+
+
gegenseitig den Daumen schnippen
+
+
+
+ + +
pörö tî kârâkö
+
+ + + + + + + + + + + + +Schale +shell (of groundnut) +coquille (d'arachide) + + +
tl
+
+
coquille (d'arachide)
+
+
Schale
+
+
shell (of groundnut)
+
+ +
1204
+
+
+
+ + +
wâlï tî pitäan
+
+ + +
Pejorative
+
+ + + + + + + +Prostituierte +prostitute +prostituée + + +
ek
+
+
prostituée
+
+
Prostituierte
+
+
prostitute
+
+ +
0407
+
+
+
+ + +
kötä lenge
+
+ + + + + + + + + + + + +Kauri Muschel +cowrie shell +cauris ; grosse + + +
tl
+
+
cauri
+
+
cowrie shell
+
+
grosse
+
+
Kauri Muschel
+
+ +
0818
+
+
+
+ + +
nzönî-kûê
+
+ + + + + + + + +perfekt, vollkommen, heilig +flawless, perfect, holy (be) +parfait, saint (être) + +
"Lêgë tî Nzapä ayeke nzönî-kûê, . . ." 2 Sam. 22.31
+ +
God's way is perfect, . . .
+
+
+ + +
ek
+
+
perfekt, vollkommen, heilig
+
+
+ + + +Gut +well +bien + +
Lo dîko mbëtï nî nzönî-kûê.
+ +
He read the book well.
+
+
+
bien
+
+
Gut
+
+
well
+
+
+ +rein, heilig +pure +pur + + +
ek
+
+
pur
+
+
pure
+
+
rein, heilig
+
+
+
+ + +
kîri pekô tî tënë
+
+ + + + + + + + + + + + + + +antworten +answer, reply +répondre + + +
0456
+
+
+
+ + +
terê adö
+
+ + + + + + + + + + + + +zittern +shiver, tremble +frissonner, trembler + + +
tl
+
+
frissonner, trembler
+
+
shiver, tremble
+
+
zittern
+
+ + +
0122
+
+
+
+ + +
bêôko
+
+ + +
bɛ.ɔ.kɔ
+ +
3.3.1
+
+
+ + + +Gemeinschaft +fellowship +communion + + +
ek
+
+
communion
+
+
fellowship
+
+
Gemeinschaft
+
+
+ + + +Einigung +agreement +unité + + +
ek
+
+
agreement
+
+
Einigung
+
+
unité
+
+
+
+ + +
finî nze
+
+ + + + + + + + + + + + +Neumond +new moon +nouvelle lune + + +
tl
+
+
Neumond
+
+
nouvelle lune
+
+ +
1320
+
+
+
+ + +
+
+ + + + +bitter (sein) +bitter (be) +amer (être) + + +
ek
+
+
(être) amer
+
+
bitter
+
+
bitter (sein)
+
+ +
1567
+
+
+ + + +sei ekelhaft +be disgusting, be repelling +être dégoûtant + +
i-285
+
+
+ + + +fürchterlich aussehen. +look mean +vilain du regard + + +
ek
+
+
fürchterlich aussehen.
+
+
+
+ + +
sâra pëtë
+
+ + + + + + + + + + + +Haare flechten +braid hair +tresser des cheveux + + +
ek
+
+
braid hair
+
+
Haare flechten
+
+
tresser des cheveux
+
+ +
0558
+
+
+
+ + +
dîngi mê
+
+ + + + + + + + + + + + +zuhören +listen +écouter +
écouter
+
+
listen
+
+
zuhören
+
+
+
+ + +
monyan
+
+ + +
mɔ.nya̰
+ +
1.1
+
+
+ + + +Schwager, Schwägerin +brother-in-law, sister-in-law +belle-soeur, beau-frère + +
+ + +
kîsîrî
+
+ + + + +Pfannkuchen +crepe +crêpe + + +
ek
+
+
crepe
+
+
crêpe
+
+
Pfannkuchen
+
+
+
+ + +
sîrîrî
+
+ + + + +Frieden +peace +paix + + +
tl
+
+
Frieden
+
+
paix
+
+
peace
+
+ +
0867
+
+
+
+ + +
+
+ + + + +
+ +
2
+
+
+ + + +Axt, Beil +axe, hatchet +hache + + +
tl
+
+
axe, hatchet
+
+
Axt, Beil
+
+
hache
+
+ +
0716
+
+
+
+ + +
sêndâ-yê
+
+ + + + + + + + + + + + +Ursprung, Abstammung +origin +origine + + +
ek
+
+
origin
+
+
origine
+
+
Ursprung, Abstammung
+
+
+ + + +Wissenschaft +science +science +
science
+
+
science
+
+
Wissenschaft
+
+
+
+ + +
gue na sênda tî
+
+ + + + + + + + +folgen +follow +suivre + + +
ek
+
+
folgen
+
+
follow
+
+
suivre
+
+ +
0503
+
+
+ + + +in jemandes Fußstapfen gehen +follow someone's footsteps +marcher dans les pas de quelqu'un + + +
ek
+
+
in jemandes Fußstapfen gehen
+
+
+
+ + +
mire
+
+ + + + +myrrh + +
+ + +
tïängö
+
+ + +
ti.a.ngɔ
+ +
2.2.2
+
+
+ + + +Mangel +lack, shortage +manque + +
i-610
+
+
+
+ + +
kâmba tî yangö
+
+ + + + +Angelschnur +fishing line +ligne de pêche + + +
tl
+
+
Angelschnur
+
+
fishing line
+
+
ligne de pêche
+
+ + +
0803
+
+
+
+ + +
sô lörö
+
+ + + + + + + +losrennen, schnell weggehen +start to run, leave quickly +mettre (se) à courir, partir à la hâte + + + + +
ek
+
+
losrennen, schnell weggehen
+
+
+
+ + +
hûru (wâ)
+
+ + + + +(Feuer) anzünden +light (fire) +activer (un feu) + + +
tl
+
+
(Feuer) anzünden
+
+
activer (un feu)
+
+
light (fire)
+
+ +
1496
+
+
+
+ + +
kerëvête
+
+ + + + +Garnele +crawfish +crevette + + +
tl
+
+
crawfish
+
+
crevette
+
+
Garnele
+
+ +
1092
+
+
+
+ + +
yângbö
+
+ + + + +Gelände +compound +concession + + + + +
ek
+
+
compound
+
+
concession
+
+
Gelände
+
+ +
0662
+
+
+
+ + +
pusupûsu
+
+ + + + +Handkarre +pushcart +charrette + + +
ek
+
+
charrette
+
+
Handkarre
+
+
pushcart
+
+
+
+ + +
bëngë
+
+ + + + +Gift, benutzt um den Schuldigen zu finden +poison used for trial +poison + + +
ek
+
+
Gift, benutzt um den Schuldigen zu finden
+
+
+
+ + +
sepela
+
+ + + + +ehren +honor +honorer + + +
ek
+
+
ehren
+
+
honor
+
+
honorer
+
+ +
0283
+
+
+ + + +preisen, anbeten +praise, worship +vénérer, adorer + + +
ek
+
+
preisen, anbeten
+
+
+ + + +höflich (sein) +polite, courteous (be) +poli, courtois (être) + +
mle-3612
+
+
+
+ + +
fuku tî sêse
+
+ + + + + + + + +Erde +soil +terre + + +
ek
+
+
Erde
+
+
soil
+
+
terre
+
+ +
1276
+
+
+ + + +Staub +dust +poussière + + +
ek
+
+
dust
+
+
poussière
+
+
Staub
+
+ +
1275
+
+
+
+ + +
bâa ndo nzönî pëpe
+
+ + +
Originally: zo sô abâa ndo nzönî pëpe
+
+ + + + + +kurzsichtig (sein) +myopic, shortsighted (be) +myope (être) + +
Lo yü tatärä lê tî dîko mbëtï gbanga tî sô lo bâa ndo nzönî pëpe.
+ +
He wears glasses to read because he is myopic.
+
+
+ + +
tl
+
+
(être) myope
+
+
kurzsichtig (sein)
+
+
myopic, shortsighted
+
+ +
0192
+
+
+ +see poorly +voir mal + +
+ + +
harara
+
+ + + + +Regenschirm +umbrella +parapluie + + +
ek
+
+
parapluie
+
+
Regenschirm
+
+
umbrella
+
+
+
+ + +
te yeke yeke
+
+ + + + + + + + + + + + +nagen +gnaw +ronger ; couper avec les dents par petits bouts + + +
tl
+
+
couper avec les dents par petits bouts
+
+
gnaw
+
+
nagen
+
+
ronger
+
+ +
0144
+
+
+
+ + +
balabâla
+
+ + + + +Strasse, Allee +road +rue, avenue + + +
ek
+
+
road
+
+
Strasse, Allee
+
+
+
+ + +
deku tî da
+
+ + + + + + + + + + + +Maus +mouse +souris + + +
tl
+
+
Maus
+
+
mouse
+
+
souris
+
+ +
1009
+
+
+
+ + +
sambele
+
+ + + + +Sperber +sparrowhawk +épervier + + +
ek
+
+
épervier
+
+
sparrowhawk
+
+
Sperber
+
+
+
+ + +
Pleyade
+
+ + + + +Siebengestirn, Plejaden +Pleiades +Pléiade + + +
tl
+
+
Pléiade
+
+
Pleiades
+
+
Siebengestirn, Plejaden
+
+ +
1323
+
+
+
+ + +
lîngbi kûê
+
+ + + + + + + + + + +vollkommen, perfekt (sein) +perfect (be) +parfait (être) + +
Abia (Psaumes) 18:24 (MNF2010) Na le ti lo, mbi lingbi kue, mbi ke lege ti sarango ye ti sioni.
+ +
In his eyes, I am perfect, I have rejected doing evil.
+
+
+ + +
tl
+
+
(être) parfait
+
+
perfect
+
+
vollkommen, perfekt (sein)
+
+ +
1580
+
+
+
+ + +
zeme
+
+ + + + +Messer +knife +couteau + + + + +
tl
+
+
couteau
+
+
knife
+
+
Messer
+
+ +
0786
+
+
+
+ + +
tene tënë na yâ tî mê
+
+ + + + + + + + + + + + + + + + +flüstern +whisper +chuchoter + + +
tl
+
+
chuchoter
+
+
flüstern
+
+
whisper
+
+ + +
0436
+
+
+
+ + +
zï terê tî
+
+ + + + + + + + + + + + +(zer-)kratzen +scratch +égratigner, érafler + + +
tl
+
+
(zer-)kratzen
+
+
égratigner, érafler
+
+
scratch
+
+ +
1451
+
+
+
+ + +
pëmbë tî doli
+
+ + + + + + + + + + + +Elefanten-Stoßzahn +elephant's tusk +défense (d'éléphant) + + +
tl
+
+
défense (d'éléphant)
+
+
Elefanten-Stoßzahn
+
+ +
1035
+
+
+
+ + +
pîka
+
+ + +
(ngbâkrû tî ngombï) = instrument
+
+ +
pîka (yê)
+ +
+ + + + + + + +schlagen +hit, strike +frapper, taper, donner un coup + + + + +
tl
+
+
frapper, taper, donner un coup
+
+
hit, strike
+
+
schlagen
+
+ +
1446
+
+
+ + + +schlagen +beat +battre + + +
tl
+
+
battre
+
+
beat
+
+
schlagen
+
+ +
1447
+
+
+ + + +(ein Instrument) spielen +play (instrument) +jouer (d'un instrument) + +
(ein Instrument) spielen
+
+
jouer (d'un instrument)
+
+
play (instrument)
+
+ +
0895
+
+
+ + + +stampfen +pound +piler + + +
tl
+
+
piler
+
+
pound
+
+
stampfen
+
+ + +
0599
+
+
+ + + +dreschen +thresh, beat (grain) +battre (la céréale) + + +
tl
+
+
battre (la céréale)
+
+
dreschen
+
+
thresh, beat (grain)
+
+ +
1447
+
+
+
+ + +
tumba pekô tî
+
+ + + + + + + + +jagen +chase +poursuivre, faire la chasse + + +
tl
+
+
chase
+
+
jagen
+
+
poursuivre, faire la chasse
+
+ +
0777
+
+
+
+ + +
te pëmbë
+
+ + + + + + + + + + + + +quietschen +squeak (wheel) +grincer, crier + + +
tl
+
+
grincer, crier
+
+
quietschen
+
+
squeak (wheel)
+
+ +
1329
+
+
+
+ + +
fâ ngû
+
+ + + + + + + + + + + + +einen Fluß überqueren +cross a river +traverser un fleuve + +
einen Fluß überqueren
+
cross a river or other body of water
+
traverser un fleuve ou un marigot
+
+ + + + +
tl
+
+
cross a river
+
+
einen Fluß überqueren
+
+
traverser un fleuve
+
+ +
0850
+
+
+
+ + +
ya
+
+ + + + +wehen (Wind) +blow (wind) +souffler (vent) + + +
tl
+
+
blow (wind)
+
+
souffler (vent)
+
+
wehen (Wind)
+
+ +
1476
+
+
+
+ + +
dedë
+
+ + + + + + + + +kühl, erfrischend +cool, refreshing (be) +frais, rafraîchissant (être) + +
Mû na mbï dedë ngû mbï nyön.
+ +
Give me cool water to drink.
+
Donne-moi de l'eau fraîche à boire.
+
+
+ + +
ek
+
+
kühl, erfrischend
+
+
+
+ + +
ndo sô âmakongö agbîan terê na yâ nî
+
+ + + + + + + + + + + + + + + + + + + + +Puppe, Kokon +cocoon +cocon + + +
tl
+
+
cocon
+
+
cocoon
+
+
Puppe, Kokon
+
+ + +
1152
+
+
+
+ + +
lîmo sô aleke na nzorôko tî mbênî yê
+
+ + + + + + + + + + + + + + + + + + + + +Maske +mask +masque + + +
tl
+
+
mask
+
+
Maske
+
+
masque
+
+ + +
0926
+
+
+
+ + +
kâta
+
+ + +
pejorative
+
+ + + +Hure, Prostituierte +prostitute +prostituée + + +
tl
+
+
Hure, Prostituierte
+
+
prostituée
+
+
prostitute
+
+ +
0407
+
+
+
+ + +
mûpe
+
+ + + + +Priester, Pfarrer +priest +prêtre + + +
ek
+
+
prêtre
+
+
priest
+
+
Priester, Pfarrer
+
+
+
+ + +
bozö tî înön
+
+ + + + + + + + + + + + +Blase +bladder +vessie + + +
tl
+
+
bladder
+
+
Blase
+
+
vessie
+
+ +
0087
+
+
+
+ + +
gümbâyä
+
+ + + + +neun (9) +nine (9) +neuf (9) + + +
ek
+
+
neun (9)
+
+
+
+ + +
dëbä
+
+ + + + +schwören, einen Eid ablegen +swear, take an oath +jurer, prêter serment + + + + +
ek
+
+ + +
0460
+
+
+ + + +Eid +oath +serment + + +
ek
+
+
Eid
+
+
oath
+
+
serment
+
+
+ + + +Fluch +curse +sort, malédiction + + + + +
ek
+
+
curse
+
+
Fluch
+
+
+
+ + +
kolongo
+
+ + +
kɔ.lɔ.ngɔ
+ +
1.1.1
+
+
+ + + +Rônierpalme, Borassus aethiopum +African fan palm, Borassus palm +rônier + +
Palme, Borassus aethiopum
+
African fan palm, Borassus aethiopum
+
rônier, Borassus aethiopum
+
+ + +
ek
+
+
rônier
+
+
Rônierpalme, Borassus aethiopum
+
+ +
i-737
+
+
+
+ + +
otâ bozö tî kôbe tî ândeke
+
+ + + + + + + + + + + + + + + + + + + + +Muskelmagen +gizzard +gésier + + +
tl
+
+
gésier
+
+
gizzard
+
+
Muskelmagen
+
+ +
1064
+
+
+
+ + +
hasa
+
+ + + + + + + +kratzen +scrape +gratter + +
gratter
+
+
kratzen
+
+
scrape
+
+ +
1450
+
+
+ + + +suchen +search +fouiller, étaler + +
fouiller, étaler
+
+
search
+
+
suchen
+
+ +
1474
+
+
+
+ + +
ngbêne bê
+
+ + + + + + + + + + + + +Niere +kidney +rein + + +
tl
+
+
kidney
+
+
Niere
+
+
rein
+
+ +
0084
+
+
+
+ + +
li
+
+ + + + +Kopf +head +tête + + + + +
tl
+
+
head
+
+
Kopf
+
+
tête
+
+ +
0003
+
+
+ + + +Gipfel +top +sommet + + +
ek
+
+
Gipfel
+
+
sommet
+
+
top
+
+
+
+ + +
bulëe
+
+ + + + +Banane +banana +banane douce + + +
ek
+
+
banana
+
+
Banane
+
+
banane douce
+
+ +
1208
+
+
+
+ + +
mayëen
+
+ + + + +Mittel, Möglichkeit +means, possibility +moyen + + +
ek
+
+
Mittel, Möglichkeit
+
+
moyen
+
+
+
+ + +
mâzawîli
+
+ + + + +Tierfett (Innereien) +animal fat (innards) +graisse d'abats + + +
ek
+
+
Tierfett (Innereien)
+
+
+
+ + +
yê tî pörö tî yângâ
+
+ + + + + + + + + + + + + + + + +Labret +labret, lip plug, lip disk +labret + + +
tl
+
+
labret
+
+
Labret
+
+
labret, lip plug, lip disk
+
+ +
0557
+
+
+
+ + +
ahön ndönî
+
+ + + + +zu viel, über die Maßen +too much +trop + +
Lo te kôbe ahön ndönî.
+ +
He ate too much.
+
+
+ + +
ek
+
+
trop
+
+
zu viel, über die Maßen
+
+
+
+ + +
marä-belü
+
+ + + + + + + +Igel +hedgehog +hérisson + + +
tl
+
+
hedgehog
+
+
hérisson
+
+
Igel
+
+ +
1012
+
+
+
+ + +
sâa
+
+ + + + +werfen +throw +jeter + +
sâa gbânda.
+ +
ein Netz auswerfen.
+
cast a net
+
jeter un filet
+
+
+ + +
ek
+
+
jeter
+
+
throw
+
+
werfen
+
+ + +
1430
+
+
+ + + +gießen +pour +verser + + +
ek
+
+
gießen
+
+
pour
+
+
verser
+
+ +
0632
+
+
+
+ + +
pîri
+
+ + + + +Trauergewand +mourning attire +habit de deuil + + + + +
ek
+
+
Trauergewand
+
+
+
+ + +
sêse tî yâ tî da
+
+ + + + + + + + + + + + + + + + +Fußboden +floor +plancher, sol + + +
tl
+
+
floor
+
+
Fußboden
+
+
plancher, sol
+
+ + +
0670
+
+
+
+ + +
yekia
+
+ + + + +ehren +honor +honorer + + +
ek
+
+
ehren
+
+
honor
+
+
honorer
+
+ +
0283
+
+
+
+ + +
mambö
+
+ + +
???
+ +
1.2
+
+
+ + + +Tanzart +type of dance +danse spécifique + + +
ek
+
+
Tanzart
+
+
+
+ + +
toli
+
+ + +
In the sense of "counsel" from Lingala tolî
+
+ + + +
to.li
+ +
1.1
+
+
+ + + +Gleichnis, Geschichte +parable, story +parabole, conte + + +
ek
+
+
Gleichnis, Geschichte
+
+
+ + + +Ratschlag +advice +conseil + + +
ek
+
+
advice
+
+
conseil
+
+
Ratschlag
+
+
+ + + +Sprichwort +proverb +proverbe + + +
ek
+
+
proverb
+
+
proverbe
+
+
Sprichwort
+
+ +
0481
+
+
+ + + +Rätsel +riddle +devinette + +
sc
+
+ +
i-306
+
+
+
+ + +
ngonzo tî ... adë
+
+ + + + + + + + +sich beruhigen +calm down +apaisé (être) + + + + +
ek
+
+
calm down
+
+
se calmer
+
+
sich beruhigen
+
+
+
+ + +
kpôkpô
+
+ + +
kpo.kpo
+ +
3.3
+
+
+ + + +Tabakpfeife +pipe +pipe + + +
tl
+
+
pipe
+
+
pipe
+
+
Tabakpfeife
+
+ +
0902
+
+
+
+ + +
ôko
+
+ + +
ɔ.kɔ
+ +
3.1
+
+
+ + + +eins (1) +one (1) +un (1) + + +
tl
+
+
eins (1)
+
+
one (1)
+
+
un (1)
+
+ +
1590
+
+
+ +einzige(r) +only one +seul + + +
ek
+
+
einzige(r)
+
+
seul
+
+
+ + + +gleich (sein) +same (be) +le même (être) +
gleich (sein)
+
+
+
+ + +
da tî kûâ
+
+ + + + + + + + + + + +Leichenhalle +morgue +morgue + + + + +
ek
+
+
Leichenhall
+
+
morgue
+
+
morgue
+
+
+
+ + +
kötä lenge
+
+ + + + + + + + + + + + +große perle +large perle +grosse perle +
große perle
+
+
+
+ + +
kukûna
+
+ + + + +riesig +gigantic (be) +gigantesque (être) + + +
ek
+
+
gigantesque
+
+
gigantic
+
+
riesig
+
+
+
+ + +
hînga maseka wâlï
+
+ + + + + + + + +entjungfern +take a young woman's virginity +prendre la virginité + + +
ek
+
+
entjungfern
+
+
+
+ + +
hûru fôlôlô
+
+ + + + + + + + + + + + +pfeifen +whistle +siffler + + +
tl
+
+
pfeifen
+
+
siffler
+
+
whistle
+
+ +
0882
+
+
+
+ + +
bendêre
+
+ + + + +Banner, Fahne, Flagge +banner, flag +drapeau + + +
ek
+
+
Banner, Fahne, Flagge
+
+
drapeau
+
+
+
+ + +
mbumbuse zo
+
+ + + + + + + + + + + + +verachten +despise, disdain +mépriser + + +
tl
+
+
despise, disdain
+
+
mépriser
+
+
verachten
+
+ +
0286
+
+
+
+ + +
bindi
+
+ + + + +der Zauber +evil spell, evil charm +maléfice + +
i-608
+
+
+
+ + +
ngunzä
+
+ + + + +Maniok-Blätter +manioc leaves +feuilles de manioc + + +
ek
+
+
Maniok-Blätter
+
+
+
+ + +
gûî
+
+ + + + +Jamswurzel +yam +igname + + +
Dioscorea spp.
+
+ +
tl
+
+
igname
+
+
Jamswurzel
+
+
yam
+
+ +
1229
+
+
+
+ + +
kodë tî âkötarä
+
+ + + + + + + + + + + + +Sitten, Bräuche +customs, traditions +coutumes, traditions +
Sitten, Bräuche
+
+
+
+ + +
ngborô
+
+ + +
???
+
+ + + +Schnippen +finger snap(ping) +claquement de doigts + + +
ek
+
+
Schnippen
+
+
+
+ + +
kânga lêgë
+
+ + + + + + + + + + + +verhindern, stoppen +prevent, stop +arrêter, empêcher + + +
ek
+
+
arrêter, empêcher
+
+
prevent, stop
+
+
verhindern, stoppen
+
+ +
0294
+
+
+ + + +verbieten +forbid +interdire + + +
tl
+
+
forbid
+
+
interdire
+
+
verbieten
+
+ +
0293
+
+
+
+ + +
pupë
+
+ + + + +Puppe +doll +poupée + + +
ek
+
+
doll
+
+
poupée
+
+
Puppe
+
+
+
+ + +
tene tënë na gbe tî gô
+
+ + + + + + + + + + + + + + + + + + + + +murren, meckern +mutter, grumble +murmurer, grommeler + + +
ek
+
+
murren, meckern
+
+
+ + + +flüstern +whisper +chuchoter + + +
ek
+
+
chuchoter
+
+
flüstern
+
+
whisper
+
+ +
0436
+
+
+
+ + +
gata
+
+ + + + +Garnele +crawfish +crevette + + +
tl
+
+
crawfish
+
+
crevette
+
+
Garnele
+
+ +
1092
+
+
+
+ + +
dawä tî li
+
+ + + + + + + + + + + + +Stirn +forehead +front + + +
tl
+
+
forehead
+
+
front
+
+
Stirn
+
+ +
0004
+
+
+
+ + +
gï hîo töngasô
+
+ + + + +direkt danach +right afterwards +juste après + +
Lo dutï kêtê, gï hîo töngasô, lo hön.
+ +
He stayed a while, then right afterwards, he left.
+
Il est resté un peu et puis, juste après, il est parti.
+
+
+
+ + + +augenblicklich +instantly +instantanément + +
Gï hîo töngasô, lo mû lörö.
+ +
Instantly, he began running.
+
Instantanément, il a commencé de courir.
+
+
+
+
+ + +
mbimba
+
+ + + + +Flußpferd +hippopotamus +hippopotame + + +
Hippopotamus amphibus
+
+ +
tl
+
+
Flußpferd
+
+
hippopotame
+
+
hippopotamus
+
+ +
0996
+
+
+
+ + +
rambâi
+
+ + + + +Eimer, Kübel zum Wasser schöpfen +bucket for drawing water +seau pour puiser + + +
ek
+
+
Eimer, Kübel zum Wasser schöpfen
+
+
+
+ + +
âbiö tî terê
+
+ + + + + + + + + + + + + + +Skelett +skeleton +squelette + + +
tl
+
+
skeleton
+
+
Skelett
+
+
squelette
+
+ +
0076
+
+
+
+ + +
këkë tî tämbëlängö na nî
+
+ + + + + + + + + + + + +Spazierstock +cane, walking stick +canne + + +
tl
+
+
cane, walking stick
+
+
canne
+
+
Spazierstock
+
+ + +
0560
+
+
+
+ + +
na mbâgë tî
+
+ + + + + + + + +gegen, hin zu +towards +vers, en direction de + +
Lo yê tî löndö na Berberati tî fono na mbâgë tî Bangui.
+ +
He wants to leave Berberati and travel towards Bangui.
+
+
+ + +
tl
+
+
gegen, hin zu
+
+
towards
+
+
vers, en direction de
+
+ +
1676
+
+
+
+ + +
kobêla tî dê
+
+ + + + +Malaria +malaria (fever) +paludisme (la fièvre + + + +
0228
+
+
+
+ + +
a-
+
+ + + + + +subject marker +marque le sujet + +
verbal prefix used when a noun phrase is subject of the clause
+
préfix verbal qui s'emploie lorsque un nom est sujet de la proposition
+
+ +
Âwâli ague na da tî Nzapä. Na pekônî âla gue na sëndë.
+ +
The women went to church. Afterwards they went to the cemetary
+
+
+
+
+ + +
babâ-kêtê
+
+ + + + + + + + +Vaters jüngerer Bruder +paternal uncle (father's younger brother) +frère cadet du père + + + + +
tl
+
+
frère cadet du père
+
+
uncle (paternal, father's younger brother)
+
+
Vaters jüngerer Bruder
+
+ + +
0348
+
+
+
+ + +
kôlï-gaduru
+
+ + + + + + + + + + + + +Eber +boar (male pig) +verrat + + +
tl
+
+
boar (male pig)
+
+
Eber
+
+
verrat
+
+ +
0988
+
+
+
+ + +
aturûgu
+
+ + + + +Armee +army +armée + + +
tl
+
+
Armee
+
+
armée
+
+
army
+
+ +
0868
+
+
+
+ + +
kombo
+
+ + +
???
+ +
1.1
+
+
+ + + +Flügel +wing +aile + + +
ek
+
+
aile
+
+
Flügel
+
+
wing
+
+ +
1059
+
+
+
+ + +
yâa
+
+ + + + +heben, aufheben +lift, lift up +lever, soulever + + +
ek
+
+
heben, aufheben
+
+
lever, soulever
+
+
lift, lift up
+
+ +
1427
+
+
+
+ + +
îri nginza
+
+ + + + + + + + +betteln +beg for money +mendier + + +
ek
+
+
beg for money
+
+
betteln
+
+
mendier
+
+ +
0831
+
+
+
+ + +
ë hînga pëpe
+
+ + + + + + + + + + + + +vielleicht +perhaps +peut-être + +
Ë hînga pëpe sî fadë lo gä.
+ +
Perhaps he will come.
+
+
+ + +
tl
+
+
perhaps
+
+
peut-être
+
+
vielleicht
+
+ +
1694
+
+
+
+ + +
bärä
+
+ + + + +Lager +camp +campement + + + + +
tl
+
+
camp
+
+
campement
+
+
Lager
+
+ + +
0534
+
+
+
+ + +
pïndïrï
+
+ + + + +Holzkohle +charcoal +charbon de bois + + +
tl
+
+
charbon de bois
+
+
charcoal
+
+
Holzkohle
+
+ + +
1311
+
+
+
+ + +
zîa bê tî ... na sêse
+
+ + + + + + + + + + + + + + + + +sich beruhigen +calm (oneself) +se calmer + +
Sâra sï lo zîa bê tî lo na sêse.
+ +
Make him calm himself .
+
+
+ + +
tl
+
+
calm (oneself)
+
+
se calmer
+
+
sich beruhigen
+
+ + +
0280
+
+
+ +beruhige dich +calm down, don't worry +calme-toi, ne te trouble pas + +
Kpälë nî ahön awe. Zîa bê tî mo na sêse.
+ +
The danger is gone. Calm yourself.
+
+
+ + +
ek
+
+
beruhige dich
+
+
+
+ + +
sulêe
+
+ + + + +betrunken (sein) +drunk (be) +ivre, soûl (être) + +
Âla nyön ngbâko mîngi, töngasô lo sulêe sïönî.
+ +
They drank too much moonshine, so he is really drunk.
+
+
+ + +
tl
+
+
(être) ivre, soûl
+
+
betrunken (sein)
+
+
drunk
+
+ +
0182
+
+
+
+ + +
+
+ + +
+ +
3
+
+
+ + + +schlagen +hit +frapper + + +
ek
+
+
frapper
+
+
hit
+
+
schlagen
+
+ +
1446
+
+
+ + + +verhauen +spank +corriger + + +
ek
+
+
corriger
+
+
spank
+
+
verhauen
+
+
+
+ + +
gbânda tî tere
+
+ + + + + + + + + + + + +Spinnennetz +spider-web +toile d'araignée + + +
tl
+
+
spider-web
+
+
Spinnennetz
+
+
toile d'araignée
+
+ +
1151
+
+
+
+ + +
bïngö yangô
+
+ + + + + + + + +Angeln +line fishing +pêche à la ligne + + +
ek
+
+
Angeln
+
+
+
+ + +
hôn tî doli
+
+ + + + + + + + +Elefanten-Rüssel +elephant's trunk +trompe d'éléphant + + +
tl
+
+
Elefanten-Rüssel
+
+
trompe d'éléphant
+
+ +
1034
+
+
+
+ + +
kîte
+
+ + + + +Zweifel +doubt +doute + + + + +
ek
+
+
doubt
+
+
doute
+
+
Zweifel
+
+
+
+ + +
buba
+
+ + + + +verderben, abfall +spoil (food) (intr) +pourrir, s'abîmer (aliments) + + + + +
tl
+
+
pourrir, s'abîmer (aliments)
+
+
spoil (food) (intr)
+
+
verderben
+
+ + +
0583
+
+
+ + + +ruiniert, kaputt (sein) +ruined, spoiled (be), get worse +gâté, abîmé, ruiné (être), se dégrader + +
Sô buba yê laâ!
+ +
That is a spoiled thing!
+
C'est une chose pourrie!
+
+
+ + +
& i-286
+
+ +
tl
+
+
(être) gâté, abîmé, ruiné
+
+
ruined, spoiled
+
+
ruiniert, kaputt (sein)
+
+ +
1462
+
+
+ + + +verschwenden, vergeuden +waste +gaspiller + + +
mle-5212
+
+
+ + + +ruinieren; verderben +ruin, damage, defile +gâcher + + +
ek
+
+
gâcher
+
+
ruin
+
+
ruinieren
+
+
verderben
+
+ +
i-286
+
+
+ +kaputt +broken (be) +en panne (être) + + +
ek
+
+
broken
+
+
kaputt
+
+
+ + + +zerstören +destroy +détruire + + +
tl
+
+
destroy
+
+
détruire
+
+
zerstören
+
+ +
1461
+
+
+ + + +(zer-)brechen +break +casser + + +
tl
+
+
(zer-)brechen
+
+
break
+
+
casser
+
+ +
1460
+
+
+
+ + +
mbôo
+
+ + +
Check tone
+
+ +
mboo
+ +
31
+
+
+ + + +abwischen, wischen +wipe +essuyer +
abwischen, wischen
+
+
essuyer
+
+
wipe
+
+
+ + + +löschen, radieren +erase (by wiping) +effacer (en essuyant) +
effacer
+
+
erase
+
+
löschen, radieren
+
+
+
+ + +
na ndö tî gerë tî ...
+
+ + + + +auf dem Schoß +on the lap +sur les genoux + +
Môlengê nî adutï na ndö tî gerë tî mamâ tî lo.
+ +
The child sat on his mother's lap.
+
L'enfant est assis sur les genoux de sa mère.
+
+
+ +
mle-2740
+
+
+
+ + +
yü ... na bongö
+
+ + + + +anziehen +dress +habiller + + +
ek
+
+
anziehen
+
+
dress
+
+
+
+ + +
dutï na kötä ngîâ
+
+ + + + + + + + + + + + +sich freuen +rejoice +se réjouir + + +
tl
+
+
rejoice
+
+
se réjouir
+
+
sich freuen
+
+ + +
0268
+
+
+
+ + +
yângâ
+
+ + + + +Mund +mouth +bouche + + + + +
tl
+
+
bouche
+
+
mouth
+
+
Mund
+
+ +
0015
+
+
+ + + +Sprache +language +langue + + +
ek
+
+
language
+
+
langue
+
+
Sprache
+
+ + +
0430
+
+
+
+ + +
vurü ndo
+
+ + + + + + + + + + + + +Licht +light +lumière + + +
tl
+
+
Licht
+
+
light
+
+
lumière
+
+ +
1347
+
+
+
+ + +
yeke lîse
+
+ + +glatt, sanft (sein) +smooth (be) +lisse (être) + +
Papier de verre asâra sï këkë nî ayeke lîse.
+ +
The sandpaper made the board to be smooth.
+
+
+ + +
tl
+
+
(être) lisse
+
+
glatt, sanft (sein)
+
+
smooth
+
+ +
1542
+
+
+
+ + +
zo wa
+
+ + + + + + + + +wer? +who? +qui ? + +
Asoro zo wa tî gä président tî ködörö?
+ +
Who did they pick to become president of the country?
+
+
+ + +
tl
+
+
qui ?
+
+
wer?
+
+
who?
+
+ + +
1683
+
+
+
+ + +
yâ tî dû tî kötä ngû sô ahôle
+
+ + + + + + + + + + + + + + + + + + + + +Flussbett (trocken) +riverbed (dry) +wadi, lit sec de rivière + + +
tl
+
+
Flussbett (trocken)
+
+
riverbed (dry)
+
+
wadi, lit sec de rivière
+
+ + +
1295
+
+
+
+ + +
asâra ngû ...
+
+ + + + + + + + +vor...Jahren +...years ago +il y a...ans + +
Asâra ngû mîngi, a îri RCA "Oubangui Chari".
+ + +
+ + +
ek
+
+
vor...Jahren
+
+
+
+ + +
lïngbïngö
+
+ + +
li.ngbi.ngɔ
+ +
2.2.2
+
+
+ + + +Mittel, Fähigkeit +means, ability +moyens, capacité + + +
ek
+
+
Mittel, Fähigkeit
+
+
+
+ + +
yê ngîâ
+
+ + + + + + + + + + +amüsant, lustig (sein) +amusing, funny (be) +amusant, drôle (être) + + +
tl
+
+
(être) amusant, drôle
+
+
amüsant, lustig (sein)
+
+
amusing, funny
+
+ +
1587
+
+
+
+ + +
ngangü ngêrë
+
+ + +
Formerly the following as head words: (yê) tî ngangü ngêrë; yê tî ngêrë ngangü
+
+ + + + + + + + + + + +teuer (sein) +expensive, high priced (be) +cher, coûteux (être) + +
Lo hûnda ngangü ngêrë. Mbï fûta gï kêtê na galâ.
+ +
He asked a high price. I paid just a little at the market.
+
+
+ + +
tl
+
+
(être) cher, coûteux
+
+
expensive, high price
+
+
teuer (sein)
+
+ +
0823
+
+
+
+ + +
li tî hötö
+
+ + + + + + + + + + + +Gipfel +summit, highest point +sommet, cime + + +
tl
+
+
Gipfel
+
+
sommet, cime
+
+
summit, highest point
+
+ + +
1263
+
+
+
+ + +
gbû na ngangü
+
+ + + + + + + + + + + + + + +zwingen +force +forcer + +
+ + +
kapï
+
+ + + + +Mungo +mongoose +mangouste + + +
tl
+
+
mangouste
+
+
mongoose
+
+
Mungo
+
+ +
1015
+
+
+
+ + +
fîon
+
+ + +
fiɔ̰
+ +
31
+
+
+ + + +Geruch +odor, scent +odeur + + +
ek
+
+
Geruch
+
+
odeur
+
+
odor, scent
+
+ + +
1568
+
+
+
+ + +
+
+ + + + +Verletzung +injury +blessure + + +
tl
+
+
blessure
+
+
injury
+
+
Verletzung
+
+ +
0220
+
+
+ + + +Wunde +wound, sore +plaie + + +
ek
+
+
plaie
+
+
wound, sore
+
+
Wunde
+
+ +
0220
+
+
+
+ + +
sifön
+
+ + +
si.fɔ̰
+ +
1.2
+
+
+ + + +Lappen +rag +chiffon + + +
tl
+
+
chiffon
+
+
Lappen
+
+
rag
+
+ + +
0733
+
+
+
+ + +
wûsûwusu
+
+ + + + +Unordnung, Unruhe +disorder, confusion +tumulte, désordre + + +
ek
+
+
Unordnung, Unruhe
+
+
+
+ + +
gbe tî yângâ
+
+ + + + + + + + + + + +Kinn +chin +menton + + +
tl
+
+
chin
+
+
Kinn
+
+
menton
+
+ +
0022
+
+
+
+ + +
mamâ
+
+ + + + +Mutter +mother +mère + + + + +
tl
+
+
mère
+
+
mother
+
+
Mutter
+
+ +
0345
+
+
+
+ + +
dû-ngû
+
+ + + + + + + + + + + +Brunnen +well +puits + + +
ek
+
+
Brunnen
+
+
puits
+
+
well
+
+ +
0679
+
+
+
+ + +
yê tî vundû
+
+ + + + +großes Unglück +big hardship, tragedy +grand malheur + +
i-483
+
+
+
+ + +
gbïngö terê
+
+ + + + + + + + + + + +Verbrennung +burn +brûlure + + +
tl
+
+
brûlure
+
+
burn
+
+
Verbrennung
+
+ + +
0216
+
+
+
+ + +
hâka nî töngana sî akono mîngi pëpe
+
+ + + + +unter Schätzung +under-estimate +sous-estimer + +
i-972
+
+
+
+ + +
ndôngô
+
+ + +
ndo.ngo
+ +
3.3
+
+
+ + + +scharfer Pfeffer +hot pepper +piment + + +
tl
+
+
hot pepper
+
+
piment
+
+
scharfer Pfeffer
+
+ +
1223
+
+
+
+ + +
bongö tî kânga na kûâ
+
+ + + + +leichentuch +shroud, sheet +linceul + +
i-579
+
+
+
+ + +
pîka ngbonga
+
+ + + + + + + + + + + + +(eine Glocke) läuten +ring (bell) +sonner (une cloche) + + +
tl
+
+
(eine Glocke) läuten
+
+
ring (bell)
+
+
sonner (une cloche)
+
+ + +
0701
+
+
+
+ + +
fi yê na yâ tî hôn na gïgî
+
+ + + + + + + + + + + + + + + + + + + + +sich schnäuzen +blow nose +se moucher + + +
tl
+
+
blow nose
+
+
se moucher
+
+
sich schnäuzen
+
+ +
0105
+
+
+
+ + +
fün sïönî
+
+ + + + + + + + +stinken +stink, smell (bad) +puer, sentir mauvais + + +
tl
+
+
puer, sentir mauvais
+
+
stink, smell (bad)
+
+
stinken
+
+ +
1569
+
+
+
+ + +
korôro
+
+ + +
ko.ɾo.ɾo
+ +
1.3.1
+
+
+ + + +Esel +donkey +âne + + +
ek
+
+
âne
+
+
donkey
+
+
Esel
+
+ +
0986
+
+
+
+ + +
+
+ + + + +graben +dig +creuser + + +
tl
+
+
creuser
+
+
dig
+
+
graben
+
+ +
0740
+
+
+
+ + +
lëlë
+
+ + + + +Esel +donkey +âne + + +
tl
+
+
âne
+
+
donkey
+
+
Esel
+
+ +
0986
+
+
+
+ + +
+
+ + + + +Ding +thing +chose + + + + +
tl
+
+
chose
+
+
Ding
+
+
thing
+
+ +
1385
+
+
+
+ + +
pônde
+
+ + + + + +
???
+
+ + + +Nagel +nail +pointe, clou + + +
ek
+
+
clou
+
+
Nagel
+
+
nail
+
+ +
0724
+
+
+
+ + +
kundâ tî gbe tî ngû
+
+ + + + + + + + + + + + + + + + +(Wasser-)Schildkröte +turtle +tortue (aquatique) + + +
tl
+
+
(Wasser-)Schildkröte
+
+
tortue (aquatique)
+
+
turtle
+
+ + +
1109
+
+
+
+ + +
ngû tî terê
+
+ + + + + + + + +Samen, Spermien +semen +sperme, semence + + +
ek
+
+
Samen, Spermien
+
+
semen
+
+
sperme, semence
+
+ + +
0100
+
+
+
+ + +
bîakü
+
+ + + + +sofort, sogleich +immediately +aussitôt + +
A lîngbi ï gue bîakü, kôzo sï lo gä.
+ +
We must go immediately before he comes.
+
+
+ + +
ek
+
+
aussitôt
+
+
immediately
+
+
sofort, sogleich
+
+
+
+ + +
terê sô angûngbi
+
+ + + + + + + + + + + + +Falte (auf der Haut) +wrinkle (on skin) +ride (sur la peau) + + +
tl
+
+
Falte (auf der Haut)
+
+
ride (sur la peau)
+
+
wrinkle (on skin)
+
+ +
0187
+
+
+
+ + +
yeke na kïön
+
+ + + + + + + + + + +egoistisch (sein) +selfish (be) +égoïste (être) + +
Lo ke tî kângbi mosoro tî lo ngbanga tî lo yeke na kïön.
+ +
He refused to share his wealth because he was selfish.
+
+
+
egoistisch (sein)
+
+
+
+ + +
külä
+
+ + + + +Schulden +debt +dette + + +
ek
+
+
debt
+
+
dette
+
+
Schulden
+
+ +
0834
+
+
+
+ + +
mâi
+
+ + + + +sich entwickeln, wachsen +develop, grow +développer (se), croître + + +
ek
+
+
sich entwickeln, wachsen
+
+
+ + + +wachsen (Pflanzen) +grow (of plants) +pousser (plantes) + + +
tl
+
+
grow (of plants)
+
+
pousser (plantes)
+
+
wachsen (Pflanzen)
+
+ +
1245
+
+
+ + + +sprießen +sprout +apparaître, pousser + + +
tl
+
+
apparaître, pousser
+
+
sprießen
+
+
sprout
+
+ +
i-468
+
+
+
+ + +
anzere pëpe
+
+ + + + +bad (tasting) (be) +mauvais (au goût) (être) + +
Kôbe nî anzere pëpe na yângâ tî lo.
+ +
The food doesn't taste good to him.
+
Le goût de la nourriture ne lui plaît pas.
+
+
+ +
i-630
+
+
+
+ + +
diminî
+
+ + + + +Preis herabsetzen +reduce the price +diminuer le prix + + +
ek
+
+
Preis herabsetzen
+
+
+
+ + +
kî tî ngbö
+
+ + + + + + + + + + + + +Giftzahn (einer Schlange) +fang (of snake) +crochet (de serpent) + + +
tl
+
+
crochet (de serpent)
+
+
fang (of snake)
+
+
Giftzahn (einer Schlange)
+
+ +
1110
+
+
+
+ + +
zï yâ tî tënë
+
+ + + + + + + + + + + + + + + + +widersprechen +contradict +contredire + + +
tl
+
+
contradict
+
+
contredire
+
+
widersprechen
+
+ +
0468
+
+
+
+ + +
wâlï tî môlengê tî ...
+
+ + + + + + + + + + + + +Schwiegertochter +daughter-in-law +belle-fille + + +
tl
+
+
belle-fille
+
+
daughter-in-law
+
+
Schwiegertochter
+
+ +
0370
+
+
+
+ + +
kötä kpöka
+
+ + + + + + + + + + + + +große Hacke +big hoe +grande houe + + +
tl
+
+
grande houe
+
+
große Hacke
+
+ +
0753
+
+
+
+ + +
dâlê
+
+ + + + +Kröte +toad +crapaud + + +
tl
+
+
crapaud
+
+
Kröte
+
+
toad
+
+ + +
1107
+
+
+ + + +Frosch +frog +grenouille + + +
ek
+
+
frog
+
+
Frosch
+
+
grenouille
+
+ + +
1106
+
+
+
+ + +
tä ndembö
+
+ + + + + + + + + + + +Fußball spielen +play soccer +jouer au foot + + +
ek
+
+
Fußball spielen
+
+
+
+ + +
sô ge
+
+ + + + + + + + + + + + +dieser ... hier +this ... here +ce ... -ci + +
Mbi ndui kôlï sô ge, me koli so ka ayo mingi.
+ + +
+ + +
tl
+
+
ce ... -ci
+
+
dieser ... hier
+
+
this ... here
+
+ +
1679
+
+
+
+ + +
vûko
+
+ + + + +dunkel +dark (be) +sombre + +
Ndo avûko awe.
+ +
Es ist bereits dunkel
+
It's already dark out
+
Il fait déjà nuit
+
+
+ + +
ek
+
+
dark
+
+
dunkel
+
+
sombre
+
+ +
1562
+
+
+ + + +schwarz +black (be) +noir + + +
ek
+
+
black
+
+
noir
+
+
schwarz
+
+ + +
1556
+
+
+ + + +schmutzig +dirty (be) +sale + + +
ek
+
+
dirty
+
+
sale
+
+
schmutzig
+
+ +
1585
+
+
+
+ + +
sängö
+
+ + + + +Sango Sprache +Sango language +langue sango + + + +
ek
+
+
Sango Sprache
+
+
+
+ + +
zîa mbênî na ndönî
+
+ + + + + + + + + + + + + + + + +vergrössern, steigern +increase (intr) +augmenter (intr) + + +
tl
+
+
augmenter (intr)
+
+
increase
+
+
vergrössern, steigern
+
+ +
1629
+
+
+
+ + +
baba
+
+ + + + +Stolz, Hochmut +pride, vanity, vainness +fierté, orgueil, vanité + + +
& i-720
+
+ +
ek
+
+
pride
+
+
Stolz, Hochmut
+
+ +
i-1051
+
+
+
+ + +
ndurü bê
+
+ + + + + + + + + + + +Ungeduld +impatience +impatience + +
Zo tî ndurü bê alîngbi tî kü pëpe.
+ +
An impatient (person of impatience) person can't wait.
+
Quelqu'un qui est impatient ne peut pas attendre.
+
+
+
+
+ + +
ndûrûkpâ
+
+ + + + +Zwerg +dwarf +nain + + +
tl
+
+
dwarf
+
+
nain
+
+
Zwerg
+
+ +
0200
+
+
+
+ + +
hînön
+
+ + + + + +
hi.nɔ̰ / i.no̰ / hi.nɔ / i.nɔ
+ +
3.2
+
+
+ + + +Harn, Urin +urine +urine + + + + +
ek
+
+
Harn, Urin
+
+
urine
+
+
urine
+
+ +
0101
+
+
+
+ + +
gbägbä tî sêse
+
+ + + + + + + +Erdwall +wall of earth around a compound +mur de terre entourant les cours (petit) + +
i-679
+
+
+
+ + +
ngbâa
+
+ + + + +Sklave +slave +esclave + + +
tl
+
+
esclave
+
+
Sklave
+
+
slave
+
+ +
0395
+
+
+
+ + +
meresî
+
+ + + + +Dank +thanks +merci + +
+ + +
sämba tî ködrö
+
+ + + + + + + + + + + +(traditionelles) Bier +beer (traditional) +bière (traditionnelle) + + +
tl
+
+
(traditionelles) Bier
+
+
beer (traditional)
+
+
bière (traditionnelle)
+
+ +
0588
+
+
+
+ + +
nzêne
+
+ + + + +klein +little (be) +petit (être) + +
Lo kûku tî rô anzêne tî kôbe.
+ +
He stooped to pick up the little morsels of food.
+
Il s'est penché pour ramasser les petites miettes de nourriture.
+
+
+ + +
ek
+
+
klein
+
+
little
+
+
petit
+
+ +
1509
+
+
+ + + +reduzieren,miniaturisieren +reduce, miniaturize +rendre tout petit, miniaturiser + +
Lo nzêne wâ tî da nî.
+ +
He reduced the light in the house.
+
Il a diminué la lumière dans la maison.
+
+
+
reduzieren,miniaturisieren
+
+
+
+ + +
mabôko tî bongö
+
+ + + + + + + + + + + +Ärmel +sleeve +manche + + + + +
ek
+
+
Ärmel
+
+
manche
+
+
sleeve
+
+
+
+ + +
bätängö-nyama
+
+ + + + +Tierzucht +animal husbandry +élevage + +
Tierzucht
+
animal husbandry, stock herding
+
élevage
+
+ + +
ek
+
+
élevage
+
+
Tierzucht
+
+
+
+ + +
dû sô alinda
+
+ + + + + + + + + + + + +Grube +pit +fosse + + +
tl
+
+
fosse
+
+
Grube
+
+
pit
+
+ + +
1267
+
+
+
+ + +
dambëtï
+
+ + + + +Schule +school +école + + +
ek
+
+
école
+
+
school
+
+
Schule
+
+
+
+ + +
ânde
+
+ + + + +später, in Zukunft +later, future +futur + +
später, in der Zukunft
+
later, in the future
+
plus tard
+
+ + +
ek
+
+
futur
+
+
später, in Zukunft
+
+
+
+ + +
yenga sô ahûnzi
+
+ + + + +letzte Woche +last week +semaine dernière + +
Na yenga sô ahûnzi, lo lü yäkä tî kârâkö.
+ +
Last week, he planted peanuts.
+
La semaine dernière, il a semé des arachides.
+
+
+ +
mle-2748
+
+
+
+ + +
kutubôn
+
+ + +
ku.tu.bɔ̰
+ +
1.1.3
+
+
+ + + +Faust +fist +poing + + +
tl
+
+
Faust
+
+
fist
+
+
poing
+
+ +
0057
+
+
+
+ + +
kasa
+
+ + + + +kritisieren +criticize +critiquer + + +
ek
+
+
criticize
+
+
critiquer
+
+
kritisieren
+
+ +
i-258
+
+
+
+ + +
hâ gbä
+
+ + + + + + + + +vergeblich versuchen +try in vain +essayer en vain + + +
ek
+
+
vergeblich versuchen
+
+
+
+ + +
hûnda terê
+
+ + + + + + + + +sich fragen, nachdenken +wonder, think about +se demander, réfléchir + + +
ek
+
+
sich fragen, nachdenken
+
+
+
+ + +
ke na kürü gô
+
+ + + + + + + + + + + + + + + +absolut ablehnen +reject absolutely +rejeter absolument + +
+ + +
kânasûkre
+
+ + + + +Zuckerrohr +sugarcane +canne à sucre + + +
Cola acuminata
+
+ +
tl
+
+
canne à sucre
+
+
sugarcane
+
+
Zuckerrohr
+
+ + +
1241
+
+
+
+ + +
+
+ + + + +Loch +hole +trou + + + + +
tl
+
+
hole
+
+
Loch
+
+
trou
+
+ +
1268
+
+
+ + + +Bau, Höhle +den, lair, hole +tanière, antre [gîte] + + +
tl
+
+
Bau, Höhle
+
+
den, lair, hole
+
+
tanière, antre [gîte]
+
+ + +
1036
+
+
+ + + +Loch, Öffnung +opening +ouverture, percée + + +
mle-3342
+
+
+
+ + +
luêe
+
+ + + + +mieten +rent +louer + + +
ek
+
+
louer
+
+
mieten
+
+
rent
+
+
+
+ + +
tumba
+
+ + + + + + + +jagen, verfolgen +hunt +poursuivre, chasser + + +
tl
+
+
hunt
+
+
jagen, verfolgen
+
+
poursuivre, chasser
+
+ +
0775
+
+
+
+ + +
bïngö
+
+ + +
bi.ngo
+ +
2.2
+
+
+ + + +Dunkelheit +darkness +obscurité + + +
ek
+
+
darkness
+
+
Dunkelheit
+
+
obscurité
+
+ + +
1351
+
+
+
+ + +
sûku na
+
+ + +... beschimpfen, wütend auf ... (sein) +scold ..., angry with ... (be) +gronder ..., se fâché avec ... + +
+ + +
soro
+
+ + +
so.ɾo
+ +
1.1
+
+
+ + + +wählen +choose (tr), pick (tr) +choisir + + +
tl
+
+
choisir
+
+
choose (tr), pick (tr)
+
+
wählen
+
+ +
0289
+
+
+ + + +sortieren +sort +trier + + +
ek
+
+
sort
+
+
sortieren
+
+
trier
+
+ +
i-1034
+
+
+
+ + +
kange
+
+ + + + +Termite +termite +termite + + +
ek
+
+
termite
+
+
termite
+
+
Termite
+
+ +
1126
+
+
+
+ + +
sabângo
+
+ + +
???
+
+ + + +Ruf +reputation +réputation + + +
tl
+
+
reputation
+
+
réputation
+
+
Ruf
+
+ +
0318
+
+
+
+ + +
ngoro
+
+ + +
ngo.ɾo
+ +
1.1
+
+
+ + + +umgehen, umkreisen +go around +contourner + + +
ek
+
+
contourner
+
+
umgehen, umkreisen
+
+
+ + + +einkreisen +surround +encercler, entourer + + +
tl
+
+
einkreisen
+
+
encercler, entourer
+
+
surround
+
+ +
1439
+
+
+
+ + +
bôrö
+
+ + + + + +
bo.ɾo
+ +
3.3 / 3.2
+
+
+ +
bo.ɾo
+ +
3.2 / 3.3
+
+
+ + + +Kopfpolster +doughnut-shaped head pad +coussinet de portage + + +
tl
+
+
coussinet de portage
+
+
Kopfpolster
+
+ + +
0862
+
+
+
+ + +
lê tî kôbe
+
+ + + + + + + + + + + +Erntegut +harvested crop +produit de la moisson + + +
ek
+
+
Erntegut
+
+
harvested crop
+
+
produit de la moisson
+
+
+ + + +Samen +seed +graine + + +
ek
+
+
graine
+
+
Samen
+
+
seed
+
+ +
1202
+
+
+
+ + +
+
+ + + + +sich lustig machen, über jemanden lachen +mock, laugh about +se moquer, rire de + + + + +
ek
+
+
sich lustig machen, über jemanden lachen
+
+
+
+ + +
tënë
+
+ + + + +Problem, Ärger +problem, trouble +problème + + + + +
ek
+
+
Problem, Ärger
+
+
problem, trouble
+
+
problème
+
+ +
0325
+
+
+
+ + +
dutï kpô
+
+ + + + + + + + + + + +ruhig bleiben/sein +calm (be) +rester calme + + + + +
ek
+
+
calm
+
+
rester calme
+
+
ruhig bleiben/sein
+
+ + +
mle-0728
+
+
+ + + +sich beruhigen +calm (oneself) +se calmer + + +
tl
+
+
sich beruhigen
+
+ +
0280
+
+
+
+ + +
konô
+
+ + +
kɔ.nɔ
+ +
1.3
+
+
+ + + +Flußpferd +hippopotamus +hippopotame + + +
Hippopotamus amphibus
+
+ +
tl
+
+
Flußpferd
+
+
hippopotame
+
+
hippopotamus
+
+ +
0996
+
+
+
+ + +
ngbonga ahön awe
+
+ + + + + + +es ist zu spät +it's too late +c'est trop tard + +
ek
+
+
es ist zu spät
+
+
+
+ + +
ngo
+
+ + + + +
ngɔ
+ +
1
+
+
+ + + +Fötus +fetus +fœtus + + +
ek
+
+
fetus
+
+
fœtus
+
+
Fötus
+
+
+ + + +Schwangerschaft +pregnancy +grossesse + + +
ek
+
+
grossesse
+
+
pregnancy
+
+
Schwangerschaft
+
+
+
+ + +
pëpe
+
+ + + + +nicht +not +ne...pas + +
Ndü sô pëpe!
+ +
Do not touch that!
+
+
+ + +
ek
+
+
ne...pas
+
+
nicht
+
+
not
+
+ +
monino-114
+
+
+
+ + +
sê lörö
+
+ + +
unknown to sl who prefers mu loro, kpe loro or su kpe
+
+ + + + + + + + + + +losrennen +start to run +mettre (se) à courir + + +
ek
+
+
losrennen
+
+
+
+ + +
söngö
+
+ + +
so.ngo
+ +
2.2
+
+
+ + + +Verbindung +tie +lien + +
ek
+
+
lien
+
+
tie
+
+
Verbindung
+
+
+
+ + +
ndângbâ
+
+ + + + +zuletzt geboren +last born +dernier-né +
dernier-né
+
+
zuletzt geboren
+
+
+
+ + +
sana
+
+ + + + +Bosheit +evil intent +méchanceté + +
+ + +
gbû gerê
+
+ + + + + + + + + + + +sich entschuldigen, um Verzeihung bitten +beg pardon, apologize +s'excuser, supplier + + +
ek
+
+
sich entschuldigen, um Verzeihung bitten
+
+
+
+ + +
zingîri
+
+ + + + +Kette +chain +chaîne + + +
ek
+
+
chain
+
+
chaîne
+
+
Kette
+
+
+
+ + +
mä füngö
+
+ + + + + + + + + + + + +riechen +smell +sentir (par le nez) + + +
tl
+
+
riechen
+
+
sentir (par le nez)
+
+
smell
+
+ +
0136
+
+
+
+ + +
mbëtïkâpä
+
+ + + + +Kalender +calendar +calendrier + + + + +
ek
+
+
calendar
+
+
calendrier
+
+
Kalender
+
+
+
+ + +
zo tî mosoro
+
+ + + + + + + + + + + + +ein reicher Mann +rich person +un riche + + +
tl
+
+
ein reicher Mann
+
+
rich person
+
+
un riche
+
+ +
0813
+
+
+
+ + +
lâôko äpe
+
+ + + + + + + + + + + + + + +nie +never +jamais + +
Lo sï na Bangui lâôko äpe.
+ +
He never made it to Bangui.
+
+
+ + +
ek
+
+
jamais
+
+
never
+
+
nie
+
+ +
1364
+
+
+
+ + +
lânî
+
+ + + + +damals +then, at that time +alors, ce jour-là + +
Na lânî sô, âkutukutu ade tî sï na RCA äpe.
+ +
At that time, cars had not yet come to CAR.
+
+
+ +
ek
+
+
damals
+
+
+
+ + +
kôbe tî lâkûi
+
+ + + + + + + + + + + + +Abendbrot, Nachtessen +evening meal +repas du soir + + +
tl
+
+
Abendbrot, Nachtessen
+
+
repas du soir
+
+ +
0580
+
+
+
+ + +
kâi
+
+ + + + +beruhigen +calm +apaiser, calmer + + + + +
ek
+
+
beruhigen
+
+
calm
+
+
+ + + +anhalten +cease, stop +cesser, s'arrêter + + +
tl
+
+
anhalten
+
+
cease, stop
+
+
cesser, s'arrêter
+
+ +
1505
+
+
+ + + +heilen +heal +guérir +
guérir
+
+
heal
+
+
heilen
+
+
+ + + +schweigen, ruhig (sein) +silent (be) +se taire, (être) silencieux + + +
tl
+
+
schweigen, ruhig (sein)
+
+
se taire, (être) silencieux
+
+
silent
+
+ + +
0442
+
+
+
+ + +
manda yê
+
+ + +
learn
+
+ + + + + + + + + + +
+ + +
fâ lêgë
+
+ + + + + + + + + + + + +die Straße überqueren +cross the road +traverser la route + + + + +
ek
+
+
die Straße überqueren
+
+
+
+ + +
gamvara
+
+ + + + +Zibet +civet +civette + +
civet
+
+
civette
+
+
Zibet
+
+ +
1022
+
+
+
+ + +
balëûse na otâ
+
+ + + + +dreiundzwanzig (23) +twenty-three (23) +vingt-trois (23) + +
dreiundzwanzig (23)
+
+
twenty-three (23)
+
+
vingt-trois (23)
+
+ +
chan_01
+
+
+
+ + +
mbëtï
+
+ + + + +Papier +paper +papier + + + + +
ek
+
+
paper
+
+
papier
+
+
Papier
+
+
+ + + +Brief +letter +lettre + + +
ek
+
+
Brief
+
+
letter
+
+
lettre
+
+
+
+ + +
fambele
+
+ + + + +Sperber +sparrowhawk +épervier + + +
tl
+
+
épervier
+
+
Habicht
+
+
sparrowhawk
+
+
+
+ + +
sûru lêgë
+
+ + + + + + + + +Pfad schlagen +make a path +ouvrir la voie + + +
ek
+
+
Pfad schlagen
+
+
+
+ + +
ndeke
+
+ + + + +Vogel +bird +oiseau + + +
tl
+
+
bird
+
+
oiseau
+
+
Vogel
+
+ +
1041
+
+
+
+ + +
ngëngëlë ôko
+
+ + + + + + + + +ein einziges +only a single one +un seul + + +
ek
+
+
ein einziges
+
+ +
+
+ + +
fâ yäkä
+
+ + + + + + + + +Feld bestellen, bebauen +farm, cultivate +travailler au champ, cultiver + + +
tl
+
+
farm, cultivate
+
+
Feld bestellen, bebauen
+
+
travailler au champ, cultiver
+
+ +
0742
+
+
+
+ + +
leke terê tî ... na zeme
+
+ + + + + + + + + + + + + + + + + + + + +schnitzen +carve +tailler + + +
tl
+
+
carve
+
+
schnitzen
+
+
tailler
+
+ + +
0899
+
+
+
+ + +
nginza tî kua
+
+ + + + + + + + +Lohn +salary, wages +salaire + + +
ek
+
+
Lohn
+
+
salaire
+
+
+
+ + +
burü
+
+ + + + +Trockenzeit +dry season +saison sèche + + +
tl
+
+
saison sèche
+
+
Trockenzeit
+
+ +
1344
+
+
+
+ + +
kâkâkâ
+
+ + + + +feste halten +hold on tight +tenir ferme + + +
ek
+
+
feste halten
+
+
+
+ + +
zïngöngö
+
+ + + + +Auferstehung, Aufwachen +resurrection, awakening +résurrection, réveil + + +
ek
+
+
Auferstehung, Aufwachen
+
+
+
+ + +
yeke gbânî
+
+ + + + + + + + + + +reichlich vorhanden (sein) +abundant (be) +abondant (être) + +
Atongoro ayeke gbânî na yäyû.
+ +
Stars are abundant in heaven.
+
+
+ + +
tl
+
+
(être) abondant
+
+
abundant
+
+
reichlich vorhanden (sein)
+
+ +
1634
+
+
+
+ + +
ndê
+
+ + + + +verschieden, anders +different (be) +différent (être) + +
Ï te âkôbe ndê. Lo yê lôso. Mbï yê tî mbï, gozo. Âkôbe nî ayeke ndê.
+ +
We eat different foods. He likes rice. I like manioc. The foods are different.
+
+
+ + +
tl
+
+
different
+
+
différent
+
+
verschieden, anders
+
+ +
0425
+
+
+ + + +unterschiedlich +differently +différemment + +
Ï tambêla ndê. Lo yê tî lo lörö mîngi. Mbï yê tî mbï tî gue yeke yeke.
+ +
We walk differently. He likes to go rapidly. I like to go slowly.
+
+
+ + +
ek
+
+
différemment
+
+
differently
+
+
unterschiedlich
+
+
+ + + +separat +separately +à part + +
Ï dûti ndê.
+ +
We sat seperately.
+
+
+ + +
ek
+
+
separat
+
+
separately
+
+
+
+ + +
fängö ganzâ tî wâlï
+
+ + + + + + + + + + + + + + + + +Exzision (weiblich) +excision (female) +excision (femmes) + + +
tl
+
+
excision (female)
+
+
excision (femmes)
+
+
Exzision (weiblich)
+
+ +
0936
+
+
+
+ + +
mêche
+
+ + + + +Haarbüschel, Haarsträhne, Locke +tuft, lock (of hair) +touffe, mèche (de cheveux) + + +
tl
+
+
Haarbüschel, Haarsträhne, Locke
+
+
touffe, mèche (de cheveux)
+
+
tuft, lock (of hair)
+
+ + +
0030
+
+
+ + + +Extensions +hair extensions +extensions de cheveux, extensions capillaires +
Extensions
+
+
+
+ + +
zîa na sêse
+
+ + + + + + + + + + + + +senken +lower (tr) +baisser + + +
tl
+
+
baisser
+
+
lower (tr)
+
+
senken
+
+ +
1428
+
+
+
+ + +
pendere pëpe
+
+ + + + + + +hässlich (sein) +ugly (be) +laid (être) + +
Wâli sô ahînga tî leke küä lî tî lo pëpe. Ngbanga tî sô, lo yeke pendere pëpe.
+ +
That woman doesn't know how to fix her hair. On account of this, she is ugly.
+
+
+ + +
tl
+
+
(être) laid
+
+
hässlich (sein)
+
+
ugly
+
+ +
1583
+
+
+
+ + +
sâra yê tî ... na mbeto pëpe
+
+ + + + + + + + + + + + + + +mutig (sein) +courageous, brave (be) +courageux (être) + +
Atâa âwato anguru ködrö, lo sâra yê tî lo na mbeto pëpe.
+ +
Even though enemies surround the village, he is courageous.
+
+
+ +
Kôli sô afâ ngbö nî na mabôko tî lo sêngê. Lo yeke sâra ka yê tî lo na mbeto pëpe.
+ +
That man killed a snake with his bare hands. He is courageous.
+
+
+ + +
tl
+
+
(être) courageux
+
+
courageous, brave
+
+
mutig (sein)
+
+ +
0309
+
+
+
+ + +
ke kôbe
+
+ + + + +fasten +fast +jeûner + +
i-546
+
+
+
+ + +
vûnga sango
+
+ + + + + + + + +eine Nachrichtenmeldung machen +make a news announcement +donner des actualités + + +
ek
+
+
eine Nachrichtenmeldung machen
+
+
+
+ + +
ngbonga
+
+ + +
ngbo.nga
+ +
1.1
+
+
+ + + +Zeit +time +temps + + +
ek
+
+
temps
+
+
time
+
+
Zeit
+
+
+ + + +Stunde +hour +heure + + +
ek
+
+
heure
+
+
hour
+
+
Stunde
+
+
+ + + +Armbanduhr +watch +montre + + +
ek
+
+
Armbanduhr
+
+
montre
+
+
watch
+
+
+ + + +Wanduhr +clock +horloge + + +
ek
+
+
clock
+
+
horloge
+
+
Wanduhr
+
+
+ + + +Glocke +bell +cloche + + +
tl
+
+
bell
+
+
cloche
+
+
Glocke
+
+ +
0700
+
+
+
+ + +
popôto tî sêse
+
+ + + + + + + + + + + + +Matsch, Schlamm +mud +boue + + +
tl
+
+
boue
+
+
Matsch, Schlamm
+
+
mud
+
+ +
0709
+
+
+
+ + +
sembë
+
+ + + + +Teller +plate +assiette + + +
tl
+
+
assiette
+
+
plate
+
+
Teller
+
+ +
0620
+
+
+
+ + +
na gïgî tî
+
+ + + + + + + + +draussen +outside +dehors, en dehors + +
Lo kpaka mbamba na gïgî tî da tî lo
+ +
He painted the outside of his house.
+
+
+ + +
tl
+
+
dehors, en dehors
+
+
draussen
+
+
outside
+
+ +
1674
+
+
+
+ + +
yôro terê na yâ tî
+
+ + + + + + + + + + + + + + + + +tauchen +dive +plonger + + +
tl
+
+
dive
+
+
plonger
+
+
tauchen
+
+ +
1072
+
+
+
+ + +
nge ngëngö
+
+ + +
Originally: ngëngö ngëngö
+
+ + + + + + + + + + +dünn (sein) (Ding) +thin (thing) (be) +maigre, mince (chose) (être) + + +
tl
+
+
(être) maigre, mince (chose)
+
+
dünn (sein) (Ding)
+
+
thin (thing)
+
+ +
1518
+
+
+
+ + +
bata na bê
+
+ + + + +auswendig lernen +memorize +mémoriser, apprendre par cœur + +
sc [Ps 119.11]
+
+ +
mle-3011
+
+
+
+ + +
ngbö
+
+ + +
ŋgbɔ
+ +
2
+
+
+ + + +Schlange +snake +serpent + + +
tl
+
+
Schlange
+
+
serpent
+
+
snake
+
+ +
1095
+
+
+
+ + +
lëndâ
+
+ + + + +Klitoris +clitoris +clitoris + + +
tl
+
+
clitoris
+
+
clitoris
+
+
Klitoris
+
+ +
0049
+
+
+
+ + +
sâra töngana
+
+ + + + + + + + + + + + +nachahmen, imitieren +imitate +imiter + + +
tl
+
+
imitate
+
+
imiter
+
+
nachahmen, imitieren
+
+ +
0427
+
+
+
+ + +
bîanî
+
+ + + + +bestimmt +certainly +certainement + +
Bîanî, Nzapâ ayeke daä.
+ +
Certainly, God exists.
+
+
+ +
ek
+
+
bestimmt
+
+
certainement
+
+
certainly
+
+
+ + + +für immer +for good +pour de bon + +
+ + +
gbägbära
+
+ + + + +alt (sein) +old (be) +vieux (être) + +
Gbägbärä da nî atiï awe.
+ +
The old house has fallen down.
+
+
+ + +
ek
+
+
(être) vieux
+
+
alt (sein)
+
+
old
+
+ +
1589
+
+
+ + + +verbraucht, kaputt (sein) +used, wrecked (be) +usé (être) + +
Zeme nî asâra kusâla ngû mîngi. Nî la agä gbägbärä mîngi.
+ +
The knife was in use for many years. On account of this it is well used.
+
+
+ + +
ek
+
+
(être) usé
+
+
used, wrecked
+
+
verbraucht, kaputt (sein)
+
+ +
1462
+
+
+
+ + +
längö asâra ...
+
+ + + + + + + + + +schläfrig (sein) +sleepy (be) +(avoir) sommeil + +
Lo gi nyama na bï sî längö asâra lo.
+ +
He hunted at night so he is sleepy.
+
+
+ + +
tl
+
+
(avoir) sommeil
+
+
schläfrig (sein)
+
+
sleepy
+
+ +
0184
+
+
+
+ + +
vaa
+
+ + + + +plötzlich, unerwartet +suddenly, unexpectedly +soudainement, de façon inattendue + +
+ + +
me
+
+ + + + +Brust +breast +sein + + +
tl
+
+
breast
+
+
Brust
+
+
sein
+
+ +
0034
+
+
+ + + +Euter +udder +mamelle + + +
tl
+
+
Euter
+
+
mamelle
+
+
udder
+
+ +
1030
+
+
+
+ + +
sô laâ
+
+ + + + + der da +that one there +celui là + +
monino-021
+
+
+
+ + +
pûpûlenge
+
+ + + + +leichtes Mädchen +promiscuous female +femme légère + + +
ek
+
+
leichtes Mädchen
+
+
+
+ + +
kündü
+
+ + + + +herd, flock +
herd, flock
+
+
+
+ + +
kötä zeme
+
+ + + + + + + + +Entermesser +sword, cutlass +épée + + +
tl
+
+
Entermesser
+
+
épée
+
+
sword
+
+ + + + + +
0871
+
+
+
+ + +
yâa ïrï
+
+ + +
??? part of speech
+
+ + + + + + + + + + + +prahlen +boast, brag +se vanter + + +
tl
+
+
boast, brag
+
+
prahlen
+
+
se vanter
+
+ +
0478
+
+
+
+ + +
kpo na zeme
+
+ + + + + + + + + + + + +(er-)stechen +stab +poignarder + + +
tl
+
+
(er-)stechen
+
+
poignarder
+
+
stab
+
+ +
0510
+
+
+
+ + +
femba
+
+ + + + +Hunger +hunger +faim + + +
ek
+
+
faim
+
+
hunger
+
+
Hunger
+
+
+
+ + +
ndôngô tî ngonda
+
+ + + + + + + + + + + + +(grüne) Paprika +pepper (green) +poivre (vert) + + +
tl
+
+
(grüne) Paprika
+
+
pepper (green)
+
+
poivre (vert)
+
+ +
1222
+
+
+
+ + +
küä tî yângâ
+
+ + + + + + + + + + + + +Bart, Schnurrbart +beard, mustache +barbe, moustache + +
barbe, moustache
+
+
Bart, Schnurrbart
+
+
beard, mustache
+
+ +
0028
+
+
+
+ + +
polîsi
+
+ + +
po.li.si / pu.lu.su
+ +
1.3.1
+
+
+ + + +Polizei +police +police + + +
ek
+
+
police
+
+
police
+
+
Polizei
+
+
+
+ + +
hängö-lê
+
+ + +
ha.ngɔ.le / ha.ngɔ.lɛ
+ +
2.2.3
+
+
+ + + +Wachsamkeit, Vorsicht +care, caution +vigilance, prudence + + +
ek
+
+
Wachsamkeit, Vorsicht
+
+
+
+ + +
na kötä ndäpêrêrê
+
+ + + + + + + + + + + + +früh +early +tôt, de bonne heure + +
Fadë ï löndö na kötä ndäpêrêrê tî gî ângbä.
+ +
We will arise early to hunt buffalo.
+
+
+ + +
tl
+
+
early
+
+
früh
+
+
tôt, de bonne heure
+
+ +
1356
+
+
+
+ + +
tînga wâ
+
+ + + + +feuer anzünden +light fire, rekindle fire +allumer le feu + + +
1496
+
+
+ + + +erregen +stimulate, wind up, get excited +exciter (pousser à) + +
lb
+
+ +
i-388
+
+
+
+ + +
gündâ
+
+ + + + +Basis +base +base + + + + +
ek
+
+
base
+
+
base
+
+
Basis
+
+
+
+ + +
+
+ + + + +regnen +rain +pleuvoir + + +
ek
+
+
pleuvoir
+
+
rain
+
+
regnen
+
+
+
+ + +
wâlï-mbârâtâ
+
+ + + + + + + + + + + + +Stute +mare (female horse) +jument + + +
tl
+
+
jument
+
+
mare (female horse)
+
+
Stute
+
+ +
0984
+
+
+
+ + +
pöpö tî âsisä
+
+ + + + + + + + + + + + +Nierengegend +small of back +creux des reins + + +
tl
+
+
creux des reins
+
+
Nierengegend
+
+
small of back
+
+ +
0043
+
+
+
+ + +
sümä
+
+ + + + +Traum +dream +rêve, songe + + +
tl
+
+
dream
+
+
rêve, songe
+
+
Traum
+
+ +
0129
+
+
+ + + +Vision +vision +vision + + +
tl
+
+
vision
+
+
vision
+
+
Vision
+
+ + +
0916
+
+
+
+ + +
sâra hînön
+
+ + + + + + + + + + + +Harn lassen +urinate +uriner + + +
ek
+
+
Harn lassen
+
+
urinate
+
+
uriner
+
+ +
0119
+
+
+
+ + +
kpârâköngö
+
+ + + + + +
kpa.ɾa.ko.ngo
+ +
3.3.2.2
+
+
+ + + +Skorpion +scorpion +scorpion + + +
ek
+
+
scorpion
+
+
scorpion
+
+
Skorpion
+
+ + +
1129
+
+
+
+ + +
ûse nî
+
+ + + + + + + + +zweiter (sein) +second (be) +deuxième (être) + + +
tl
+
+
(être) deuxième
+
+
second
+
+
zweiter (sein)
+
+ +
1624
+
+
+
+ + +
biö tî mângo
+
+ + + + + + + + +Mangokern +mango stone, pit +noyau de mangue + + +
ek [sl agrees]
+
+
mango stone, pit
+
+
Mangokern
+
+
noyau de mangue
+
+
+
+ + +
kêtê ngäsa
+
+ + + + + + + + + + + + +Zicklein +kid +cabri, chevreau + + +
tl
+
+
cabri, chevreau
+
+
kid
+
+
Zicklein
+
+ + +
0968
+
+
+
+ + +
bï na lâ
+
+ + + + + + + +Tag-und Nacht +day and night [in Sango night comes first] +jour et nuit + +
E sambêla tëtî lo bï na lâ.
+ +
We prayed for him day and night.
+
Nous avons prié pour lui jour et nuit.
+
+
+
+
+ + +
yïnda
+
+ + + + +leiten +direct, manage +diriger + + +
ek
+
+
diriger
+
+
leiten
+
+
+
+ + +
wüngö pupu
+
+ + + + + + + + + + + + +Atem +breath +souffle, haleine + + +
tl
+
+
Atem
+
+
breath
+
+
souffle, haleine
+
+ + +
0092
+
+
+
+ + +
tïngö
+
+ + +
ti.ngɔ
+ +
2.2
+
+
+ + + +Versagen +failure +échec + +
gfk-d
+
+ +
mle-1757
+
+
+
+ + +
âreyâ
+
+ + + + +Guinea-Hirse +guinea corn +millet de Guinée, petit mil + + +
tl
+
+
guinea corn
+
+
Guinea-Hirse
+
+
millet de Guinée, petit mil
+
+ +
1235
+
+
+
+ + +
yeke rônd
+
+ + + + + + +rund (sein) +round (be) +rond (être) + +
sêse sô ayeke rônd töngana ndembö tî gerê.
+ +
The earth is round like a soccer ball.
+
+
+ + +
tl
+
+
(être) rond
+
+
round
+
+
rund (sein)
+
+ +
1529
+
+
+
+ + +
yäkä
+
+ + + + +Feld, Acker +field +champ + + +
tl
+
+
champ
+
+
Feld, Acker
+
+
field
+
+ +
0743
+
+
+
+ + +
andurü kôbe
+
+ + + + + + + + + + + + +Reste +leftovers +les restes + +
+ + +
kongba
+
+ + +
ko.ngba
+ +
1.1
+
+
+ + + +Kröte +toad +crapaud + + +
ek
+
+
crapaud
+
+
Kröte
+
+
toad
+
+ + +
1107
+
+
+ + + +Frosch +frog +grenouille + + +
tl
+
+
frog
+
+
Frosch
+
+
grenouille
+
+ + +
1106
+
+
+
+ + +
zîa yângâ
+
+ + + + +sich einmischen +meddle +se mêler de + +
mle-2995
+
+
+
+ + +
na lïngö tî lâ
+
+ + + + + + + + + + + + +Sonnenuntergang +sunset +coucher du soleil + +
Na lïngö tî lâ fadë âzo kûê adûti na terê tî wâ.
+ +
At sunset, everyone will sit by his fire.
+
+
+ + +
tl
+
+
coucher du soleil
+
+
Sonnenuntergang
+
+
sunset
+
+ +
1381
+
+
+
+ + +
tî fadësô
+
+ + + + +jetzt +now +maintenant + +
Kêkerêke ë lîngbi ti sâra kua, tî fadësô, ë dutï kpô.
+ +
Tomorrow we can work, now, let's sit still.
+
Demain nous pouvons travailler, maintenant, reposons-nous.
+
+
+
+
+ + +
sâra hânge
+
+ + + + + + + + + + + +aufpassen +careful (be) +faire attention, prudent (être) + + +
ek
+
+
aufpassen
+
+ +
mle-0753
+
+
+
+ + +
mû bîâ
+
+ + + + + + + + + + + +ein Lied anstimmen +strike up a song +entonner un chant + +
anstimmen, Lied vorschlagen
+
strike up or suggest a song
+
entonner ou suggérer un chant
+
+ + + + +
ek
+
+
ein Lied anstimmen
+
+
+
+ + +
likôlo
+
+ + +
li.kɔ.lɔ
+ +
1.3.1 / 1.2.1
+
+
+ + + +Schule +school +école + +
+ + +
na ndö tî
+
+ + + + + + + + +auf, über +on top of, over, above +sur, au-dessus + +
Didi ayeke na ndö ti lï tî zaranga.
+ +
Horns are on top of the head of a roan antelope.
+
+
+ + +
tl
+
+
auf, über
+
+
on top of, over, above
+
+
sur, au-dessus
+
+ +
1668
+
+
+
+ + +
+
+ + + + +zur Welt bringen, gebären +bear (child), give birth +accoucher, donner naissance + +
adü mbï.
+ +
ich wurde ... geboren
+
I was born
+
je suis né(e)
+
+
+ + +
tl
+
+
accoucher, donner naissance
+
+
bear (child), give birth
+
+
zur Welt bringen, gebären
+
+ +
0244
+
+
+ + + +reproduzieren, vermehren +reproduce +reproduire, engendrer + +
ek
+
+
reproduce
+
+
reproduzieren, vermehren
+
+
+
+ + +
nzara
+
+ + + + +Hunger +hunger +faim + + + + +
ek
+
+
faim
+
+
hunger
+
+
Hunger
+
+
+ + + +Lust +desire +envie + + +
ek
+
+
desire
+
+
envie
+
+
Lust
+
+
+ + + +Dürre, Trockenheit, Hungersnot +drought, famine +sécheresse, famine, disette + + +
tl
+
+
drought, famine
+
+
Dürre, Trockenheit, Hungersnot
+
+
sécheresse, famine, disette
+
+ +
1341
+
+
+
+ + +
wâlï-bâgara
+
+ + + + + + + + + + + + +Kuh +cow (female) +vache + + +
tl
+
+
cow (female)
+
+
Kuh
+
+
vache
+
+ +
0960
+
+
+
+ + +
mû sândâga
+
+ + + + + + + + + + + + +ein Trankopfer ausgießen +pour libation +verser une libation + + +
tl
+
+
ein Trankopfer ausgießen
+
+
pour libation
+
+
verser une libation
+
+ + +
0930
+
+
+
+ + +
wakëngö-zo
+
+ + + + +Gegner, Feind +opponent, enemy +opposant, adversaire + + +
ek
+
+
Gegner, Feind
+
+
+
+ + +
zere
+
+ + + + +rülpsen +belch +roter, éructer + + +
tl
+
+
belch
+
+
roter, éructer
+
+
rülpsen
+
+ + +
0113
+
+
+
+ + +
înön
+
+ + +
hi.nɔ̰ / i.no̰ / hi.nɔ / i.nɔ
+ +
3.2
+
+
+ + + +Harn, Urin +urine +urine + + +
tl
+
+
Harn, Urin
+
+
urine
+
+
urine
+
+ +
0101
+
+
+
+ + +
müngö-terê
+
+ + + + +Hochzeit +wedding +mariage + + +
ek
+
+
Hochzeit
+
+
mariage
+
+
wedding
+
+
+ + + +Ehe +marriage +mariage + + +
ek
+
+
Ehe
+
+
mariage
+
+
marriage
+
+ +
0940
+
+
+
+ + +
mabôko tî mbûrü
+
+ + + + + + + + + + + + +Öl-Palme Palmwedel +branch, frond of oil palm +palme du palmier à huile + +
branch, frond of oil palm
+
+
Öl-Palme Palmwedel
+
+
palme du palmier à huile
+
+
+
+ + +
gä zo
+
+ + + + + + + + + + + +erwachsen werden +grow up +grandir, devenir mature + + +
ek
+
+
erwachsen werden
+
+
+
+ + +
bäränzä
+
+ + + + +Erdnußbutter +peanut butter +pâte d'arachide + +
trockene Erdnußbutter
+
thick peanut butter
+
pâte d'arachide épaisse
+
+ + +
ek
+
+
Erdnußbutter
+
+
+
+ + +
+
+ + +
so
+ +
3
+
+
+ + + +dies, diese +this +ceci, ce, cette + + +
& i-020
+
+ +
ek
+
+
dies, diese
+
+ +
monino-019
+
+
+ + + +das +that +cela + + +
monino-020
+
+
+ +welcher, welche, welches +which, who +qui, que + +
welcher (Relativsatz)
+
which, who, when (in a relative clause)
+
qui, que, quand (d'une proposition relative)
+
+ +
ek
+
+
welcher, welche, welches
+
+
+ + + +dort +there + + + +
tl
+
+
dort
+
+
+
+
there
+
+ +
1655
+
+
+ +wann +when +quand + +
ek
+
+
quand
+
+
wann
+
+
when
+
+ +
1687
+
+
+
+ + +
kinda
+
+ + + + +zu Boden schlagen +knock down +terrasser + + +
ek
+
+
knock down
+
+
terrasser
+
+
zu Boden schlagen
+
+ +
1432
+
+
+ + + +besiegen +defeat, overcome +vaincre + + +
ek
+
+
besiegen
+
+
vaincre
+
+
+ + + +umblasen +blow down +se renverser (par le vent) + + +
tl
+
+
blow down
+
+
se renverser (par le vent)
+
+
umblasen
+
+ +
1477
+
+
+
+ + +
gbânzi
+
+ + + + +verweigern +refuse +refuser + + +
ek
+
+
refuse
+
+
refuser
+
+
verweigern
+
+ +
0837
+
+
+ + + +entziehen, berauben +deprive +priver + + +
ek
+
+
deprive
+
+
entziehen, berauben
+
+
priver
+
+
+
+ + +
tene âkêtê tënë
+
+ + + + + + + + + + + + + + + + +tratschen +gossip +faire des commérages + +
faire des commérages
+
+
gossip
+
+
tratschen
+
+ +
0451
+
+
+
+ + +
minimîni
+
+ + + + +Geheimnis +secret +secret + + +
ek
+
+
Geheimnis
+
+
secret
+
+
secret
+
+
+ + + +Murren +grumbling +murmure + + +
ek
+
+
grumbling
+
+
murmure
+
+
Murren
+
+
+
+ + +
gbefâ
+
+ + + + +shelter + +
+ + +
finî finî
+
+ + + + + + + + +neulich, kürzlich +recently +nouvellement, récemment + +
A nînga pëpe, lo sâra nî finî finî.
+ +
It hasn't been long, he did it recently.
+
+
+ + +
ek
+
+
neulich, kürzlich
+
+
nouvellement
+
+
recently
+
+ +
mle-3876
+
+
+
+ + +
ngängängä
+
+ + + + +freudig, mit Freude +gladly +avec plaisir + + +
ek
+
+
freudig, mit Freude
+
+
gladly
+
+
+ + + +entschlossen +resolutely, firm +fermement + +
Lo luti nganganga.
+ +
He stands firm.
+
+
+ + +
ek, sns2: cm & sl
+
+
entschlossen
+
+
fermement
+
+
+
+ + +
mbeto
+
+ + +
mbɛ.tɔ
+ +
1.1
+
+
+ + + +Angst, Befürchtung +fear +peur, crainte + + +
ek
+
+
Angst, Befürchtung
+
+
fear
+
+
+
+ + +
tâburu
+
+ + + + + + + +Wandtafel +chalkboard +tableau noir + + +
ek
+
+
chalkboard
+
+
Wandtafel
+
+
+
+ + +
zîa terê
+
+ + + + + + + + +sich trennen +separate, go different ways +se séparer + + + + +
ek
+
+
sich trennen
+
+
+
+ + +
patalöon
+
+ + +
pa.ta.lɔ̰ɔ̰
+ +
1.1.21
+
+
+ + + +Hose +pants +pantalon + + +
tl
+
+
Hose
+
+
pantalon
+
+
pants
+
+ + +
0543
+
+
+
+ + +
zovukö
+
+ + + + +Afrikaner +African +Africain + + +
ek
+
+
Africain
+
+
African
+
+
Afrikaner
+
+
+
+ + +
nïkpä
+
+ + + + +Blutegel, Blutsauger +leech +sangsue + + +
tl
+
+
Blutegel, Blutsauger
+
+
leech
+
+
sangsue
+
+ +
1136
+
+
+ + + +Faulenzer +lazy bum +paresseux + + +
ek
+
+
Faulenzer
+
+
paresseux
+
+
+
+ + +
ên-ën
+
+ + + + +nein +no +non + + +
tl
+
+
nein
+
+
no
+
+
non
+
+ +
1700
+
+
+
+ + +
mvuka
+
+ + + + +September +September +septembre + + +
ek
+
+
September
+
+
September
+
+
septembre
+
+
+
+ + +
-mvenî
+
+ + +selbst +-self +-même (marque d'ipséité) + +
ek
+
+
selbst
+
+
-self
+
+
+
+ + +
nabändurü
+
+ + + + +November +November +novembre + + +
ek
+
+
November
+
+
November
+
+
novembre
+
+
+
+ + +
da tî sükülängö ngû
+
+ + + + + + + + +Dusche, Badehaus +bath house +douche + + + + +
ek
+
+
bath house
+
+
douche
+
+
Dusche, Badehaus
+
+ +
0680
+
+
+
+ + +
yê tî bärä
+
+ + + + + + + + + + + +Ausrüstung +gear, supplies +équipement + + +
ek
+
+
Ausrüstung
+
+
équipement
+
+
+
+ + +
gburuka
+
+ + + + +Falle +trap, deadfall +piège + + +
ek
+
+
Falle
+
+
piège
+
+
trap, deadfall
+
+ +
0791
+
+
+
+ + +
uru
+
+ + + + + + + +springen +jump +sauter +
jump
+
+
sauter
+
+
springen
+
+
+ + + +springen wegfliegen fliegen wegblasen, davonfliegen +fly away +s'envoler +
s'envoler
+
+
springen wegfliegen fliegen wegblasen, davonfliegen
+
+
+ + + +fly +voler +
fly
+
+
voler
+
+ +
1071
+
+
+ + + +blow away (intr) +s'envoler +
s'envoler
+
+
+
+ + +
kêtê ködrö
+
+ + + + + + + + + + + + +Dorf +village +village + + +
tl
+
+
Dorf
+
+
village
+
+
village
+
+ + +
0533
+
+
+
+ + +
äpe
+
+ + + + + + + +nicht +not +ne...pas + +
Âmbörörö ate nyama tî gaduru äpe.
+ + +
+ + +
ek
+
+
ne...pas
+
+
nicht
+
+
not
+
+ +
+
+ + +
sâra tënë
+
+ + + + + + + + + + + +sprechen +speak +parler + + + + +
ek
+
+
parler
+
+
speak
+
+
sprechen
+
+ + +
0435
+
+
+
+ + +
sëndë
+
+ + + + +Grab +grave +tombeau + + +
ek
+
+
Grab
+
+
grave
+
+
tombeau
+
+ + +
0955
+
+
+ + + +Friedhof +cemetery +cimetière + + +
tl
+
+
cemetery
+
+
cimetière
+
+
Friedhof
+
+ + +
0956
+
+
+
+ + +
Pötö
+
+ + +
po.to ???
+ +
2.2
+
+
+ + + +Europa +Europe +Europe + + +
ek
+
+
Europa
+
+
Europe
+
+
Europe
+
+
+
+ + +
ngoro
+
+ + +
ngɔ.lɔ
+ +
1.1
+
+
+ + + +Wels +catfish +poisson-chat, silure +
catfish
+
+
silure
+
+
Wels
+
+ + +
1084
+
+
+
+ + +
böngbïngö tî küä tî li tî (ndeke)
+
+ + + + + + + + + + + + + + + + + + + + +Kamm (eines Vogels) +crest (of bird) +crête (d'oiseau) + + +
tl
+
+
crest (of bird)
+
+
crête (d'oiseau)
+
+
Kamm (eines Vogels)
+
+ + +
1061
+
+
+
+ + +
li mbômbô
+
+ + + + + + + + + + + + +Glatze +baldness +calvitie +
baldness
+
+
calvitie
+
+
Glatze
+
+
+
+ + +
mabôko tî kôli
+
+ + + + + + + + +rechte Hand +right hand +main droit + + + + +
ek
+
+
rechte Hand
+
+ +
i-594
+
+
+
+ + +
këngö-terê
+
+ + +
këngö terê
+ +
+ +
kɛ.ngɔ.tɛ.ɾɛ
+ +
2.2.1.3 / 2.2.1.2
+
+
+ + + +Hass +hatred +haine + + +
ek
+
+
haine
+
+
Hass
+
+
hatred
+
+
+ + + +Scheidung +divorce +divorce + + +
ek
+
+
divorce
+
+
divorce
+
+
Scheidung
+
+
+ + + +Trennung +separation +séparation + + +
ek
+
+
separation
+
+
séparation
+
+
Trennung
+
+
+ + + +Feindschaft +hostility, antagonism, enmity +hostilité, inimitié + +
i-532
+
+
+
+ + +
lekere ...
+
+ + + + +reparieren +repair with effort +réparer + + +
ek
+
+
repair with effort
+
+
réparer
+
+
reparieren
+
+ + +
0704
+
+
+ + + +arrangieren, ordnen +arrange with effort +arranger + + +
ek
+
+
arrange with effort
+
+
arranger
+
+
arrangieren, ordnen
+
+ + +
1632
+
+
+
+ + +
hön na ndö tî yingö
+
+ + + + + + + + + + + + + + + + +in Ohnmacht fallen +faint +s'évanouir + + +
tl
+
+
faint
+
+
in Ohnmacht fallen
+
+
s'évanouir
+
+ + +
0127
+
+
+
+ + +
ïrï tî ... awü mîngi
+
+ + + + + + + + + + + + + + + +berühmt werden +become famous +devenir célèbre + +
+ + +
tara terê
+
+ + + + + + + + +jemanden abtasten, Leibesvisitation +do a body search +fouiller + + +
ek
+
+
fouiller
+
+
jemanden abtasten, Leibesvisitation
+
+
+
+ + +
matânga tî müngö terê tî kôlï na wâlï
+
+ + + + + + + + + + + + + + + + + + + + + + + + +Hochzeit (Feier) +wedding (ceremony) +mariage (cérémonie) + + +
tl
+
+
Hochzeit (Feier)
+
+
mariage (cérémonie)
+
+
wedding (ceremony)
+
+ + +
0943
+
+
+
+ + +
miro
+
+ + +
mi.ɾo ???
+ +
1.1
+
+
+ + + +verschwinden +disappear +disparaître +
disappear
+
+
disparaître
+
+
verschwinden
+
+
+ + + +abbrechen +cancel +annuler + +
mle-0733
+
+
+
+ + +
sândâga
+
+ + + + +Opfer +sacrifice, offering +sacrifice, offrande + + +
tl
+
+
Opfer
+
+
sacrifice, offering
+
+
sacrifice, offrande
+
+ +
0929
+
+
+ + + +rituelles Mahl +ritual meal +repas rituel + + +
ek
+
+
rituelles Mahl
+
+
+
+ + +
ndonga
+
+ + +
???
+
+ + + +Hexerei +hex +maléfice + + +
ek
+
+
hex
+
+
Hexerei
+
+
maléfice
+
+
+
+ + +
tënë tî yângâ tî Nzapä
+
+ + + + + + + + + + + + + + + + +Prophezeiung +prophecy +prophétie + + +
tl
+
+
prophecy
+
+
prophétie
+
+
Prophezeiung
+
+ +
0915
+
+
+
+ + +
dabüzë
+
+ + + + +Laden, Geschäft +store, shop +magasin, boutique + + +
ek
+
+
Laden, Geschäft
+
+
+
+ + +
mû ... tî ... tî kîri na nî
+
+ + + + + + + + + + + + + + + + + + + + +ausleihen, borgen +borrow +emprunter + + +
tl
+
+
ausleihen, borgen
+
+
borrow
+
+
emprunter
+
+ + +
0832
+
+
+
+ + +
mamâ-kêtê
+
+ + + + + + + + +jüngere Schwester der Mutter +maternal aunt (mother's younger sister) +sœur cadette de la mère + + + + +
tl
+
+
aunt (maternal, mother's younger sister)
+
+
jüngere Schwester der Mutter
+
+
sœur cadette de la mère
+
+ + +
0350
+
+
+
+ + +
ngâgö
+
+ + +
nga.go
+ +
3.2
+
+
+ + + +bittere Gemüseblätter +edible bitter leaves +feuilles amères comestibles + + +
ek
+
+
bittere Gemüseblätter
+
+
+
+ + +
kîri na pekô tî tënë
+
+ + + + + + + + + + + + + + +antworten +to answer +répondre + + + + + +
+ + +
gbâküä
+
+ + + + +Mähne +mane +crinière + + +
tl
+
+
crinière
+
+
Mähne
+
+
mane
+
+ +
1033
+
+
+
+ + +
yô na pekô
+
+ + + + + + + + + + + + +(ein Kind) auf dem Rücken tragen +carry (child) on back +porter (enfant) sur le dos + + +
tl
+
+
(ein Kind) auf dem Rücken tragen
+
+
carry (child) on back
+
+
porter (enfant) sur le dos
+
+ + +
0860
+
+
+
+ + +
hûnda ködä
+
+ + + + + + + + + + + +Darlehen / einen Kredit bitten +ask for a loan +faire la demande d'un prêt + + +
ek
+
+
Darlehen / einen Kredit bitten
+
+
+
+ + +
tâbolöo
+
+ + +
ta.bo.loo
+ +
3.1.21 / 1.1.21 [lb]
+
+
+ + + +Wandtafel +chalkboard +tableau noir + + +
ek
+
+
chalkboard
+
+
Wandtafel
+
+
+
+ + +
wara sênî
+
+ + + + + + + + + + + + +gesund warden, sich erholen +get well, recover +se remettre, se guérir + + +
tl
+
+
gesund warden, sich erholen
+
+
get well, recover
+
+
se remettre, se guérir
+
+ +
0210
+
+
+
+ + +
wâlï-kôndo
+
+ + + + + + + + + + + +Henne +hen +poule + + +
Henne
+
hen
+
poule
+
+
+ +
hen
+
+
Henne
+
+
poule
+
+ +
0976
+
+
+
+ + +
lê tî ... akpêngba
+
+ + + + + + +ein wachsames Auge haben, vorsichtig (sein) +alert, cautious (be) +vigilant, prudent (être) + + + + +
ek
+
+
ein wachsames Auge haben, vorsichtig (sein)
+
+
+
+ + +
kïlömêtere
+
+ + +
ki.lɔ.mɛ.tɛ.ɾe
+ +
1.1.2.1.1
+
+
+ + + +Kilometer +kilometer +kilomètre + + +
ek
+
+
kilometer
+
+
Kilometer
+
+
kilomètre
+
+
+
+ + +
kugbë
+
+ + + + +Blatt +leaf +feuille + + + + +
tl
+
+
Blatt
+
+
feuille
+
+
leaf
+
+ +
1177
+
+
+ + + +Blatt Papier +sheet of paper +feuille, page + + +
ek
+
+
Blatt Papier
+
+
+
+ + +
sambêla
+
+ + + + +beten +pray +prier + + +
tl
+
+
beten
+
+
pray
+
+
prier
+
+ + +
0912
+
+
+ + + +Gebet +prayer +prière + + +
ek
+
+
Gebet
+
+
prayer
+
+
prière
+
+
+
+ + +
tatärä
+
+ + + + +Spiegel +mirror +miroir + + +
ek
+
+
miroir
+
+
mirror
+
+
Spiegel
+
+
+
+ + +
so tënë na ...
+
+ + + + + + + +Amazing! + +
+ + +
likünü tî mabôko
+
+ + + + + + + + + + + + +Ellbogen +elbow +coude + + +
tl
+
+
coude
+
+
elbow
+
+
Ellbogen
+
+ +
0053
+
+
+
+ + +
lâ na nze atêngbi
+
+ + + + + + + + + + + + + + + + +Mondfinsternis +eclipse (moon) +éclipse (de lune) + + +
tl
+
+
éclipse (de lune)
+
+
eclipse (moon)
+
+
Mondfinsternis
+
+ +
1321
+
+
+
+ + +
gä lûmbâlumba
+
+ + + + + + + + + + + +aufheizen, vertiefen +heat up, intensify +devenir plus intense, barder + + +
ek
+
+
aufheizen, vertiefen
+
+
+
+ + +
torôrô
+
+ + + + + +
tɔ.ɾɔ.ɾɔ
+ +
1.3.3
+
+
+ + + +häufig, oft übertrieben +frequently excessively +fréquemment exagérément + +
+ + +
päsä
+
+ + + + +Glück +chance, good luck +chance + + +
ek
+
+
chance
+
+
Glück
+
+
+
+ + +
dutï
+
+ + + + +Existenz +existence +existence + + +
ek
+
+
existence
+
+
existence
+
+
Existenz
+
+
+ + + +Leben +life +vie + + +
ek
+
+
Leben
+
+
life
+
+
vie
+
+ +
0238
+
+
+ + + +leben +live +vivre + +
i-1068
+
+
+
+ + +
kôbe tî zïängö na yângâ tî yangö
+
+ + + + + + + + + + + + + + + + + + +Köder +bait +appât + + +
tl
+
+
appât
+
+
bait
+
+
Köder
+
+ + +
0805
+
+
+
+ + +
gä ndê
+
+ + + + + + + + + + + +ändern +alter, change +changer + + +
ek
+
+
ändern
+
+
change
+
+
changer
+
+ + +
1459
+
+
+
+ + +
mä yânî
+
+ + + + + + + + + + + + +verstehen +understand +comprendre + + +
ek
+
+
comprendre
+
+
understand
+
+
verstehen
+
+ +
i-207
+
+
+
+ + +
fa pëmbë
+
+ + + + + + + + + + + + +die Zähne zeigen (?) +bare, show (teeth) +montrer les dents + + +
tl
+
+
bare, show (teeth)
+
+
die Zähne zeigen (?)
+
+
montrer les dents
+
+ +
1038
+
+
+
+ + +
müä
+
+ + + + +Trauer +mourning +deuil + + +
tl
+
+
deuil
+
+
mourning
+
+
Trauer
+
+ +
0950
+
+
+
+ + +
kûku
+
+ + + + +Küche +kitchen +cuisine + + +
ek
+
+
cuisine
+
+
kitchen
+
+
Küche
+
+ + +
0673
+
+
+ + + +Koch(in) +cook +cuisinier + + +
+ + +
wâlï tî …
+
+ + + + + + + + +Ehefrau, Gattin +wife +femme, épouse + + +
tl
+
+
Ehefrau, Gattin
+
+
femme, épouse
+
+
wife
+
+ + +
0363
+
+
+
+ + +
zo tî kua
+
+ + + + + + + + + + + +Angestellter +employee +employé + + + + +
ek
+
+
Angestellter
+
+
employé
+
+
employee
+
+
+
+ + +
kûâ
+
+ + + + +Tod +death (human) +mort (humain) + + + + +
LB just for humans, kûi can include animals
+
+ +
tl
+
+
death (human)
+
+
mort (humain)
+
+
Tod
+
+ +
0250
+
+
+ + + +Leiche +(human) corpse +cadavre (humain) + + +
tl
+
+
cadavre (humain)
+
+
Leiche
+
+ +
0953
+
+
+
+ + +
zîa bê na ndö
+
+ + + + + + + + +an etwas denken +think of +penser à + + +
ek
+
+
an etwas denken
+
+
+ + + +sich auf etwas, jemanden verlassen +depend on, place one's hopes on +compter sur + + +
ek
+
+
sich auf etwas, jemanden verlassen
+
+
+
+ + +
wûlûwûlû
+
+ + + + +Problem, Ärger +problem, trouble +problème, trouble + + +
tl
+
+
Problem, Ärger
+
+
problem, trouble
+
+
problème, trouble
+
+ +
0325
+
+
+
+ + +
zôâ
+
+ + + + + + + +Insel +island +île + + +
ek
+
+
île
+
+
Insel
+
+
island
+
+ +
1299
+
+
+
+ + +
otöo
+
+ + +
o.too
+ +
1.21
+
+
+ + + +Wagen +vehicle +véhicule + + +
ek
+
+
vehicle
+
+
véhicule
+
+
Wagen
+
+
+
+ + +
turunêe terê
+
+ + + + + + + + + + + + +sich umdrehen +turn round (intr) +se retourner + + +
tl
+
+
se retourner
+
+
sich umdrehen
+
+
turn round (intr)
+
+ + +
0153
+
+
+
+ + +
montêe
+
+ + +
mɔ̰.tee
+ +
1.31 / 1.21 [lb]
+
+
+ + + +(hinauf-) steigen / klettern +climb +monter + + +
ek
+
+
(hinauf-) steigen / klettern
+
+
climb
+
+
monter
+
+ +
1409
+
+
+
+ + +
gbû li
+
+ + + + + + + + + + + +nachdenken +consider +réfléchir + +
Mbï gbû li tî bongö tî mo.
+ +
Dein Kleid gefällt mir
+
I like what you're wearing.
+
J'apprécie ta robe.
+
+
+ + +
ek
+
+
consider
+
+
nachdenken
+
+
réfléchir
+
+
+ + + +denken +think +penser + + +
tl
+
+
denken
+
+
penser
+
+
think
+
+ +
0252
+
+
+
+ + +
sâki ûse
+
+ + + + +zweitausend (2000) +two thousand (2000) +deux mille (2000) + +
deux mille (2000)
+
+
two thousand (2000)
+
+
zweitausend (2000)
+
+ +
chan_10
+
+
+
+ + +
dime
+
+ + + + +Zehnten +tithe +dîme + + +
ek
+
+
dîme
+
+
tithe
+
+
Zehnten
+
+
+
+ + +
surä
+
+ + + + +Artikel, Vers +article, verse +article, verset + + +
ek
+
+
Artikel, Vers
+
+
+ + + +Paragraph, Abschnitt +paragraph +paragraphe + + +
ek
+
+
paragraph
+
+
Paragraph, Abschnitt
+
+
paragraphe
+
+
+
+ + +
mbëngë
+
+ + + + +Wildschwein +wild boar +potamochère, sanglier + + +
ek
+
+
Wildschwein
+
+
+
+ + +
gbemïngo
+
+ + +
gbe-mïngo
+ +
+ +
gbɛ.mi.ngɔ
+ +
1.2.1
+
+
+ + + +Geheimnis +secret +secret + +
& i-211
+
+ +
jl
+
+ +
mle-4198
+
+
+ + + +Dunkelheit +darkness +ténèbres + + +
ek
+
+
darkness
+
+
Dunkelheit
+
+
ténèbres
+
+
+
+ + +
fängö yê na âkôlï
+
+ + +
check ganzâ
+
+ + + + + + + + + + + + + + + +Initiation, Einführung (Männer) +initiation (male) +initiation (hommes) + + +
tl
+
+
initiation (hommes)
+
+
initiation (male)
+
+
Initiation, Einführung (Männer)
+
+ + +
0937
+
+
+
+ + +
yingö tî lo akîri
+
+ + + + + + + + + + + + +wiederbeleben, aufleben +revive +reprendre connaissance + + +
tl
+
+
reprendre connaissance
+
+
revive
+
+
wiederbeleben, aufleben
+
+ +
0211
+
+
+
+ + +
yâ tî gbägbä
+
+ + + + + + + + + + + +Hof +yard, courtyard +cour, enceinte + + +
tl
+
+
cour, enceinte
+
+
Hof
+
+
yard, courtyard
+
+ +
0675
+
+
+
+ + +
nyön
+
+ + + + +trinken +drink +boire + + +
tl
+
+
boire
+
+
drink
+
+
trinken
+
+ +
0149
+
+
+
+ + +
yeke waziba
+
+ + + + +blind (sein) +blind (be) +aveugle (être) + + +
0191
+
+
+
+ + +
ba na mbâgë tî kôlï
+
+ + + + + + + + + + + + + + + + +rechts abbiegen +turn right +virer à droite + + +
ek
+
+
rechts abbiegen
+
+
+
+ + +
zî tënë na li tî
+
+ + + + + + + + +verteidigen, jemandem helfen, sich zu rechtfertigen +defend, help someone clear himself +défendre, aider quelqu'un à se disculper + + +
ek
+
+
verteidigen, jemandem helfen, sich zu rechtfertigen
+
+
+
+ + +
lütï na ndô tî mbênî yê na ndüzü
+
+ + + + + + + + + + + + + + + + +sitzen, sich niederlassen (Vogel?) +perch +se percher + + +
tl
+
+
perch
+
+
se percher
+
+
sitzen, sich niederlassen (Vogel?)
+
+ +
1075
+
+
+
+ + +
kîri tënë
+
+ + + + + + + + + + + +antworten +answer, reply +répondre + + +
tl
+
+
antworten
+
+
répondre
+
+ +
0456
+
+
+
+ + +
ânï
+
+ + + + +logophoric pronoun_PL +pronom logophorique_PL + + +
ek
+
+
+
+ + +
mokönzi
+
+ + + + + + + +
mo.ko.nzi / mɔ.kɔ.nzi
+ +
1.2.1
+
+
+ + + +Chef, Führer +chief, boss, headman +chef + + +
ek
+
+
chef
+
+
Chef, Führer
+
+
chief, boss, headman
+
+ + +
0392
+
+
+
+ + +
ngëngö
+
+ + +
ŋgɛ.ŋgɔ
+ +
2.2
+
+
+ + + +Magerkeit +thinness +minceur + + +
tl
+
+
Magerkeit
+
+
minceur
+
+
thinness
+
+
+
+ + +
ukü
+
+ + + + + + + +fünf (5) +five (5) +cinq (5) + + +
1594
+
+
+
+ + +
bängö yâ
+
+ + + + + + + + + + + + +Monatsblutung, Regelblutung +menstrual period +règles (d'une femme) + + +
tl
+
+
menstrual period
+
+
Monatsblutung, Regelblutung
+
+
règles (d'une femme)
+
+ +
0240
+
+
+
+ + +
bâa nzönî
+
+ + + + + + + + +es für eine gute Idee halten +think it is a good idea +examiner + + +
ek
+
+
es für eine gute Idee halten
+
+
examiner
+
+
+
+ + +
kôlï tî môlengê tî ...
+
+ + + + + + + + + + + + +Schwiegersohn +son-in-law +beau-fils + + +
tl
+
+
beau-fils
+
+
Schwiegersohn
+
+
son-in-law
+
+ +
0369
+
+
+
+ + +
+
+ + + + +sei voll +to be full +être rempli + + + + +zu füllen +fill +remplir + +
+ + +
pikîri
+
+ + + + +Spritze +shot +piqûre + +
Spritze
+
shot (medical)
+
piqûre
+
+ + +
ek
+
+
piqûre
+
+
shot
+
+
Spritze
+
+
+
+ + +
sâra ânarûmbatêe
+
+ + + + + + + + + + + +Mädchenhüpfspiel spielen +play the hopping game for girls +jouer le jeu des filles + +
Mädchenhüpfspiel spielen, wo sich alle im Kreis aufstellen und abwechselnd in der Mitte tanzen
+
play the hopping game for girls who form a circle and take turns dancing in the middle
+
jouer le jeu des filles qui se mettent en cercle au centre duquel elles dansent à tour de rôle
+
+ + +
ek
+
+
Mädchenhüpfspiel spielen
+
+
+
+ + +
foro
+
+ + +
fo.ɾo
+ +
1.1 / 3.1
+
+
+ + + +schälen +peel +éplucher, peler + + +
tl
+
+
éplucher, peler
+
+
peel
+
+
schälen
+
+ + +
0595
+
+
+
+ + +
kîri na nî kêtê
+
+ + + + + + + + + + + + + + + + +vermindern, abnehmen +decrease +diminuer + + +
tl
+
+
decrease
+
+
diminuer
+
+
vermindern, abnehmen
+
+ +
1630
+
+
+ + + +verringern, reduzieren +diminish +diminuer, réduire + + +
tl
+
+
diminish
+
+
diminuer, réduire
+
+
verringern, reduzieren
+
+ +
1510
+
+
+
+ + +
kpëngbërë
+
+ + + + +Steinfläche +lateritic flat +replat latéritique + + +
tl
+
+
lateritic flat
+
+
replat latéritique
+
+
Steinfläche
+
+ +
0761
+
+
+ + + +Dreschplatz +threshing-floor +aire de battage +
Dreschplatz
+
+
threshing-floor
+
+
+
+ + +
du
+
+ + + + +sein, existieren +be, exist +être, exister + + +
ek
+
+
sein, existieren
+
+
+
+ + +
nëngö tî yê
+
+ + + + + + + + + + + + +Gewicht +weight +poids + + +
tl
+
+
Gewicht
+
+
poids
+
+
weight
+
+ +
1535
+
+
+
+ + +
+
+ + + + +kneten +knead +pétrir + + +
ek
+
+
knead
+
+
kneten
+
+
pétrir, brasser
+
+ +
0601
+
+
+ + + +brauen +brew +brasser + +
mle-0639
+
+
+
+ + +
hë bîâ
+
+ + + + + + + + + + + + +singen +sing +chanter + + + + +
tl
+
+
chanter
+
+
sing
+
+
singen
+
+ +
0880
+
+
+
+ + +
kpë mbeto
+
+ + + + +sich zu fürchten +fear +avoir peur + +
+ + +
ganzâ
+
+ + + + +circumcised male, excised female +mâle circoncis, femelle excisée + + +
ek
+
+
+ + + +Beschneidung +circumcision, excision +circoncision, excision + +
Beschneidung
+
circumcision, excision
+
circoncision, excision
+
+ + + + +
ek
+
+
Beschneidung
+
+
+
+ + +
nye
+
+ + + + + + + +was? +what? +que ? quoi ? + +
Sô nye?
+ +
What is this?
+
+
+ + +
ek
+
+
que? quoi ?
+
+
was?
+
+
what?
+
+ + +
1684
+
+
+
+ + +
hâka
+
+ + + + +versuchen +try +essayer + + + + +
ek
+
+
essayer
+
+
try
+
+
versuchen
+
+
+ + + +messen +measure +mesurer + + +
ek
+
+
measure
+
+
messen
+
+
mesurer
+
+ +
i-642
+
+
+ + + +vergleichen +compare +comparer + + +
ek
+
+
compare
+
+
comparer
+
+
vergleichen
+
+ +
mle-0985
+
+
+
+ + +
yôro na gbe tî ngû
+
+ + + + +eintauchen +immerse +immerger (dans) + +
mle-2462
+
+
+
+ + +
kadöo
+
+ + +
ka.doo
+ +
1.21
+
+
+ + + +Geschenk +gift +cadeau, don + + +
tl
+
+
cadeau, don
+
+
Geschenk
+
+
gift
+
+ +
0829
+
+
+
+ + +
nguzü
+
+ + + + +(Fleisch-)Made +maggot (in rotten meat) +asticot + + +
tl
+
+
(Fleisch-)Made
+
+
asticot
+
+
maggot (in rotten meat)
+
+ +
1121
+
+
+
+ + +
kîri da
+
+ + + + + + + + + + + +noch +again +encore + +
Lêgë sô lo fün bongö nî alîngbi pëpe nî laâ lo kîri da.
+ +
The way he sewed the garment was not right, therefore he did it again.
+
+
+ + +
tl
+
+
again
+
+
encore
+
+
noch
+
+ +
1359
+
+
+
+ + +
ngadï-ngû
+
+ + + + +Libelle +dragonfly +libellule + + +
tl
+
+
dragonfly
+
+
Libelle
+
+
libellule
+
+ +
1145
+
+
+
+ + +
hötö
+
+ + +
hɔ.tɔ / hɔ̰.tɔ / ɔ.tɔ / ɔ̰.tɔ
+ +
2.2
+
+
+ + + +Berg +mountain +montagne + + +
ek
+
+
Berg
+
+
montagne
+
+
mountain
+
+ +
1262
+
+
+ + + +Hügel +hill +colline + + +
ek
+
+
colline
+
+
hill
+
+
Hügel
+
+
+
+ + +
de
+
+ + + + + + + +bleiben +stay, remain +rester + + + + +
ek
+
+
bleiben
+
+
rester
+
+
+
+ + +
makoröo
+
+ + +
ma.ko.ɾo
+ +
1.1.21
+
+
+ + + +Komplott +plot +complot + + +
ek
+
+
complot
+
+
Komplott
+
+
plot
+
+
+
+ + +
pônte
+
+ + +
???
+
+ + + +Nagel +nail +pointe, clou + + +
ek
+
+
Nagel
+
+
nail
+
+
pointe, clou
+
+ +
0724
+
+
+
+ + +
gbägbärä tî da
+
+ + + + + + + + + + + + +Balken, Dachstuhl +beam, truss, rafter +poutre, charpente + + +
& i-166
+
+ +
tl
+
+ + +
0669
+
+
+
+ + +
kîri
+
+ + + + + + + + +noch einmal tun +do again +faire encore une fois + +
Taba akîri ate kôbe tî lo lêgë ûse.
+ +
The sheep eats its food a second time.
+
+
+ + +
ek
+
+
noch einmal tun
+
+
+
+ + +
ngusü
+
+ + + + +Sandfloh +jigger [Tunga penetrans] +chique + + +
tl
+
+
chique
+
+
jigger
+
+
Sandfloh
+
+ +
1131
+
+
+ + + +Insektenlarve +insect larva +larve + + +
ek
+
+
Insektenlarve
+
+
+ + + +Made +maggot +asticot + +
+ + +
gbe-dê
+
+ + + + + + + + + + + + +Unterschlupf, Schutzraum +shelter +abri + + +
tl
+
+
abri
+
+
shelter
+
+
Unterschlupf, Schutzraum
+
+ +
0684
+
+
+
+ + +
sï sïngö
+
+ + + + + + + + +voll (sein) +very full (be) +très plein (être) + + +
ek
+
+
voll (sein)
+
+
+
+ + +
yeke
+
+ + + + +langsam +slowly +lentement + +
Ângôlô atambûla yeke yeke.
+ +
Snails move slowly.
+
+
+ + +
ek
+
+
langsam
+
+
lentement
+
+
slowly
+
+
+
+ + +
tî mo
+
+ + + + + + +deiner Meinung nach +in your opinion +à ton avis + + + + + + +
ek
+
+
deiner Meinung nach
+
+
+
+ + +
fâ yânî
+
+ + + + + + + + +zerschneiden +cut up +découper + + + + +
ek
+
+
cut up
+
+
découper
+
+
zerschneiden
+
+ +
0717
+
+
+
+ + +
wâlï-wanganga tî müngö môlengê
+
+ + + + + + + + + + + + + + + + + + + + +Hebamme +midwife +sage-femme, accoucheuse + + +
tl
+
+
Hebamme
+
+
midwife
+
+
sage-femme, accoucheuse
+
+ +
0408
+
+
+
+ + +
vuru
+
+ + +
vurü
+ +
+ + + +weiß (sein) +white (be) +blanc (être) + + +
ek
+
+
(être) blanc
+
+
weiß (sein)
+
+
white
+
+ + +
1555
+
+
+ + + +hell (sein) +clear (be) +clair (être) + + +
ek
+
+
hell (sein)
+
+
+ + + +sauber (sein) +clean (be) +propre (être) + + +
ek
+
+
sauber (sein)
+
+
+ + + +ausgebleichen +fade +se faner + + +
ek
+
+
ausgebleichen
+
+
fade
+
+
se faner
+
+ +
1493
+
+
+
+ + +
wanzînga
+
+ + + + +ein Armer +poor person +un pauvre + + +
ek
+
+
ein Armer
+
+
+
+ + +
fandarä
+
+ + + + +Stolz, Hochmut +pride, vanity, vainness +orgueil, vanité + + +
& i-720
+
+ +
ek
+
+
orgueil
+
+
pride
+
+
Stolz, Hochmut
+
+ +
i-1051
+
+
+
+ + +
bâa töngana
+
+ + + + + + + + + + + + +spüren, wahrnehmen +feel (passive), sense +percevoir + + +
tl
+
+
feel (passive), sense
+
+
percevoir
+
+
spüren, wahrnehmen
+
+ +
0137
+
+
+
+ + +
terê tî ... ayâpu
+
+ + + + + + +sich erleichtert/glücklich fühlen +feel relieved, happy (be) +soulagé, content (être) + + +
ek
+
+
sich erleichtert/glücklich fühlen
+
+
+
+ + +
mbai
+
+ + + + +Geschichte +story +histoire + + +
ek
+
+
Geschichte
+
+
histoire
+
+
story
+
+ + +
0480
+
+
+ + + +Legende, Fabel +traditional story, myth, fable +conte, fable + + +
ek
+
+
+ + + +Rätsel +riddle +devinette + +
jl, lb, gfk-d
+
+ +
i-306
+
+
+
+ + +
dögozo
+
+ + +
???
+
+ + + +Rabe +raven +corbeau + + +
ek
+
+
corbeau
+
+
Rabe
+
+
raven
+
+ +
1042
+
+
+
+ + +
masïni
+
+ + + + +Maschine, Werkzeug +machine, tool +machine, outil + + +
ek
+
+
Maschine, Werkzeug
+
+
+
+ + +
tikîsa
+
+ + + + +verraten +betray +trahir + + +
i-1028
+
+
+
+ + +
ngû ahön galo
+
+ + + + +überlaufen von seinen Ufern +overflow river bank +déborder de ses rives + +
BMM
+
+ +
i-277
+
+
+
+ + +
ngolo
+
+ + + + + +
ngɔ.lɔ
+ +
1.1
+
+
+ + + +Wels +catfish +poisson-chat, silure +
catfish
+
+
silure
+
+
Wels
+
+ + +
1084
+
+
+
+ + +
süngö tî nze
+
+ + + + + + + + + + + + +Mondlicht +moonlight +clair de lune + + +
tl
+
+
clair de lune
+
+
Mondlicht
+
+
moonlight
+
+ +
1349
+
+
+ + + +Vollmond +full moon +pleine lune + + +
tl
+
+
pleine lune
+
+
Vollmond
+
+ +
1319
+
+
+
+ + +
sâra gapa
+
+ + + + + + + + + + + +diskutieren +talk over +discuter + + +
ek
+
+
discuter
+
+
diskutieren
+
+
+ + + +Werbung machen +advertise +faire la publicité + + +
ek
+
+
advertise
+
+
Werbung machen
+
+
+
+ + +
kalambo
+
+ + +
???
+
+ + + +See +lake +lac + + + +
1286
+
+
+
+ + +
sênî
+
+ + + + +Gesundheit +health +santé + + +
ek
+
+
Gesundheit
+
+
health
+
+
santé
+
+
+ +gesund +healthy, well +bien portant + + +
tl
+
+
bien portant
+
+
gesund
+
+
healthy, well
+
+ +
0205
+
+
+
+ + +
yuru
+
+ + + + +fließen +flow +couler + + +
ek
+
+
couler
+
+
fließen
+
+
flow
+
+ +
1480
+
+
+ + + +tropfen +drip +égoutter + + +
tl
+
+
drip
+
+
égoutter
+
+
tropfen
+
+ +
1481
+
+
+ + + +auslaufen +leak +fuir, s'échapper (liquide) + + +
tl
+
+
auslaufen
+
+
fuir, s'échapper (liquide)
+
+
leak
+
+ +
1482
+
+
+
+ + +
balëûse na ûse
+
+ + + + + + + + + + + + +zweiundzwanzig (22) +twenty-two (22) +vingt-deux (22) + + +
tl
+
+
twenty-two (22)
+
+
vingt-deux (22)
+
+
zweiundzwanzig (22)
+
+ +
1611
+
+
+
+ + +
kpangbara
+
+ + + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + +
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ + + + + +
0755
+
+
+
+ + +
gbâzâ
+
+ + + + +Kreis, Reifen, Rad +circle, hoop, wheel +cercle, cerceau, roue + + +
i-153
+
+
+
+ + +
ngbangbo ôko
+
+ + + + + + + + + + + + +hundert (100) +hundred (100) +cent (100) + + +
tl
+
+
cent (100)
+
+
hundert (100)
+
+
hundred (100)
+
+ +
1619
+
+
+
+ + +
dangâlingâ
+
+ + + + +Gottesanbeterin, Mantis +praying mantis +mante religieuse + + +
ek
+
+
Gottesanbeterin, Mantis
+
+
mante religieuse
+
+
praying mantis
+
+ +
1135
+
+
+
+ + +
ka
+
+ + + + +und, dann +and, then +et, alors + +
Töngana mo nyön yorö nî ka fadë kobêla tî mo akâi.
+ +
If you drink the medecine then your sickness will go away.
+
+
+ +
ek
+
+
und, dann
+
+
+
+ + +
da tî lêgë
+
+ + + + + + + + +Hotel +hotel +hôtel + + + + +
ek
+
+
hotel
+
+
Hotel
+
+
hôtel
+
+
+
+ + +
lele
+
+ + +
lɛ.lɛ
+ +
1.1
+
+
+ + + +Dartre +red patch, dry patch, scurf patch, scab +dartre + +
i-275
+
+
+
+ + +
ë
+
+ + + + +wir +we +nous + + +
tl
+
+
nous
+
+
we
+
+
wir
+
+ +
1651
+
+
+
+ + +
kânga bê tî ... pëpe
+
+ + + + + + + + + + +ungeduldig (sein) +impatient (be) +impatient (être) + +
Wagbötöngö-kutukutu nî akpë lörö ahön ndönî. Lo kânga bê tî lo pëpe.
+ +
The driver went too fast. He was impatient.
+
+
+ +
Mbï sâra ngonzo töngana kôbe asï hîo pëpe. Bîanî, mbï kânga bê tî mbï pëpe.
+ +
I got angry when the food didn't arrive quickly. Indeed, I was impatient.
+
+
+ + +
tl
+
+
(être) impatient
+
+
impatient
+
+
ungeduldig (sein)
+
+ +
0315
+
+
+
+ + +
gbû bê
+
+ + + + + + + + + + + + +tief berühren, beeindrucken +touch deeply, impress +toucher profondément, impressionner + + + + +
ek
+
+
tief berühren, beeindrucken
+
+
+
+ + +
wasopo
+
+ + + + +Faulenzer +lazy person +paresseux, fainéant + + +
ek
+
+
Faulenzer
+
+
paresseux
+
+ +
mle-2768
+
+
+
+ + +
dë yâ tî sêse tî zî sïönî pêrë
+
+ + + + +hacken +hoe +biner + + + +
0751
+
+
+
+ + +
dë bê
+
+ + + + + + + + + + + + +sich beruhigen +calm down +se calmer + + +
& mle
+
+
calm down
+
+
se calmer
+
+
sich beruhigen
+
+ + +
0516
+
+
+ + + +besänftigen, befrieden +appease, pacify +apaiser + +
apaiser
+
+
besänftigen, befrieden
+
+
+
+ + +
kâpä
+
+ + + + +Datum, Zeitspanne +date, time period +date, période + + +
ek
+
+
Datum, Zeitspanne
+
+
+ + + +Programm +program +programme + + +
ek
+
+
program
+
+
Programm
+
+
programme
+
+
+
+ + +
lê tî ngû
+
+ + + + + + + + +Wasseroberfläche +water surface +surface de l'eau + + +
ek
+
+
Wasseroberfläche
+
+
+
+ + +
savöno
+
+ + +
sa.vo.no
+ +
1.2.1 / 1.3.1 [lb]
+
+
+ + + +Seife +soap +savon + + +
ek
+
+
savon
+
+
Seife
+
+
soap
+
+
+
+ + +
korobô
+
+ + +
ko.ɾo.bo
+ +
1.1.3 / 1.1.2 [lb]
+
+
+ + + +Hoden +testicle +testicule + + +
ek
+
+
Hoden
+
+
testicle
+
+
testicule
+
+ + +
0047
+
+
+
+ + +
hïngängö ndo
+
+ + + + + + + + + + + + +Einsicht +know-how +savoir-faire + + +
ek
+
+
know-how
+
+
savoir-faire
+
+
Weisheit, Einsicht
+
+
+
+ + +
kûtu
+
+ + +
süküngö yê sô agä kä was the old form given by Tychique
+
+ + + + + + +Beule +bump, protuberance +bosse + + +
tl
+
+
Beule
+
+
bosse
+
+
bump, protuberance
+
+ +
1395
+
+
+ + + +Höcker (einer Kuh) +hump (of cow) +bosse (de vache) + + +
tl
+
+
bosse (de vache)
+
+
Höcker (einer Kuh)
+
+
hump (of cow)
+
+ +
1029
+
+
+ + + +Buckel (eines Buckligen) +hump (of hunchback) +bosse (d'un bossu) + + +
tl
+
+
bosse (d'un bossu)
+
+
Buckel (eines Buckligen)
+
+
hump (of hunchback)
+
+ +
0189
+
+
+ + + +Knoten (im Holz) +knot (in wood) +nœud (dans le bois) + +
knot (in wood)
+
+
Knoten (im Holz)
+
+
nœud (dans le bois)
+
+ +
0721
+
+
+ + + +Abszess, Eiterbeule +abscess +abcès + + +
tl
+
+
abcès
+
+
abscess
+
+
Abszess, Eiterbeule
+
+ + +
0212
+
+
+ + + +Knospe +bud +bourgeon + + + +
1189
+
+
+
+ + +
löndö (sämba)
+
+ + + + + + + + + + + + + + + + +gären +ferment (alcohol) +fermenter + +
Sämba alöndö, âla nyön, âla sulêe.
+ +
The drink fermented, they drank it, they got drunk.
+
+
+ + +
tl
+
+
ferment (alcohol)
+
+
fermenter
+
+
gären
+
+ +
0609
+
+
+
+ + +
lele
+
+ + +
May refer to different animals in different regions?
+
+ + + +Klippschliefer +rock hyrax +daman des rochers + + + + +Rohrratte +cane rat, cutting grass, grass cutter +aulacode, sibissi, cibissi + + +
Thryonomys swinderianus
+
+ +
tl
+
+
aulacode, sibissi, cibissi
+
+
cane rat, grass cutter
+
+
Rohrratte
+
+ + +
1011
+
+
+ + + +bush-tailed porcupine +
porcupine, bush-tailed
+
+
+
+ + +
sâra si ... atï
+
+ + + + + + + + + + + + +fallen lassen +drop (tr) +laisser tomber + + +
tl
+
+
drop (tr)
+
+
fallen lassen
+
+
laisser tomber
+
+ + +
1429
+
+
+
+ + +
nzï
+
+ + + + +stehlen +steal +voler + + + + +
tl
+
+
steal
+
+
stehlen
+
+
voler
+
+ +
0517
+
+
+
+ + +
kîri yângâ
+
+ + + + + + + + + + + +antworten +answer, reply +répondre + + +
ek
+
+
antworten
+
+
répondre
+
+ +
0456
+
+
+
+ + +
potopôto tî sâra na da
+
+ + + + + + + +schlamm für den Bau +mud used in construction +banco + + +
i-62
+
+
+
+ + +
kêtê mabôko tî (mbûrü)
+
+ + + + + + + + + + + + + + + + +Mittelrippe der Palmwedel +midrib of palme frond +nervure centrale de palme, rachis + +
midrib of palme frond
+
+
Mittelrippe der Palmwedel
+
+
nervure centrale de palme, rachis
+
+ + +
1195
+
+
+
+ + +
ndao tî lêgë
+
+ + + + + + + + +Autounfall +car accident +accident de route + + +
ek
+
+
Autounfall
+
+
+
+ + +
zî kûngbâ na yâ tî
+
+ + + + + + + + + + + + +entladen +unload +décharger + + +
tl
+
+
décharger
+
+
entladen
+
+
unload
+
+ +
0865
+
+
+
+ + +
gbötöngö
+
+ + + + +herausziehen, versetzen +pulling out, moving +tirage, fait d'enlever + + + + +
ek
+
+
herausziehen, versetzen
+
+
+
+ + +
ndiä
+
+ + + + +Gesetz, Regel +law, rule +loi, règle + + +
tl
+
+
Gesetz, Regel
+
+
law, rule
+
+
loi, règle
+
+ +
0520
+
+
+
+ + +
gue na mbênî tambûla
+
+ + + + + + + + + + + + +reisen +travel, go on a trip +voyager + + +
tl
+
+
reisen
+
+
travel, go on a trip
+
+
voyager
+
+ +
0843
+
+
+
+ + +
yoya
+
+ + + + +auflösen +dissolve +se dissoudre + +
Koit-Deballe
+
+ +
mle-1434
+
+
+
+ + +
garâ
+
+ + + + +Markt +market +marché + + +
tl
+
+
marché
+
+
market
+
+
Markt
+
+ +
0535
+
+
+
+ + +
hûnda yê
+
+ + + + + + + + + + + + +betteln +beg (for money) +mendier + + +
tl
+
+
beg (for money)
+
+
betteln
+
+
mendier
+
+ + +
0831
+
+
+
+ + +
dö na gerê
+
+ + + + + + + +treten, einen Fußtritt versetzen +kick +donner un coup de pied + +
einen Fußtritt versetzen
+
kick (other than a ball)
+
donner un coup de pied
+
+ + +
tl
+
+
donner un coup de pied
+
+
kick
+
+
treten, einen Fußtritt versetzen
+
+ +
0162
+
+
+ + + +stampfen +stamp (with foot) +trépigner, taper du pied + + +
tl
+
+
stamp (with foot)
+
+
stampfen
+
+
trépigner, taper du pied
+
+ +
0163
+
+
+ + + +etwas treten +step on something, trample +piétiner, fouler aux pieds + + +
tl
+
+
etwas treten
+
+
piétiner, fouler aux pieds
+
+
step on something, trample
+
+ +
0164
+
+
+
+ + +
litënë
+
+ + + + +Kapitel +chapter +chapitre + + +
ek
+
+
chapitre
+
+
chapter
+
+
Kapitel
+
+
+
+ + +
ngû tî hôn
+
+ + + + + + + + + + + + +Nasenschleim, Rotz +nasal mucus, snot +morve + + +
tl
+
+
morve
+
+
nasal mucus, snot
+
+
Nasenschleim, Rotz
+
+ +
0095
+
+
+
+ + +
pûpûlenge
+
+ + + + +Hubschrauber, Helikopter +helicopter +hélicoptère + + +
ek
+
+
helicopter
+
+
hélicoptère
+
+
Hubschrauber, Helikopter
+
+
+
+ + +
töngö mbëlä
+
+ + + + + + + + +Ankündigung +announcement +annonce + + +
tl
+
+
Ankündigung
+
+
annonce
+
+
announcement
+
+ +
0447
+
+
+ + + +Rede, Ansprache +speech, discourse +discours + + +
tl
+
+
discours
+
+
Rede, Ansprache
+
+
speech, discourse
+
+ +
0482
+
+
+
+ + +
lungûla
+
+ + + + +wegnehmen, öffnen +take away, open +enlever, ouvrir + +
lungûla sïökpärï.
+ +
Sünde wegnehmen
+
remove sin
+
enlever le péché
+
+
+ + +
ek
+
+
enlever, ouvrir
+
+
take away, open
+
+
wegnehmen, öffnen
+
+ + +
0643
+
+
+
+ + +
kate tî da
+
+ + + + + + + + + + + + +Mauer, Wand +wall +mur + + +
tl
+
+
Mauer, Wand
+
+
mur
+
+
wall
+
+ + +
0664
+
+
+
+ + +
sînga
+
+ + + + +Telefon +telephone +téléphone + + +
ek
+
+
Telefon
+
+
telephone
+
+
téléphone
+
+
+ + + +Radio +radio +radio + + +
ek
+
+
radio
+
+
radio
+
+
Radio
+
+
+
+ + +
+
+ + +
k
+ +
3
+
+
+ + + + + +keimen +germinate +germer + + +
ek
+
+
germer, pousser
+
+
germinate, grow
+
+
keimen, wachsen
+
+ +
1246
+
+
+ + + +wachsen +grow +pousser + +
+ + +
ndombe
+
+ + +
ndɔ.mbɛ
+ +
1.1
+
+
+ + + +Verkäufer +shopkeeper +gérant + + +
ek
+
+
gérant
+
+
shopkeeper
+
+
Verkäufer
+
+
+
+ + +
girisa lêgë
+
+ + + + + + + +den Weg verlieren, schlechte Entscheidungen treffen +lose one's way, make bad choices +perdre le chemin, faire des mauvais choix + + +
ek
+
+
den Weg verlieren, schlechte Entscheidungen treffen
+
+
+
+ + +
gbägbä tî ânyama
+
+ + + + + + + + + + + +Viehgehege +livestock pen +enclos (de bétail) + + +
tl, cm
+
+
enclos (de bétail)
+
+
livestock pen
+
+
Viehgehege
+
+ +
0770
+
+
+
+ + +
na gîgî
+
+ + + + + + + + +öffentlich, in aller Öffentlichkeit +in public +en public + +
Lo pîka wâli tî lo na gîgî.
+ +
He beat his wife in public.
+
+
+ + +
ek
+
+
öffentlich, in aller Öffentlichkeit
+
+
+
+ + +
nenêe
+
+ + + + +wichtig, gewichtig +important, weighty (be) +important, gigantesque, pesant (être) + +
Alîngbi ë mä nenêe tënë sô.
+ +
We must listen to this weighty matter.
+
Il faut que nous écoutions cette importante affaire.
+
+
+ + +
ek
+
+
wichtig, gewichtig
+
+
+
+ + +
gûî tî sêse
+
+ + + + + + + + + + + + +Kartoffel +potato +pomme de terre + + +
Solanum tuberosum
+
+ +
tl
+
+
Kartoffel
+
+
pomme de terre
+
+
potato
+
+ +
1231
+
+
+
+ + +
+
+ + +
ɡɔ
+ +
1
+
+
+ + + +Hals +neck +cou + + + + +
tl
+
+
cou
+
+
Hals
+
+
neck
+
+ + +
0023
+
+
+ + + +Hals, Kehle +throat +gorge + + +
ek
+
+
gorge
+
+
Hals, Kehle
+
+
throat
+
+ + +
0025
+
+
+ + + +Stimme +voice +voix + + +
ek
+
+
Stimme
+
+
voice
+
+
voix
+
+ + +
0434
+
+
+ + + +Lärm, Ton +noise, sound +bruit, son + + +
1327
+
+
+ + + +Melodie +melody +mélodie + + +
ek
+
+
Melodie
+
+
mélodie
+
+
melody
+
+
+
+ + +
makongö
+
+ + +
ma.ko.ngo
+ +
1.1.2
+
+
+ + + +Raupe +caterpillar +chenille + + +
tl
+
+
caterpillar
+
+
chenille
+
+
Raupe
+
+ +
1137
+
+
+ + + +Virus +virus +virus + + +
ek
+
+
virus
+
+
virus
+
+
Virus
+
+
+
+ + +
yôro mabôko
+
+ + + + + + + + +Hand hoch heben, hoch halten +lift one's hand +lever la main + + +
ek
+
+
Hand hoch heben, hoch halten
+
+
+
+ + +
ndüngö terê tî zo yeke yeke
+
+ + + + + + + + + + + + + + + + + + + + +kitzeln +tickle +chatouiller + + +
tl
+
+
chatouiller
+
+
kitzeln
+
+
tickle
+
+ +
0489
+
+
+
+ + +
balëotâ
+
+ + +
ba.le.o.ta
+ +
1.2.1.3
+
+
+ + + +dreißig (30) +thirty (30) +trente (30) + + +
tl
+
+
dreißig (30)
+
+
thirty (30)
+
+
trente (30)
+
+ +
1612
+
+
+
+ + +
girisa
+
+ + + + + +verloren (sein) +lost (be) +perdu, égaré (être) + +
Nginza nî atï na yâ tî ngû agirisa awe.
+ +
The money fell into the water and is lost.
+
+
+ + +
tl
+
+
(être) perdu, égaré
+
+
lost
+
+
verloren (sein)
+
+ +
0846
+
+
+
+ + +
mafüta tî sindi
+
+ + + + + + + + +Sesam-Öl +sesame oil +huile de sésame + + +
ek
+
+
Sesam-Öl
+
+
+
+ + +
gbakô
+
+ + +
gba.ko
+ +
1.3
+
+
+ + + +Wald +forest +forêt + + +
tl
+
+
forest
+
+
forêt
+
+
Wald
+
+ +
1258
+
+
+
+ + +
këkë tî wâ
+
+ + + + + + + + + + + +Brennholz +firewood +fagot, bois à brûler + + +
tl
+
+
Brennholz
+
+
fagot, bois à brûler
+
+
firewood
+
+ +
1310
+
+
+
+ + +
tängö
+
+ + +
ta.ngɔ
+ +
2.2 / 1.3 [lb]
+
+
+ + + +Amboss +anvil +enclume + + +
0707
+
+
+
+ + +
dutï gï ... ôko
+
+ + + + + + + + + + + + + + +allein (sein) +alone (be) +seul, solitaire (être) + +
Âzo kûê akpë lo. Lo dutï gï lo ôko.
+ + +
+ + +
tl
+
+
(être) seul, solitaire
+
+
allein (sein)
+
+
alone
+
+ +
0419
+
+
+
+ + +
yëngö-terê
+
+ + + + +Liebe +love +amour + + +
ek
+
+
amour
+
+
Liebe
+
+
love
+
+
+
+ + +
gbânda tî gïngö susu
+
+ + + + + + + + + + + + + + + + +Fischernetz +fishing net +filet de pêche, "épervier" + + +
tl
+
+
filet de pêche, "épervier"
+
+
Fischernetz
+
+
fishing net
+
+ +
0802
+
+
+
+ + +
fi ... na ndö tî ...
+
+ + + + +spritzen +sprinkle +gicler + + + +
1483
+
+
+
+ + +
pinîi
+
+ + + + +strafen +punish +punir + + +
ek
+
+
punir
+
+
punish
+
+
strafen
+
+ + +
0524
+
+
+
+ + +
mateläa
+
+ + + + +Matratze +mattress +matelas + + +
ek
+
+
matelas
+
+
Matratze
+
+
mattress
+
+
+
+ + +
zambêrê
+
+ + + + +Antilopenart +antelope (gen.) +antilope (gén.) + + +
1005
+
+
+
+ + +
hâriyâ
+
+ + + + +Hirse +millet +petit mil + + +
ek
+
+
Hirse
+
+
millet
+
+
petit mil
+
+ +
1235
+
+
+
+ + +
kôlï-mbârâtâ
+
+ + + + + + + + + + + + +Hengst +stallion +étalon + + +
tl
+
+
étalon
+
+
Hengst
+
+
stallion
+
+ +
0983
+
+
+
+ + +
marä
+
+ + + + +Rasse +race +race + + +
ek
+
+
race
+
+
race
+
+
Rasse
+
+
+ + + +Stamm +tribe, ethnic group +tribu + + +
tl
+
+
Stamm
+
+
tribe, ethnic group
+
+
tribu
+
+ +
0377
+
+
+ + + +Sippe +clan +clan + + +
ek
+
+
clan
+
+
clan
+
+
Sippe
+
+ +
0378
+
+
+ + + +Kategorie, Sorte +category, type +catégorie, sorte + + +
ek
+
+
Kategorie, Sorte
+
+
+ + + +spezies +species +espèce + +
i-367
+
+
+
+ + +
tûku
+
+ + + + +Faß, Tonne +barrel +fût + + +
ek
+
+
barrel
+
+
Faß, Tonne
+
+
fût
+
+
+ + + +ausschütten +pour +verser + + +
tl
+
+
ausschütten
+
+
pour
+
+
verser
+
+ +
0632
+
+
+ + + +verschütten +spill (liquid) +renverser, répandre (un liquide) + + +
tl
+
+
renverser, répandre (un liquide)
+
+
spill (liquid)
+
+
verschütten
+
+ +
0633
+
+
+ + + +umblasen +blow down +se renverser (par le vent) + + +
tl
+
+
blow down
+
+
se renverser (par le vent)
+
+
umblasen
+
+ +
1477
+
+
+ + + +kentern, umkippen +capsize +se renverser, chavirer + + +
tl
+
+
capsize
+
+
kentern, umkippen
+
+
se renverser, chavirer
+
+ +
0855
+
+
+ + + +fortwerfen, wegwerfen +throw away +jeter + + +
ek
+
+
fortwerfen, wegwerfen
+
+
jeter
+
+
throw away
+
+ +
1468
+
+
+
+ + +
nzërëngö
+
+ + + + +Geschmack +taste +goût + + +
tl
+
+
Geschmack
+
+
goût
+
+
taste
+
+ +
1564
+
+
+
+ + +
zîngo na ...
+
+ + + + +schelten, tadeln +scold, reprimand +gronder, réprimander + +
+ + +
ngûngunzä
+
+ + +grün (sein) +green (be) +vert (être) + +
Kugbë tî këkë sô ayeke tî ngûngunzä.
+ +
The leaves of this tree are green (like ngunza sauce).
+
+
+ + +
tl
+
+
(être) vert
+
+
green
+
+
grün (sein)
+
+ +
1559
+
+
+
+ + +
kpakete
+
+ + +
check also ndaya, kpitri
+
+ + + +Hundertfüßer +centipede +scolopendre + + +
tl
+
+
centipede
+
+
scolopendre
+
+
Tausendfüßler
+
+ +
1138
+
+
+
+ + +
sumâle
+
+ + + + +eingeweihte Person des Ngakola-Ritus +initiated person of specific Ngakola rite +initié de la divinité de Ngakola + +
Eingeweihter der Gottheit Ngakola
+
initiated person of specific Ngakola rite
+
initié de la divinité de Ngakola
+
+ + +
ek
+
+
eingeweihte Person des Ngakola-Ritus
+
+
+
+ + +
wamandako
+
+ + + + +Rivale +rival, competitor +rival(e) + +
i-887
+
+
+
+ + +
pîka wên
+
+ + + + +schmieden +forge +forger + +
monino-078
+
+
+
+ + +
sakpa
+
+ + + + +verschlingen +devour +dévorer + + +
ek
+
+
dévorer
+
+
devour
+
+
verschlingen
+
+
+
+ + +
sâra tënë na gbe tî gô
+
+ + + + + + + + + + + + + + + + + + + + +nuscheln, murmeln +mumble +marmonner + + +
tl
+
+
marmonner
+
+
mumble
+
+
nuscheln, murmeln
+
+ +
0439
+
+
+
+ + +
sïönî-bê
+
+ + + + +Gemeinheit, Boshafigkeit, böse (sein) +meanness, wickedness +méchanceté + + +
ek
+
+
Gemeinheit, Boshafigkeit, böse (sein)
+
+
méchanceté
+
+
+
+ + +
gbe tî gô tî susu
+
+ + + + + + + + + + + + + + + + +Kieme +gill +ouïe + + +
tl
+
+
gill
+
+
Kieme
+
+
ouïe
+
+ +
1089
+
+
+
+ + +
kötä ndäpêrêrê
+
+ + + + + + + + +früh morgens +early in the morning +très tôt le matin + + +
ek
+
+
früh morgens
+
+
+ + + +Morgendämmerung, Tagesanbruch +dawn (before sunrise) +aube + + +
tl
+
+
aube
+
+
dawn (before sunrise)
+
+
Morgendämmerung, Tagesanbruch
+
+ +
1376
+
+
+
+ + +
kpûkpû
+
+ + + + +Motorrad, Moped +motorbike, moped +moto, mobylette + + +
ek
+
+
Motorrad, Moped
+
+
+
+ + +
sâko
+
+ + +
sa.ko
+ +
3.1
+
+
+ + + +Applaus +applause +applaudissement + + +
ek
+
+
applaudissement
+
+
Applaus
+
+
applause
+
+
+
+ + +
yäsä
+
+ + + + +Quelle +spring +source + + +
ek
+
+
Quelle
+
+
source
+
+
spring
+
+ + +
1290
+
+
+
+ + +
sâra nî a wôko
+
+ + + + + + + + + + + + +erweichen, weich machen +soften +ramollir + + +
tl
+
+
erweichen, weich machen
+
+
ramollir
+
+
soften
+
+ +
1547
+
+
+
+ + +
ngôngbi
+
+ + + + + +
ngo.ngbi
+ +
3.1
+
+
+ + + +Falte +pleat +pli +
Falte
+
+
pleat
+
+
pli
+
+
+
+ + +
zo ôko äpe
+
+ + + + + + + + + + + + +niemand +no one +ne...personne + +
Da nî ayeke sêngê. Zo ôko äpe adutï daä.
+ +
The house is empty. No one lives in it.
+
+
+ + +
ek
+
+
ne...personne
+
+
niemand
+
+
+
+ + +
pekë
+
+ + + + +Palmwein +palm wine +vin de palme + + +
ek
+
+
Palmwein
+
+
vin de palme
+
+ +
0590
+
+
+
+ + +
palâta
+
+ + + + +Medaille +medal +médaille + + +
ek
+
+
Medaille
+
+
médaille
+
+
medal
+
+
+
+ + +
li tî ... akpë
+
+ + + + + + + + + + + +verwirrt, bestürzt (sein) +confused, bewildered (be) +confus, éperdu (être) + + +
ek
+
+
verwirrt, bestürzt (sein)
+
+
+ + + +überrascht +surprised (be) +surpris (être) + + +
ek
+
+
surpris
+
+
surprised
+
+
überrascht
+
+
+ + + +in Panik geraten +panicked (be) +paniqué (être) + + +
ek
+
+
in Panik geraten
+
+
panicked
+
+
paniqué
+
+
+ + + +betäuben +stun, daze +étourdir + +
i-381
+
+
+
+ + +
wasüngö-mbëtï
+
+ + + + +Autor, Schriftsteller +author, writer +écrivain + + +
ek
+
+
Autor, Schriftsteller
+
+
écrivain
+
+
+
+ + +
zîa na ndönî
+
+ + + + + + + + + + + + +addieren, hinzufügen +add +ajouter + + +
tl
+
+
add
+
+
addieren, hinzufügen
+
+
ajouter
+
+ +
1627
+
+
+
+ + +
bozö tî bongö
+
+ + + + + + + + + + + + +Tasche +pocket +poche + + +
tl
+
+
poche
+
+
pocket
+
+
Tasche
+
+ +
0729
+
+
+
+ + +
kâmba tî bê
+
+ + + + + + + + +Liebling +sweetheart +chérie + + + + +
ek
+
+
chérie
+
+
Liebling
+
+
sweetheart
+
+
+
+ + +
kôbe
+
+ + +
kɔ.bɛ
+ +
3.1
+
+
+ + + +Nahrung, üblicherweise Hauptnahrungsmittel (Maniok, Sorghum oder Kochbananen) +food, usually the staple food (manioc, millet or plantains) +aliments, nourriture, normalement de base (manioc, mil, plantain) + + + + +
tl
+
+
aliments, nourriture, normallement de base (manioc, mil, plantain)
+
+
food, usually the staple food (manioc, millet or plantains)
+
+
Nahrung, üblicherweise Hauptnahrungsmittel (Maniok, Sorghum oder Kochbananen
+
+ +
0569
+
+
+
+ + +
yengere
+
+ + + + +sieben +sift +tamiser + + +
ek
+
+
sieben
+
+
sift
+
+
tamiser
+
+ +
i-988
+
+
+ + + +Sieb +sieve, sifter +tamis + + +
ek
+
+
Sieb
+
+
tamis
+
+
+ + + +rühren +stir +remuer + + +
tl
+
+
remuer
+
+
rühren
+
+
stir
+
+ +
0597
+
+
+ + + +schütteln +shake +secouer + + +
tl
+
+
schütteln
+
+
secouer
+
+
shake
+
+ +
1455
+
+
+
+ + +
âmosoro
+
+ + +
a.mɔ.sɔ.ɾɔ
+ +
3.1.1.1
+
+
+ + + +Hab und Gut, Güter +belongings +biens, possessions + + +
tl
+
+
belongings
+
+
biens, possessions
+
+
Hab und Gut, Güter
+
+ +
0811
+
+
+
+ + +
hön na ...
+
+ + + + + + + + + + + + +(mit-)nehmen +take (away), carry away +emporter + + +
tl
+
+
(mit-)nehmen
+
+
emporter
+
+
take (away), carry away
+
+ +
0857
+
+
+
+ + +
pîka terê
+
+ + + + + + + + + + + +kämpfen +fight +se battre + + +
ek
+
+
fight
+
+
kämpfen
+
+
se battre
+
+ +
0509
+
+
+
+ + +
gira
+
+ + + + +Kapokbaum +silk-cotton tree, kapok tree +kapokier + + +
Bombax costatum
+
+ +
tl
+
+
Kapokbaum
+
+
kapokier
+
+
silk-cotton tree, kapok tree
+
+ +
1163
+
+
+
+ + +
lë mîngi
+
+ + + + + + +(Wald) +grow a lot (vegetation) +croître beaucoup (végétation) + + +
ek
+
+
(Wald)
+
+
+
+ + +
vüköngö ndo
+
+ + + + + + + +Dunkelheit +darkness +obscurité + + +
tl
+
+
darkness
+
+
Dunkelheit
+
+
obscurité
+
+ + +
1351
+
+
+
+ + +
ahön tîtene
+
+ + + + +statt +instead of +au lieu de + +
+ + +
sosongo
+
+ + +
same as lingala: sosongo
+
+ +
so.so.ngo
+ +
1.1.1
+
+
+ + + +Schilfrohr +reed +roseau + + +
Pennisetum purpureum
+
+
reed
+
+
roseau
+
+
Schilfrohr
+
+ +
1175
+
+
+ + + +Elefantengras +elephant grass +herbe d'éléphant + +
Elefantengras
+
+
+
+ + +
lê tî sindi
+
+ + + + + + + + + + + + +Sesamsamen +sesame seed +sésame (graines de) + + +
Sesamum indicum
+
+ +
tl
+
+
sésame (graines de)
+
+
sesame seed
+
+
Sesamsamen
+
+ +
1238
+
+
+
+ + +
zaza
+
+ + + + +Peitsche +whip +fouet, chicotte + + +
tl
+
+
fouet, chicotte
+
+
Peitsche
+
+
whip
+
+ +
0491
+
+
+
+ + +
pörö tî nzö
+
+ + + + + + + + + + + + +Maishülse +corn husk +enveloppe (de maïs) + + +
tl
+
+
corn husk
+
+
enveloppe (de maïs)
+
+
Maishülse
+
+ +
1205
+
+
+
+ + +
sërë
+
+ + + + +Kürbiskerne +squash seeds +graines de courge + + +
ek
+
+
Kürbiskerne
+
+
+
+ + +
söngö tî yê sô ayeke te zo tëngö
+
+ + + + + + + + + + + + + + + + + + + + +pochen (vor Schmerzen) +throb (with pain) +lanciner, faire des élancements + + +
tl
+
+
lanciner, faire des élancements
+
+
pochen (vor Schmerzen)
+
+
throb (with pain)
+
+ +
0232
+
+
+
+ + +
ândö
+
+ + +
a.ndo
+ +
3.2
+
+
+ + + +früher, einst +previously, olden times +autrefois, temps d'antan + +
Ândö âkötarä asâra bongö tî âla na pörö tî këkë.
+ +
In olden times, their ancestors made their clothes with tree bark.
+
+
+ + +
tl
+
+
autrefois, temps d'antan
+
+
früher, einst
+
+
previously, olden times
+
+ +
1375
+
+
+
+ + +
mû mabôko
+
+ + + + + + + + +helfen +help +aider + + +
& mle & i-934
+
+ +
tl
+
+
aider
+
+
helfen
+
+
help
+
+ +
0492
+
+
+ + + +unterstützen +support +soutenir + + +
mle-4700
+
+
+
+ + +
küä tî li
+
+ + + + + + + + +Haare (auf dem Kopf) +hair (on the head) +cheveux (de tête) + + + + +
tl
+
+
cheveux (de tête)
+
+
Haare (auf dem Kopf)
+
+
hair (on the head)
+
+ +
0027
+
+
+
+ + +
na ndembë sô
+
+ + + + + + + + +(zur Zeit) als +when, at the time that +au moment où + +
Na ndembë sô lo de môlengê, mbï gä mbäkôro awe.
+ +
At the time that he was still a child, I was already old.
+
+
+ + +
ek
+
+
(zur Zeit) als
+
+
+
+ + +
märïâzi
+
+ + + + +Heirat +marriage +mariage + + +
ek
+
+
Heirat
+
+
mariage
+
+
marriage
+
+ +
0940
+
+
+
+ + +
sêndâ
+
+ + + + +Abdrücke +prints +empreinte + + + + +
ek
+
+
Abdrücke
+
+
empreinte
+
+
prints
+
+
+ + + +Spur(en) +tracks +trace + + +
ek
+
+
Spur(en)
+
+
trace
+
+
tracks
+
+ + +
0778
+
+
+ + + +grundlage +basis +fondement + + + +
i-424
+
+
+ + + +Wissenschaft +science +science + +
+ + +
letäa
+
+ + + + +Staat +state +l'État + + +
ek
+
+
l'Etat
+
+
Staat
+
+
state
+
+
+ + + +Regierung +government +gouvernement + + +
ek
+
+
gouvernement
+
+
government
+
+
Regierung
+
+
+
+ + +
marabüu
+
+ + + + +Marabu +stork (marabou) +marabout + + +
Leptoptilos crumeniferus
+
+ +
tl
+
+
marabout
+
+
Marabu
+
+
stork (marabou)
+
+ +
1052
+
+
+
+ + +
mini
+
+ + + + +kleine Ameise +little ant +petite fourmi + + +
ek
+
+
kleine Ameise
+
+
+
+ + +
a duti gi mbi
+
+ + +as for me + +
+ + +
+
+ + +
+ +
2
+
+
+ + + +anzünden +set fire to +allumer pour brûler + + + + +
ek
+
+
anzünden
+
+
+ + + +verbrennen +burn, blaze +brûler + +
verbrennen
+
+ +
monino-018
+
+
+ + + +backen (in Asche) +bake (in ashes) +faire cuire (dans les cendres) + + +
tl
+
+
backen (in Asche)
+
+
bake (in ashes)
+
+
faire cuire (dans les cendres)
+
+ +
0606
+
+
+ + + +grillen +grill +griller + +
monino-088
+
+
+ + + +braten, rösten +roast +rôtir + + +
tl
+
+
braten, rösten
+
+
roast
+
+
rôtir
+
+ + +
0604
+
+
+
+ + +
tënë tî
+
+ + + + + + +betreffend +concerning +au sujet de + + + + + + +
ek
+
+
betreffend
+
+
concerning
+
+
+
+ + +
ngbangbo miombe
+
+ + + + +achthundert (800) +eight hundred (800) +huit cents (800) + +
achthundert (800)
+
+
eight hundred (800)
+
+
huit cents (800)
+
+ +
chan_09
+
+
+
+ + +
ndaramba
+
+ + + + +Hase +hare +lièvre + + +
tl
+
+
hare
+
+
Hase
+
+
lièvre
+
+ +
1016
+
+
+ + + +Kaninchen +rabbit +lapin + + +
ek
+
+
Kaninchen
+
+
lapin
+
+
rabbit
+
+
+
+ + +
mbârâmbârâ
+
+ + + + +sieben (7) +seven (7) +sept + + +
ek
+
+
sept
+
+
seven (7)
+
+
sieben (7)
+
+ +
1596
+
+
+
+ + +
orânje
+
+ + +
o.ra̰.ʒɛ
+ +
1.3.1
+
+
+ + + +Orange, Apfelsine +orange +orange + + +
Citrus aurantium var. dulce, synonyme : C. sinensis
+
+ +
tl
+
+
orange
+
+
orange
+
+
Orange, Apfelsine
+
+ +
1211
+
+
+
+ + +
kpändä
+
+ + + + +mager, ungesund +scrawny, sickly +chétif, malingre + +
Kpändä nî sô, adü lo na ndânî.
+ +
That scrawny one was born last.
+
Celui qui est chétif est né à la fin.
+
+
+ + +
ek
+
+
mager, ungesund, kränklich
+
+
+
+ + +
kôzo tî
+
+ + + + + + + + +bevor, zuerst +before +avant de + + + + +
ek
+
+
before
+
+
bevor, zuerst
+
+
+ + + +zuerst +first +premier + + +
ek
+
+
first
+
+
premier
+
+
zuerst
+
+
+
+ + +
bê tî ... azä wâ
+
+ + + + + + + + +wütend (sein) +furious (be) +s'énerver + + + + +
ek
+
+
furious
+
+
s'énerver
+
+
wütend (sein)
+
+ + +
0279
+
+
+
+ + +
kûkurû
+
+ + + + +Papagei +parrot +perroquet + + +
tl
+
+
Papagei
+
+
parrot
+
+
perroquet
+
+ +
1045
+
+
+
+ + +
dü pärä
+
+ + + + + + + + + + + +ein Ei legen +lay an egg +pondre + + +
ek
+
+
ein Ei legen
+
+
lay an egg
+
+
pondre
+
+ +
1080
+
+
+
+ + +
ngêrêrê
+
+ + + + +very slender +très mince + + +
tl
+
+
+ + + +very prominent +très proéminent + + + + +very high sound +voix très aiguë + +
+ + +
lîmo
+
+ + +
li.mɔ
+ +
3.1
+
+
+ + + +Bild, Zeichnung +picture, illustration, drawing +image, dessin + + +
ek
+
+
Bild, Zeichnung
+
+
+ + + +Film +film +film + + +
ek
+
+
film
+
+
film
+
+
Film
+
+
+
+ + +
kamâ-ôko
+
+ + + + + + +
ka.ma.ɔ.kɔ
+ +
1.3.3.1
+
+
+ + + +Einparteiensystem +one party system +parti unique, monopartisme + + +
ek
+
+
Einparteiensystem
+
+
+
+ + +
likundû
+
+ + + + +Seelen-Fresser +soul-eater +mangeur d'âmes + + +
tl
+
+
mangeur d'âmes
+
+
Seelen-Fresser
+
+
soul-eater
+
+ +
0918
+
+
+
+ + +
tene lisorö
+
+ + + + + + + + + + + + +plaudern +chat +causer + + +
tl
+
+
causer
+
+
chat
+
+
plaudern
+
+ + +
0438
+
+
+
+ + +
ndo kûê
+
+ + + + + + + + + + + +überall +everywhere +partout + +
Lo gi na ndo kûê ti wara nginza sô agirisa.
+ +
He looked everywhere to find the money that was lost.
+
+
+ + +
tl
+
+
everywhere
+
+
partout
+
+
überall
+
+ +
1645
+
+
+
+ + +
ngbëndä
+
+ + + + +Flasche +bottle +bouteille + + +
tl
+
+
bottle
+
+
bouteille
+
+
Flasche
+
+ +
0629
+
+
+
+ + +
hûnzi
+
+ + + + +beenden +finish +finir + + +
tl
+
+
beenden
+
+
finir
+
+
finish
+
+ +
1506
+
+
+ + + +eliminieren +eliminate +éliminer + +
mle-1587
+
+
+ + + +aufgebraucht, erschöpft +run out +épuisé + + +
ek
+
+
aufgebraucht, erschöpft
+
+
+
+ + +
wâ tî bëkpä
+
+ + + + + + + + +Blitz +lightning +éclair + + +
ek
+
+
Blitz
+
+
éclair
+
+
lightning
+
+ + +
1334
+
+
+
+ + +
pekô tî (gerê tî) (nyama)
+
+ + + + + + + + + + + + + + + + +die Spur (eines Tiers) verfolgen +track (animal) +trace (des pas d'animal) + + +
tl
+
+
die Spur (eines Tiers) verfolgen
+
+
trace (des pas d'animal)
+
+
track (animal)
+
+ + +
0778
+
+
+
+ + +
sara
+
+ + + + +jucken +itch +démanger + + +
ek
+
+
démanger
+
+
itch
+
+
jucken
+
+ +
i-290
+
+
+
+ + +
wâlï
+
+ + + + +Frau +woman +femme + + +
tl
+
+
femme
+
+
Frau
+
+
woman
+
+ + +
0329
+
+
+ + + +Ehefrau, Gattin +wife +femme, épouse +
Ehefrau, Gattin
+
+
wife
+
+ + +
0363
+
+
+ +weiblich +female +femelle + + + + +
ek
+
+
female
+
+
femelle
+
+
weiblich
+
+
+
+ + +
atorôno
+
+ + +
a.tɔ.ɾɔ.nɔ / a.tɔ.ɾɔ.ni / a.tɔ.ɾɔ.nu / a.trɔɔn
+ +
1.1.3.1 / 1.21
+
+
+ + + +Natronlauge, Backpulver +baking soda +natron + + +
ek
+
+
natron
+
+
Natronlauge, Backpulver
+
+
+
+ + +
pâta
+
+ + + + +Geldstück von 5 Fr. CFA, Kleingeld +5 franc piece CFA, change +pièce de 5 francs CFA, monnaie + + +
ek
+
+
Geldstück von 5 Fr. CFA, Kleingeld
+
+
+
+ + +
nyâön tî ngonda
+
+ + + + + + + + + + + + +Wildkatze +wild cat +chat sauvage, fauve + + +
tl
+
+
chat sauvage, fauve
+
+
Wildkatze
+
+ +
1021
+
+
+ + + +Ginsterkatze +genet +genette + + + + +
Genetta genetta
+
+ +
tl
+
+
genet
+
+
genette
+
+
Ginsterkatze
+
+ +
1023
+
+
+
+ + +
kötä pëmbë
+
+ + + + + + + + + + + + +Stockzahn +molar tooth +molaire + + +
tl
+
+
molaire
+
+
molar tooth
+
+
Stockzahn
+
+ +
0019
+
+
+
+ + +
do
+
+ + +
do
+ +
1
+
+
+ + + +Westen +west +ouest + + +
tl
+
+
ouest
+
+
west
+
+
Westen
+
+ +
1661
+
+
+
+ + +
kötä ngû sô asua
+
+ + + + + + + + + + + + + + + + +Fluss +river +rivière, fleuve + + +
tl
+
+
Fluss
+
+
river
+
+
rivière, fleuve
+
+ + +
1293
+
+
+
+ + +
hônde
+
+ + +
hɔ.ndɛ / hɔ.nde / ɔ.nde / wɔ.nde
+ +
3.1
+
+
+ + + +verstecken +hide something +cacher + + + + +
tl
+
+
cacher
+
+
hide something
+
+
verstecken
+
+ +
1472
+
+
+
+ + +
na töngö ndâ nî
+
+ + + + + + + + +am Anfang +in the beginning +au commencement + +
Na tongo nda ni, Nzapa asara yayu na sese. [sic] Gen. 1.1
+ +
In the beginning, God created the heavens and the earth. Gen. 1:1
+
+
+ + +
ek
+
+
am Anfang
+
+
+
+ + +
mâpa
+
+ + + + +Brot +bread +pain + + +
tl
+
+
bread
+
+
Brot
+
+
pain
+
+ +
0575
+
+
+
+ + +
gbôgbôlinda
+
+ + +
by extension from a mad person
+
+ +
gbo.gbo.li.nda
+ +
3.3.1.1
+
+
+ + + +Tollwut +rabies +rage + + +
ek
+
+
rabies
+
+
rage
+
+
Tollwut
+
+
+ + + +verrückte Person +mad person +(un) insensé + + +
tl
+
+
(un) insensé
+
+
mad person
+
+
verrückte Person
+
+ + +
0204
+
+
+
+ + +
balëôko
+
+ + + + + + +
ba.le.ɔ.kɔ
+ +
1.2.3.1
+
+
+ + + +zehn (10) +ten (10) +dix + + + + +
tl
+
+
dix
+
+
ten (10)
+
+
zehn (10)
+
+ +
1599
+
+
+
+ + +
yâ tî yângâ
+
+ + + + + + + + + + + + +Gaumen +palate +palais (de la bouche) + + +
tl
+
+
Gaumen
+
+
palais (de la bouche)
+
+
palate
+
+ +
0020
+
+
+
+ + +
kôbe tî ndâpërë
+
+ + + + + + + + + + + + +Frühstück +breakfast +petit déjeuner + + +
tl
+
+
breakfast
+
+
Frühstück
+
+
petit déjeuner
+
+ +
0579
+
+
+
+ + +
ngû
+
+ + + + +Wasser +water +eau + + + + +
tl
+
+
eau
+
+
Wasser
+
+
water
+
+ +
1284
+
+
+ + + +Bach +brook, stream +ruisseau + + +
ek
+
+
brook, stream
+
+ + +
1292
+
+
+ + + +See +lake +lac + + + +
1286
+
+
+
+ + +
pâta balëôko
+
+ + + + + + + + +fünfzig Franken +fifty francs +cinquante francs (5 x 10) + +
fünfzig Franken
+
fifty francs
+
cinquante francs (5 x 10)
+
+ + + + +
ek
+
+
fünfzig Franken
+
+
+
+ + +
ke yângâ
+
+ + + + + + + + + + + +nicht gehorchen, ungehorsam (sein) +disobey +désobéir + + +
ek
+
+
désobéir
+
+
disobey
+
+
nicht gehorchen, ungehorsam (sein)
+
+
+
+ + +
lando
+
+ + +
la.ndo
+ +
1.1
+
+
+ + + +Sumpf, Moor +marsh +marais, marécage + + +
ek
+
+ + +
1289
+
+
+ + + +Lichtung +open place, clearing +clairière + + +
1259
+
+
+ + + +Sportsplatz +sports field +terrain + + +
ek
+
+
Sportsplatz
+
+
terrain
+
+
+
+ + +
kâsa sô angbâ na finî
+
+ + + + +roh +raw, uncooked (be) +cru (viande) (être) + +
Wâ ayeke daä pëpe, nîlaâ ë te kâsa sô angbâ na finî.
+ +
There was no fire and so we ate raw meat.
+
Il n'y avait pas de feu, alors, nous avons mangé de la viande crue.
+
+
+
+
+ + +
mafüta tî bâlâwâ
+
+ + + + + + + + + + + +Kariténuss-Öl +shea nut oil +huile de karité + + +
ek
+
+
Kariténuss-Öl
+
+
+
+ + +
turûngu
+
+ + + + +Nabel +navel +nombril + + +
tl
+
+
Nabel
+
+
navel
+
+
nombril
+
+ +
0037
+
+
+
+ + +
Yingö-Gbïä
+
+ + + + + + + + + + + +Heiliger Geist +Holy Spirit +Saint-Esprit + + + + +
ek
+
+
Heiliger Geist
+
+
Saint-Esprit
+
+
+
+ + +
ngômbï
+
+ + +
ngo.mbi
+ +
3.2 / 1.1 [sam]
+
+
+ + + +Falte +crease +pli + +
mle-1169
+
+
+
+ + +
dongi
+
+ + +
???
+
+ + + +Fledermaus +bat +chauve-souris + + +
tl
+
+
bat
+
+
chauve-souris
+
+
Fledermaus
+
+ +
1019
+
+
+
+ + +
zîa sïönî yorö na yâ tî
+
+ + + + + + + + + + + + + + + + +vergiften (eine Person) +poison (a person) +empoisonner + + +
tl
+
+
empoisonner
+
+
poison (a person)
+
+
vergiften (eine Person)
+
+ +
0923
+
+
+
+ + +
ngâ
+
+ + + + +auch +also +aussi + +
Ë kûi nzara ngâ!
+ +
We are also starving!
+
+
+ +
ek
+
+
also
+
+
auch
+
+
aussi
+
+
+
+ + +
lâyenga
+
+ + + + +Sonntag +Sunday +dimanche + + +
ek
+
+
dimanche
+
+
Sonntag
+
+
Sunday
+
+
+
+ + +
tufa
+
+ + + + +Segen +blessings +bénédiction + + +
tl
+
+
bénédiction
+
+
blessings
+
+
Segen
+
+ + +
0913
+
+
+ + + +Segenswünsche +good wishes +bons vœux + + +
ek
+
+
Segenswünsche
+
+
+
+ + +
kôzo môlenge
+
+ + + + + + + + + + + + +Erstgeborene(r) +firstborn +premier-né + + +
tl
+
+
Erstgeborene(r)
+
+
firstborn
+
+
premier-né
+
+ + +
0353
+
+
+
+ + +
bätängö terê na yorö
+
+ + + + + + + + + + + + + + + + +mit einem Zauber schützen +protect by charm +protéger par fétiche + + +
tl
+
+
mit einem Zauber schützen
+
+
protect by charm
+
+
protéger par fétiche
+
+ + +
0925
+
+
+
+ + +
kângbi vundü
+
+ + + + + + + + +mitfühlen, Mitleid zeigen +empathize +avoir de la sympathie + +
Mitleid zeigen
+
empathize, share sorrow
+
avoir de la sympathie
+
+ + +
ek
+
+
empathize
+
+
mitfühlen, Mitleid zeigen
+
+
+ + + +kondolieren, trösten +condole, comfort +offrir les condoléances, consoler + + +
tl
+
+
condole, comfort
+
+
kondolieren, trösten
+
+
offrir les condoléances, consoler
+
+ +
0952
+
+
+
+ + +
pêrë
+
+ + + + +Stroh +straw +paille + + +
& i-729
+
+ +
ek
+
+
paille
+
+
straw
+
+
Stroh
+
+ +
1173
+
+
+ + + +Gras +grass +herbe + + +
tl
+
+
Gras
+
+
grass
+
+
herbe
+
+ +
1173
+
+
+ + + +Strohdach +thatch +chaume + + +
tl
+
+
chaume
+
+
Strohdach
+
+
thatch
+
+ + +
0688
+
+
+
+ + +
kârâkö
+
+ + +
ka.ɾa.ko
+ +
3.3.2
+
+
+ + + +Erdnuß +peanut, groundnut +arachide + + +
Arachis hypogaea
+
+ +
tl
+
+
arachide
+
+
Erdnuß
+
+
peanut, groundnut
+
+ +
1237
+
+
+
+ + +
sâra sî bê tî ... adë
+
+ + + + + + + + + + + + + + + + +besänftigen, befrieden +appease, pacify +apaiser + + +
tl
+
+
apaiser
+
+
appease, pacify
+
+
besänftigen, befrieden
+
+ +
0516
+
+
+
+ + +
yeke na ngo
+
+ + + + + + + + + + +schwanger (sein) +pregnant (be) +enceinte, en grossesse (être) + +
Wâlï nî ayeke na ngo. Fadë lo dü môlenge.
+ +
The woman is pregnant. She will give birth to a child.
+
+
+ + +
tl
+
+
(être) enceinte, en grossesse
+
+
pregnant
+
+
schwanger (sein)
+
+ + +
0241
+
+
+
+ + +
ndângbâ nî
+
+ + + + + + +letzter (sein) +last (be) +dernier (être) + +
Sô ndângbâ nî laâ. Fadë ï dü mbênî môlengê pëpe.
+ +
That is the last one. We will not give birth to another child.
+
+
+ + +
tl
+
+
(être) dernier
+
+
last
+
+
letzter (sein)
+
+ +
1626
+
+
+
+ + +
fâ lê tî (kârâkö)
+
+ + + + + + + + + + + + + + + + +schälen (Erdnüsse) +shell (groundnuts) +décortiquer (arachides) + + +
tl
+
+
décortiquer (arachides)
+
+
schälen (Erdnüsse)
+
+
shell (groundnuts)
+
+ +
0765
+
+
+
+ + +
wü pupu na ngangü
+
+ + + + + + + + + + + + + + + + +blasen, pusten +blow (with mouth) +souffler + + +
tl
+
+
blasen, pusten
+
+
blow (with mouth)
+
+
souffler
+
+ + +
0110
+
+
+
+ + +
watokua
+
+ + + + +Gesandter, Bote +messenger +émissaire, messager + + +
tl
+
+
émissaire, messager
+
+
Gesandter, Bote
+
+
messenger
+
+ +
0390
+
+
+ + + +Botschafter +ambassador +ambassadeur + + +
ek
+
+
ambassadeur
+
+
ambassador
+
+
Botschafter
+
+
+ + + +Apostel +apostle +apôtre + + +
ek
+
+
Apostel
+
+
apostle
+
+
apôtre
+
+
+
+ + +
kua tî nginza
+
+ + + + + + + + +bezahlte Arbeit +salaried job +emploie payé + + + + +
ek
+
+
bezahlte Arbeit
+
+
+
+ + +
kpâku
+
+ + + + +Rätsel +riddle +devinette + + +
ek
+
+
devinette
+
+
Rätsel
+
+
riddle
+
+
+
+ + +
sobîsi
+
+ + +
sɔ.bi.si
+ +
1.3.1
+
+
+ + + +Gonorrhö +gonorrhea +gonorrhée + + + + +
ek
+
+
gonorrhea
+
+
gonorrhée
+
+
Gonorrhö
+
+
+
+ + +
mamâ tî ngäsa
+
+ + + + + + + + + + + + +Geiß +she-goat, nanny goat +chèvre (femelle) + + +
tl
+
+
chèvre (femelle)
+
+
Geiß
+
+
she-goat, nanny goat
+
+ +
0967
+
+
+
+ + +
gaduru
+
+ + + + +Schwein +pig +cochon + + +
tl
+
+
cochon
+
+
pig
+
+
Schwein
+
+ +
0987
+
+
+
+ + +
kötä dû tî tênë
+
+ + + + + + + + + + + + +Höhle +cave +grotte + + +
tl
+
+
cave
+
+
grotte
+
+
Höhle
+
+ +
1270
+
+
+
+ + +
duti na ngîâ
+
+ + +frölich (sein) +happy, joyful, content (be) +heureux, joyeux, content (être) + + + +
0267
+
+
+
+ + +
dênge mê
+
+ + + + + + + + + + + + +zuhören +listen +écouter + + +
ek
+
+
écouter
+
+
listen
+
+
zuhören
+
+ +
0135
+
+
+
+ + +
sïönî yê
+
+ + + + +Defekt +fault, flaw +défaut + +
i-282
+
+
+
+ + +
dë na sêse
+
+ + + + + + + + + + + + +erbrechen +vomit +vomir + + +
tl
+
+
erbrechen
+
+
vomir
+
+
vomit
+
+ +
0233
+
+
+
+ + +
Amerîka
+
+ + + + +Amerika +America +Amérique + + +
ek
+
+
America
+
+
Amerika
+
+
Amérique
+
+
+
+ + +
tangë
+
+ + + + +(traditionelles)Bett +bed (traditional) +lit (traditionnel) + + +
ek
+
+
(traditionelles)Bett
+
+
bed (traditional)
+
+
lit (traditionnel)
+
+ +
0696
+
+
+
+ + +
ngubë
+
+ + + + +April +April +avril + + +
ek
+
+
April
+
+
April
+
+
avril
+
+
+
+ + +
asâra längö ...
+
+ + + + + + + + +vor...Tagen +...days ago +il y a...jours + +
Asâra längö ûse, e te kôbe pëpe.
+
+ + +
ek
+
+
vor...Tagen
+
+
+
+ + +
ndârâ
+
+ + + + +Spannung +tension +tension + +
mle-4794
+
+
+ + + +sehr steif +very stiff (be) +très rigide (être) + +
+ + +
kêrêrê
+
+ + + + +Schlüssel +key +clé + + +
ek
+
+
clé
+
+
key
+
+
Schlüssel
+
+
+
+ + +
wo bê
+
+ + + + + + + + +sich beruhigen +calm oneself +se calmer + + +
ek
+
+
calm oneself
+
+
se calmer
+
+
sich beruhigen
+
+ + +
0280
+
+
+
+ + +
da tî makongö sô lo gbîan terê tî lo na yâ nî
+
+ + + + + + + + + + + + + + + + + + + + +Puppe, Kokon +cocoon +cocon + + +
sl
+
+
cocon
+
+
cocoon
+
+
Puppe, Kokon
+
+ +
1152
+
+
+
+ + +
pîka gobo
+
+ + + + + + + + + + + +boxen +to box +boxer + + +
ek
+
+
boxen
+
+
boxer
+
+
+
+ + +
fûru
+
+ + + + +kneten +knead +pétrir, malaxer + + +
ek
+
+
knead
+
+
kneten
+
+
pétrir, malaxer
+
+ +
0601
+
+
+ + + +jemandem wehtun, verletzen +hurt someone +faire du mal à quelqu'un + + +
ek
+
+
jemandem wehtun, verletzen
+
+
+
+ + +
kötä körö
+
+ + + + + + + + +Tuberkulose +tuberculosis +tuberculose + + +
ek
+
+
tuberculose
+
+
tuberculosis
+
+
Tuberkulose
+
+
+
+ + +
bïkua ûse
+
+ + + + + + + + +Dienstag +Tuesday +mardi + + +
ek
+
+
Dienstag
+
+
mardi
+
+
Tuesday
+
+ + + + + +
+
+ + +
buzïi
+
+ + + + +Kerze +candle +bougie + + +
ek
+
+
bougie
+
+
candle
+
+
Kerze
+
+
+ + + +Bienenwachs +beeswax, bee-bread +cire d'abeille + + +
tl
+
+
beeswax, bee-bread
+
+
Bienenwachs
+
+
cire d'abeille
+
+ +
1155
+
+
+
+ + +
sô angoro ...
+
+ + + + +umgebend +surrounding, in the area +alentour + +
Âhötö sô angoro ë ayeke mingi.
+ +
The hills which surround us are many.
+
Les collines alentours sont nombreuses.
+
+
+ +
i-9
+
+
+
+ + +
yândo
+
+ + + + +Wildnis +wilderness +arrière-pays + + +
ek
+
+
arrière-pays
+
+
wilderness
+
+
Wildnis
+
+
+ + + +Wüste +desert +désert + + +
tl
+
+
desert
+
+
désert
+
+
Wüste
+
+ +
1256
+
+
+
+ + +
gbe tî dê
+
+ + + + + + + + + + + + +Unterschlupf, Schutzraum +shelter +abri + + +
tl
+
+
abri
+
+
shelter
+
+
Unterschlupf, Schutzraum
+
+ +
0684
+
+
+
+ + +
hûru
+
+ + + + +blasen, pusten +blow (with mouth) +souffler + + + + +
ek
+
+
blasen, pusten
+
+
blow (with mouth)
+
+
souffler
+
+ + +
0110
+
+
+
+ + +
kûkû
+
+ + + + +Falle +trap +piège + + +
tl
+
+
Falle
+
+
piège
+
+
trap
+
+ +
0791
+
+
+
+ + +
tënë tî bê
+
+ + + + + + + + +Meinung, Gefühle +opinion, feelings +opinion, sentiments + + +
ek
+
+
Meinung, Gefühle
+
+
+
+ + +
hë bîâ na gbe tî gô
+
+ + + + + + + + + + + + + + + + + + + + +summen +hum +fredonner, chantonner + + +
tl
+
+
fredonner, chantonner
+
+
hum
+
+
summen
+
+ +
0881
+
+
+
+ + +
tûutûu
+
+ + + + +Kuckuck +cuckoo +coucou + + +
ek
+
+
coucou
+
+
cuckoo
+
+
Kuckuck
+
+
+
+ + +
yâ nî ayeke sêngê
+
+ + + + + + + + + + +leer (sein) +empty (be) +vide (être) + +
Yâ nî ayeke sêngê. Fadë mo wara yê ôko da pëpe.
+ +
It is empty. You won't find anything inside.
+
+
+ + +
tl
+
+
(être) vide
+
+
empty
+
+
leer (sein)
+
+ +
0637
+
+
+
+ + +
birîki
+
+ + + + +Lehmstein, Lehmziegel, Adobe Ziegel +mud block, adobe brick +brique (en argile), brique adobe + + +
tl
+
+
brique (en argile), brique adobe
+
+
Lehmstein, Lehmziegel, Adobe Ziegel
+
+
mud block, adobe brick
+
+ +
0687
+
+
+
+ + +
dödö
+
+ + +
dɔ.dɔ
+ +
2.2
+
+
+ + + +Tanz +dance +danse + +
dance
+
+
dance
+
+
Tanz
+
+ +
0883
+
+
+
+ + +
mû zëndo
+
+ + + + + + + + + + + + +versprechen +promise +promettre + + +
ek
+
+
promettre
+
+
promise
+
+
versprechen
+
+
+ + + +entscheiden +decide +décider + + +
ek
+
+
decide
+
+
décider
+
+
entscheiden
+
+ + +
0288
+
+
+
+ + +
toto
+
+ + +
toto töngana (gaduru)
+ +
+ +
a toto
+ +
+ +
to.to
+ +
1.1
+
+
+ + + +weinen +cry +pleurer + +
Mû me na môlengê nî sï lo toto pëpe.
+ +
Nurse the child so he won't cry.
+
+
+ + +
tl
+
+
cry
+
+
pleurer
+
+
weinen
+
+ +
0272
+
+
+ + + +trauern +mourn +pleurer + +
Babâ akûi. I gue tî toto kûâ tî lo.
+ +
Father died. We are going to mourn his death.
+
+
+ + +
ek
+
+
mourn
+
+
pleurer
+
+
trauern
+
+
+ + + +klingen, ertönen +make a sound +résonner + +
Mbênî yê atoto!
+ +
Something made a sound.
+
+
+ + +
ek
+
+
klingen, ertönen
+
+
résonner
+
+
+ + + +Lärm +noise +bruit + +
Ï mä toto tî lo sï ï gä.
+ +
We heard the noise he made so we came.
+
+
+ + +
ek
+
+
bruit
+
+
Lärm
+
+
noise
+
+ +
1327
+
+
+ + + +zischen +hiss +siffler (reptile) + +
Ngbö sô asûku terê tî lo alîngbi tî toto ngâ.
+ +
That snake that can puff itself up can also hiss.
+
+
+ + +
tl
+
+
hiss
+
+
siffler (reptile)
+
+
zischen
+
+ +
1116
+
+
+ + + +brummen, knurren +grunt +grogner + +
Mbï mä mbênî gaduru atoto.
+ +
I heard a pig grunt.
+
+
+ + +
tl
+
+
brummen, knurren
+
+
grogner
+
+
grunt
+
+ +
1039
+
+
+ + + +knurren +growl +gronder, grogner + +
Mbênî mbo atoto na ngonzo.
+ +
A dog growled in anger.
+
+
+ + +
ek
+
+
growl
+
+
knurren
+
+
+ + + +krähen (Hahn) +crow (rooster) +chanter (coq) + +
Kôli kôndo atoto. A lîngbi ï löndö hîo tî gue.
+ +
The cock is crowing. We must rise quickly to go.
+
+
+ + +
tl
+
+
chanter (coq)
+
+
crow (rooster)
+
+
krähen (Hahn)
+
+ +
1078
+
+
+ + + +bedauern +be sorry about, miss +regretter + +
i-859
+
+
+
+ + +
mbângö
+
+ + +
???
+
+ + + +März +March +mars + + +
ek
+
+
March
+
+
mars
+
+
März
+
+
+
+ + +
bengbä
+
+ + + + +rot (sein) +red (be) +rouge (être) + +
Mênë a ke bengbä. [lb]
+ +
Blood is red
+
Le sang est rouge
+
+
+ + +
tl
+
+
(être) rouge
+
+
red
+
+
rot (sein)
+
+ +
1557
+
+
+ + + +rosa (sein) +pink (be) +rose (être) + +
Sô bengbä kongö laâ.
+ +
Es ist eine rosa Blume.
+
That flower is rose-colored.
+
C'est une fleur rose.
+
+
+ + +
ek
+
+
rosa (sein)
+
+
+ + + +orange (sein) +orange (be) +orange (être) + +
Bengbä mafüta abuba bongo ti zo.
+ +
palm oil [lit. red oil] stains peoples' clothing.
+
huile de palme
+
+
+ + +
ek
+
+
orange (sein)
+
+
+ +rostbraun (sein) +red-brown (be) +marron (être) + +
Âmbênî ngbä ayeke bengbä.
+ + +
+ + +
ek
+
+
rostbraun (sein)
+
+
+ +braun (sein) +brown (be) +brun (être) + +
Sô bengbä sêse laâ.
+ +
Das ist brauner Dreck.
+
That is brown dirt.
+
C'est de la saleté brune.
+
+
+ + +
ek
+
+
(être) brun
+
+
braun (sein)
+
+
brown
+
+ +
1560
+
+
+
+ + +
matânga tî lüngö-kûâ
+
+ + + + + + + + + + + + + + + + +Begräbnis (zur Zeit des Todes) +funeral (at occasion of death) +funérailles (à l'occasion de la mort) + + +
tl
+
+
Begräbnis (zur Zeit des Todes)
+
+
funérailles (à l'occasion de la mort)
+
+
funeral (at occasion of death)
+
+ +
0949
+
+
+
+ + +
gbikï
+
+ + + + +Schweiß +perspiration +sueur + + +
ek
+
+
perspiration
+
+
Schweiß
+
+
sueur
+
+ +
i-974
+
+
+
+ + +
na ndo tî
+
+ + + + + + + + +an der Stelle, am Ort +at +à l'endroit où + +
Zîa ï sâra ngîâ na ndo tî pïkängö ndembë
+ +
Let us play at the soccer field.
+
+
+ + +
ek
+
+
an der Stelle, am Ort
+
+
at
+
+
+
+ + +
mû pekô tî (nyama)
+
+ + + + + + + + + + + + + + + +verfolgen +stalk +traquer + + +
tl
+
+
stalk
+
+
traquer
+
+
verfolgen
+
+ + +
0776
+
+
+
+ + +
rumbatêe
+
+ + + + +täuschen, Finte machen +fool, feint +feinter, dribbler + + + + +
ek
+
+
feinter, dribbler
+
+
fool, feint
+
+
täuschen, Finte machen
+
+
+
+ + +
tongoro
+
+ + +
to.ngo.ɾo
+ +
1.1.1
+
+
+ + + +Stern +star +étoile + + +
tl
+
+
étoile
+
+
star
+
+
Stern
+
+ +
1322
+
+
+
+ + +
pekô tî kä
+
+ + + + + + + + + + + + +Narbe +scar +cicatrice + + +
tl
+
+
cicatrice
+
+
Narbe
+
+
scar
+
+ +
0222
+
+
+
+ + +
+
+ + + + + + + +sagen +say +prononcer, dire + + +
ek
+
+
sagen
+
+
say
+
+
+
+ + +
kötä sakpä tî wên
+
+ + + + +Käfig +cage +cage + +
mle-0719
+
+
+
+ + +
bôngbi tî (ânyama)
+
+ + + + + + + + + + + + +Herde (Vieh, Schafe) +herd (cattle), flock (sheep) +troupeau (bœufs, moutons) + + +
tl
+
+
herd (cattle), flock (sheep)
+
+
Herde (Vieh, Schafe)
+
+
troupeau (bœufs, moutons)
+
+ + +
0768
+
+
+
+ + +
kûku
+
+ + +
"secret" fr Lingala kc
+
+ + + +sich beugen +bow +se baisser + + + + +
ek
+
+
bow
+
+
se baisser
+
+
sich beugen
+
+ + +
0173
+
+
+
+ + +
wahânda
+
+ + + + +Lügner, Betrüger +liar, deceiver +menteur, trompeur + + +
ek
+
+
Lügner, Betrüger
+
+
trompeur
+
+ +
mle-2809
+
+
+
+ + +
butuma
+
+ + +
le
+
+ + + +verrückt, drunter und drüber +immoderately, wildly +sans restreint, pêle-mêle + +
Na matânga nî, âla nyön sämba butuma.
+ +
At the party, they drank immoderately.
+
A la fête, ils ont bu sans sans contrainte.
+
+
+ + +
ek
+
+
crazy
+
+
pêle-mêle
+
+
verrückt, drunter und drüber
+
+
+
+ + +
gä ndurü
+
+ + + + + + + + + + + +näher kommen +come close, approach +s'approcher + +
Gä ndurü na mbi.
+ +
Come close to me.
+
+
+ + +
ek
+
+
come close, approach
+
+
näher kommen
+
+
s'approcher
+
+ +
1401
+
+
+ + + +gerade etwas tun wollen +be about to +être sur le point de + +
Kôbe agä ndurü tî hûnzi.
+ +
The food is almost finished.
+
+
+ +
ek
+
+
gerade etwas tun wollen
+
+
+
+ + +
sên
+
+ + + + +Unkraut +weeds +mauvaises herbes + + +
ek
+
+
mauvaises herbes
+
+
Unkraut
+
+
weeds
+
+ +
1176
+
+
+
+ + +
Zâmani
+
+ + + + +Deutschland +Germany +Allemagne + + +
ek
+
+
Allemagne
+
+
Deutschland
+
+
Germany
+
+
+
+ + +
hüngö
+
+ + + + + +
hu.ngɔ / wu.ngɔ
+ +
2.2
+
+
+ + + +Zahl +number +nombre + + +
ek
+
+
nombre
+
+
number
+
+
Zahl
+
+
+
+ + +
suali
+
+ + + + +Kamm +comb +peigne + + +
tl
+
+
comb
+
+
Kamm
+
+
peigne
+
+ +
0567
+
+
+
+ + +
föndo
+
+ + +
???
+
+ + + +Juni +June +juin + + +
ek
+
+
juin
+
+
June
+
+
Juni
+
+
+
+ + +
yeke ôko
+
+ + + + + + +gleich (-wertig/-rangig) (sein) +equal (be) +égal (être) + +
Nzërëngö tî nyama tî bâgara na tî nyama tî ngäsa ayeke ôko
+ +
The tastyness of beef and goat meat is equal.
+
+
+ + +
tl
+
+
(être) égal
+
+
equal
+
+
gleich (-wertig/-rangig) (sein)
+
+ +
1633
+
+
+
+ + +
ömba
+
+ + + + + +
???
+
+ + + +Tante väterlicherseits +paternal aunt (father's sister) +tante paternelle + + +
tl
+
+
aunt (paternal)
+
+
tante paternelle
+
+
Tante väterlicherseits
+
+ + +
0351
+
+
+
+ + +
dênge terê
+
+ + + + + + + + +ausweichen, zur Seite treten +make way +céder le passage + + +
ek
+
+
ausweichen, zur Seite treten
+
+
+
+ + +
bïkua otâ
+
+ + + + + + + + +Mittwoch +Wednesday +mercredi + + +
ek
+
+
mercredi
+
+
Mittwoch
+
+
Wednesday
+
+ + + + + +
+
+ + +
kêtê gûî
+
+ + + + + + + + + + + + +Kartoffel +potato +pomme de terre + + +
sl
+
+
Kartoffel
+
+
pomme de terre
+
+
potato
+
+ +
1231
+
+
+
+ + +
na höndëngö
+
+ + + + + + + + +heimlich +secretly +en cachette + +
Lo längö na wâli nî na höndëngö nî.
+ +
He slept with the woman secretly.
+
+
+ + +
ek
+
+
heimlich
+
+
secretly
+
+
+
+ + +
gbä
+
+ + + + +umsonst +in vain +vainement + +
Lo hâ gbä tî wâra nginza nî.
+ +
He tried in vain to get the money.
+
+
+ + +
ek
+
+
umsonst
+
+
vainement
+
+
+
+ + +
pörö
+
+ + +
pɔ.ɾɔ
+ +
2.2
+
+
+ + + +Präservativ +condom +préservatif + + +
ek
+
+
condom
+
+
Präservativ
+
+
préservatif
+
+
+
+ + +
kaziêe
+
+ + + + +Kiste (mit Flaschen) +case (of bottles) +casier (à bouteilles) + + +
ek
+
+
Kiste (mit Flaschen)
+
+
+
+ + +
kpângbârâ
+
+ + + + + + +flach (sein) +flat (be) +plat (être) + +
Ndo nî ayeke kpângbârâ mîngi. Hötö ayeke daä pëpe.
+ +
The place is very flat. There are no hills.
+
+
+ + +
tl
+
+
(être) plat
+
+
flach (sein)
+
+
flat
+
+ + +
1525
+
+
+
+ + +
kötä
+
+ + +
ko.ta
+ +
2.2
+
+
+ + + +groß (sein) +big (be) +grand, gros (être) + +
Bangui ayeke kötä ködörö bîanî!
+ +
Bangui is indeed a big town!
+
+
+ + +
tl
+
+
(être) grand, gros
+
+
big
+
+
groß (sein)
+
+ +
1507
+
+
+ + + +wichtig (sein) +important (be) +important (être) + +
Tënë tî birä ayeke kötä tënë bîanî.
+ +
The matter of war is indeed an important problem.
+
+
+ + +
ek
+
+
(être) important
+
+
important
+
+
wichtig (sein)
+
+ +
1586
+
+
+
+ + +
gôro
+
+ + +
gɔ.ɾɔ / go.ɾo
+ +
3.1
+
+
+ + + +Korruption +corruption +corruption + + + + +
ek
+
+
corruption
+
+
corruption
+
+
Korruption
+
+
+
+ + +
+
+ + + + +verklagen, verleumden +slander, denounce +calomnier, dénoncer + + + + +
ek
+
+
calomnier, dénoncer
+
+
slander, denounce
+
+
verklagen, verleumden
+
+ +
0463
+
+
+
+ + +
zîa na terê tî
+
+ + + + + + + + + + + + +sich lehnen (gegen) +lean against (intr) +s'appuyer (contre), s'adosser + + +
tl
+
+
lean against (intr)
+
+
s'appuyer (contre), s'adosser
+
+
sich lehnen (gegen)
+
+ +
0171
+
+
+
+ + +
dëmängö terê
+
+ + + + +Protest +clamor, protest +clameur + +
i-190
+
+
+
+ + +
hôle susu na gürü tî wâ
+
+ + + + +Fisch räuchern +smoke fish +fumer le poisson + +
+ + +
goigôî
+
+ + +
zo tî goigôi originally
+
+ + + + +
gɔi.gɔi
+ +
11.33
+
+
+ + + +faul (sein) +lazy (be) +paresseux (être) + +
Âmôlengê sô ayeke goigôi mîngi.
+
+ + +
& mle
+
+ +
tl
+
+
(être) paresseux
+
+
faul (sein)
+
+
lazy
+
+ +
0313
+
+
+
+ + +
yangö
+
+ + + + +Angelschnur +hook +hameçon + + +
ek
+
+
Angelschnur
+
+
hameçon
+
+
hook
+
+ + +
0804
+
+
+
+ + +
wahöngö-zo
+
+ + + + +Mörder +killer +assassin + + +
ek
+
+
assassin
+
+
killer
+
+
Mörder
+
+
+
+ + +
kizamä
+
+ + + + +Prüfung, Examen +exam +examen + + +
ek
+
+
exam
+
+
examen
+
+
Prüfung, Examen
+
+
+
+ + +
kötä ngû-îngö
+
+ + + + + + + +Meer, Ozean +ocean, sea +océan, mer + + +
tl
+
+
Meer, Ozean
+
+
océan, mer
+
+
ocean, sea
+
+ + +
1285
+
+
+
+ + +
ngonzo tî ngbö
+
+ + + + + + + + + + + + +Gift (einer Schlange) +venom (of snake) +venin (de serpent) + + +
tl
+
+
Gift (einer Schlange)
+
+
venin (de serpent)
+
+
venom (of snake)
+
+ +
1111
+
+
+
+ + +
bê tî pärä
+
+ + + + + + + + + + + +Eigelb +yolk (of egg) +jaune d'œuf + + +
tl
+
+
Eigelb
+
+
jaune d'œuf
+
+
yolk (of egg)
+
+ +
1068
+
+
+
+ + +
vâlä
+
+ + + + +Schild +shield +bouclier + + +
tl
+
+
bouclier
+
+
Schild
+
+
shield
+
+ + +
0873
+
+
+
+ + +
tara
+
+ + + + +versuchen +try +essayer + + +
tl
+
+
essayer
+
+
try
+
+
versuchen
+
+ +
0296
+
+
+ + + +schmecken +taste +goûter + + +
tl
+
+
goûter
+
+
schmecken
+
+
taste
+
+ +
0139
+
+
+
+ + +
su
+
+ + + + +saugen, lutschen +suck +sucer + + +
tl
+
+
saugen, lutschen
+
+
sucer
+
+
suck
+
+ +
0148
+
+
+ + + +schlecken +lick +lécher + + +
tl
+
+
lécher
+
+
lick
+
+
schlecken
+
+ +
0147
+
+
+
+ + +
mbö
+
+ + +
mbo / mboo
+ +
2 / 31
+
+
+ + + +Atem +breath +souffle, haleine + + +
ek
+
+
Atem
+
+
breath
+
+
souffle, haleine
+
+ + +
0092
+
+
+
+ + +
gbë lïngö
+
+ + + + + + + + +durch einen Pakt verbinden +unite by pact, plot +s'unir par un pacte + + +
ek
+
+
durch einen Pakt verbinden
+
+
+
+ + +
gbânda
+
+ + + + + + + + + + + +Netz +net +filet + + +
ek
+
+
filet
+
+
net
+
+
Netz
+
+
+ + + +Jadgnetz, Netz für die Jagd +hunting net +filet de chasse + + +
tl
+
+
filet de chasse
+
+
hunting net
+
+
Jadgnetz, Netz für die Jagd
+
+ +
0789
+
+
+
+ + +
ndûmbu
+
+ + +
possibly from Lingala bolûmbû? kc
+
+ + + +nackt (sein) +naked (be) +nu (être) + +
Lo yeke ndûmbu tëtî lo yê tî sukûla ngû.
+ +
He is naked because he wants to bathe.
+
+
+ + +
tl
+
+
(être) nu
+
+
nackt (sein)
+
+
naked
+
+ + +
0540
+
+
+
+ + +
sêngê zo
+
+ + + + + + + + +Habenichts, unbedeutende Person +person of no means, unimportant person +personne simple, sans ressource + + +
ek
+
+
Habenichts, unbedeutende Person
+
+
+
+ + +
ngû tî kâsa
+
+ + + + +Soße +sauce +sauce + +
i-921
+
+
+
+ + +
dabê
+
+ + + + + + + + + + + + +sich erinnern +remember +se souvenir, se rappeler + +
Mbï dabê (tî) mbï (na tënë nî).
+ +
I remember the matter.
+
+
+ + +
tl
+
+
remember
+
+
se souvenir, se rappeler
+
+
sich erinnern
+
+ +
0265
+
+
+ + + +erinnern +remind +rappeler + +
Lo dabê (tî) âla (na tënë nî). [sam]
+ +
He reminded them of that matter.
+
+
+
erinnern
+
+
rappeler
+
+
remind
+
+
+
+ + +
âyê tî âkötarä
+
+ + + + + + + + + + + + +Sitten, Bräuche +customs, traditions +coutumes traditionnelles + + +
ek
+
+
Sitten, Bräuche
+
+
+
+ + +
gbîan yâ tî âyê
+
+ + + + + + + + + + + + + + + + +mischen +mix +mélanger + + +
tl
+
+
mélanger
+
+
mischen
+
+
mix
+
+ +
0596
+
+
+
+ + +
tôngbi
+
+ + +
to.ngbi
+ +
3.1
+
+
+ + + +erregen +stimulate, wind up, get excited +exciter (pousser à) + +
lb
+
+ +
i-388
+
+
+
+ + +
pëtë
+
+ + + + +geflochtene Haare +hair braid +tresse de cheveux + + +
ek
+
+
geflochtene Haare
+
+
+
+ + +
+
+ + +
+ +
3
+
+
+ + + +Herz +heart +cœur + + + + +
tl
+
+
cœur
+
+
heart
+
+
Herz
+
+ +
0082
+
+
+ + + +Leber +liver +foie + + +
ek
+
+
foie
+
+
Leber
+
+
liver
+
+ +
0083
+
+
+
+ + +
na yâ tî
+
+ + + + + + + + +drinnen +inside +dedans + +
Na yâ tî da nî, fadë mo bâa ngbâ tî asembë.
+ +
Inside the house, you will see lots of dishes.
+
+
+ + +
tl
+
+
dedans
+
+
drinnen
+
+
inside
+
+ +
1673
+
+
+ + + +in/im +in +dans + +
Âla lï na yâ tî da.
+ +
They entered into the house.
+
+
+ + +
ek
+
+
dans
+
+
in
+
+
in/im
+
+
+ + + +innerhalb +within (time) +dans (temps) + +
Fadë lo sï na yâ tî ngbonga ôko.
+ +
He will arrive within one hour.
+
+
+ +
ek
+
+
innerhalb
+
+
+
+ + +
zambala
+
+ + + + +Kamel +camel +chameau + + +
tl
+
+
camel
+
+
chameau
+
+
Kamel
+
+ +
0981
+
+
+
+ + +
bê tî ... ayeke ndurü
+
+ + + + + + + + + +ungeduldig (sein) +impatient (be) +impatient (être) + +
Zo nî ayê tî kü pëpe, bê tî lo ayeke ndurü.
+ +
The person does not want to wait, he is impatient.
+
+
+ + +
tl
+
+
(être) impatient
+
+
impatient
+
+
ungeduldig (sein)
+
+ +
0315
+
+
+
+ + +
balëûse na osïö
+
+ + + + +vierundzwanzig (24) +twenty-four (24) +vingt-quatre (24) + +
twenty-four (24)
+
+
vierundzwanzig (24)
+
+
vingt-quatre (24)
+
+ +
chan_02
+
+
+
+ + +
te
+
+ + + + +essen +eat +manger + + +
tl
+
+
eat
+
+
essen
+
+
manger
+
+ + +
0140
+
+
+ + + +beißen +bite +mordre + +
Mbo ate mabôko tî babâ.
+ +
A dog bit father's hand.
+
+
+ + +
tl
+
+
beißen
+
+
bite
+
+
mordre
+
+ + +
0141
+
+
+
+ + +
sâra fono
+
+ + + + + + + + + + + +spazieren +take a walk +se promener + + +
ek
+
+
spazieren
+
+
+
+ + +
yê tî kä na pekô tî wâlï
+
+ + + + + + + + +Brautpreis, Mitgift +dowry +dot + + + + +
ek
+
+
Brautpreis, Mitgift
+
+
dot
+
+
dowry
+
+ +
0942
+
+
+
+ + +
ngûlê
+
+ + + + + + + +Tränen +tears +larmes + + +
tl
+
+
larmes
+
+
tears
+
+
Tränen
+
+ +
0097
+
+
+
+ + +
sango ti lêgë
+
+ + + + + + + + + + + + +
sa.ngo ti lɛ.gɛ
+ +
1.1 3 3.2
+
+
+ + + +Gerücht +rumor +rumeur + +
+ + +
tâkâ
+
+ + + + +zuerst, original +first, original +tout premier, originel + + +
ek
+
+
zuerst, original
+
+
+
+ + +
dutï
+
+ + + + +sich setzen +sit +s'asseoir + + + + +
tl
+
+
s'asseoir
+
+
sich setzen
+
+
sit
+
+ + +
0150
+
+
+ + + +sitzen +seated (be) +assis (être) + + +
tl
+
+
(être) assis
+
+
seated
+
+
sitzen
+
+ +
0174
+
+
+ + + +bleiben +stay +rester + + +
ek
+
+
bleiben
+
+
rester
+
+
stay
+
+
+
+ + +
hön ndê
+
+ + + + + + + + +in eine andere Richtung gehen +go a different way +aller dans un autre sens + + + + +
ek
+
+
in eine andere Richtung gehen
+
+
+
+ + +
tûku ngû na yâ tî ... sï ngangü nî awôko
+
+ + + + +verdünnen +dilute +diluer + +
Tûku ngû na yâ tî samba sï ngangü nî awôko.
+ +
Pour water into the wine to dilute it.
+
Versez de l'eau dans le vin pour le diluer.
+
+
+ + +
mle-1376
+
+
+
+ + +
sâra ngangü
+
+ + + + +gewalttätig (sein) +violent (be) +violent (être) + +
mle-5160
+
+
+
+ + +
bîrï na bï
+
+ + + + +letzte Nacht +last night +nuit dernière + +
Bîrï na bï, zo anzï kârâkö tî mbï.
+ +
Last night, someone stole my peanuts.
+
La nuit dernière, quelqu'un a volé mes arachides.
+
+
+ +
mle-2747
+
+
+
+ + +
likünï
+
+ + + + + + + +Knie +knee +genou + + +
tl
+
+
genou
+
+
knee
+
+
Knie
+
+ +
0066
+
+
+
+ + +
mbürü tî wâ
+
+ + + + + + + + +Asche +ashes +cendre + + +
ek
+
+
Asche
+
+
ashes
+
+
cendre
+
+ +
1312
+
+
+
+ + +
yingö tî ... ahön
+
+ + + + + + +bewußtlos (sein) +unconscious (be) +sans connaissance (être) + + + + +
ek
+
+
bewußtlos (sein)
+
+
+ + + +ohnmächtig werden +faint +tomber évanoui + + +
ek
+
+
faint
+
+
ohnmächtig werden
+
+
tomber évanoui
+
+ + +
0127
+
+
+
+ + +
kûkurû
+
+ + + + +August +August +août + + +
ek
+
+
août
+
+
August
+
+
August
+
+
+
+ + +
ëkâe
+
+ + + + +Schuppe (Fisch) +fish-scale +écaille + + +
tl
+
+
écaille
+
+
fish-scale
+
+
Schuppe (Fisch)
+
+ +
1088
+
+
+
+ + +
mabôko
+
+ + +
ma.bɔ.kɔ
+ +
1.3.1
+
+
+ + + +Hand +hand +main + + + + +
tl
+
+
hand
+
+
Hand
+
+
main
+
+ +
0056
+
+
+ + + +Arm +arm +bras + + +
tl
+
+
arm
+
+
Arm
+
+
bras
+
+ +
0050
+
+
+ + + +Vorderarm, Unterarm +forearm, +avant-bras + + +
tl
+
+
avant-bras
+
+
forearm,
+
+
Vorderarm, Unterarm
+
+ +
0054
+
+
+ + + +Oberarm +upper arm +bras supérieur + + +
tl
+
+
bras supérieur
+
+
Oberarm
+
+
upper arm
+
+ +
0052
+
+
+ + + +Griff +handle +poignée, manche, anse + + +
tl
+
+
Griff
+
+
handle
+
+
poignée, manche, anse
+
+ +
0631
+
+
+
+ + +
ngundë
+
+ + + + +Krokodil +crocodile +crocodile + + +
Crocodylus spp.
+
+ +
tl
+
+
crocodile
+
+
crocodile
+
+
Krokodil
+
+ +
1105
+
+
+
+ + +
yongo
+
+ + +
from
+
+ + +
from Lingala
+
+
+ + + +Schulden +debt +dette + + +
tl
+
+
debt
+
+
dette
+
+
Schulden
+
+ +
0834
+
+
+ + + +Pflicht, Verpflichtung +obligation +obligation + + + +
0499
+
+
+
+ + +
gi këkë (tî) wâ
+
+ + + + + + + + + + + + + + + + +(Brennholz) holen +fetch (firewood) +chercher des fagots + + +
tl
+
+
(Brennholz) holen
+
+
chercher des fagots
+
+
fetch (firewood)
+
+ +
0739
+
+
+
+ + +
ndüngö terê yeke yeke
+
+ + + + + + + + + + + + + + + + +streicheln, liebkosen +caress +caresser + + +
tl
+
+
caress
+
+
caresser
+
+
streicheln, liebkosen
+
+ +
0485
+
+
+
+ + +
ködä
+
+ + +
ko.da
+ +
2.2
+
+
+ + + +Schulden +debt +dette + + + + +
tl
+
+
debt
+
+
dette
+
+
Schulden
+
+ +
0834
+
+
+
+ + +
zo tî kêtê ködrö
+
+ + + + + + + + + + + + + + + +Buschbewohner (in) +bush dweller +habitant de la brousse, campagnard + + +
tl
+
+
Buschbewohner (in)
+
+
bush dweller
+
+
habitant de la brousse, campagnard
+
+ +
0528
+
+
+
+ + +
gbötöngö ôtoro
+
+ + + + + + + + +Honig sammlung +honey collection +extraction du miel + + +
ek
+
+
Honig sammlung
+
+
+
+ + +
këkë
+
+ + + + +Baum +tree +arbre + + + + +
& i-69
+
+ +
tl
+
+
arbre
+
+
Baum
+
+
tree
+
+ +
1158
+
+
+ + + +Holz +wood +bois + + +
tl
+
+
bois
+
+
Holz
+
+
wood
+
+ +
0712
+
+
+ + + +Stock +stick +bâton + + +
ek
+
+
bâton
+
+
stick
+
+
Stock
+
+ +
i-69
+
+
+ + + +Stengel, Stamm +stalk, trunk +tronc + + +
ek
+
+
stalk, trunk
+
+
Stengel, Stamm
+
+
tronc
+
+ +
1179
+
+
+
+ + +
na lörö
+
+ + + + + + + + +schnell, hastig +quickly, hastily +à la hâte + +
Lo te kôbe na lörö tëtî nzara asâra lo.
+ +
He ate quickly because he was hungry.
+
+
+ + +
ek
+
+
schnell, hastig
+
+
+
+ + +
ûse biröo
+
+ + + + + + + + +Geliebte +mistress +maîtresse + + +
ek
+
+
Geliebte
+
+
maîtresse
+
+
mistress
+
+
+
+ + +
ndâ tî tënë
+
+ + + + + + + + +Bedeutung +meaning +sens + + +
ek
+
+
Bedeutung
+
+
meaning
+
+
sens
+
+ +
0432
+
+
+
+ + +
ngôngbi
+
+ + +
ngo.ngbi
+ +
3.1
+
+
+ + + +aufwickeln (Seil) +coil (rope) +enrouler + + + +
1442
+
+
+ + + +falten +fold +plier + + +
1441
+
+
+
+ + +
barâsi
+
+ + + + +Meter +meter (unit of distance) +mètre, brassée + + +
ek
+
+
Meter
+
+
+
+ + +
sâra ngangü na ...
+
+ + + + + + + + + + + +angreifen, mishandeln +attack, maltreat +agresser, brutaliser + + +
ek
+
+
angreifen, mishandeln
+
+
+
+ + +
lêmbëtï
+
+ + + + +Seite +page +page + + +
ek
+
+
page
+
+
page
+
+
Seite
+
+
+
+ + +
fa lêgë na (bôngbi tî ânyama)
+
+ + + + + + + + + + + + + + + + +hüten (Vieh, Schafe) +herd, tend (cattle, sheep) +mener, conduire (troupeau) + + +
tl
+
+
herd, tend (cattle, sheep)
+
+
hüten (Vieh, Schafe)
+
+
mener, conduire (troupeau)
+
+ + +
0769
+
+
+
+ + +
kpëngö mbeto pëpe
+
+ + + + +Indiskretion +tactlessness, indiscretion +indiscrétion + +
i-530
+
+
+
+ + +
zo tî wätäkä
+
+ + + + +Lügner +liar +menteur + +
mle-2809
+
+
+
+ + +
hölëngö ndurü mapa
+
+ + + + +crust +croûte + + +
0576
+
+
+
+ + +
sâra sî li tî ... akpë
+
+ + + + +erstaunen +amaze, astonish +étonner, s'étonner + +
sc
+
+ +
i-379
+
+
+
+ + +
gbôto na tï tî
+
+ + + + + + + + + + + + +ergreifen, schnappen +snatch, seize +saisir, arracher + + +
tl
+
+
ergreifen, schnappen
+
+
saisir, arracher
+
+
snatch, seize
+
+ +
1423
+
+
+
+ + +
peyêe
+
+ + + + +bezahlen +pay +payer + + +
ek
+
+
bezahlen
+
+
pay
+
+
payer
+
+ +
0828
+
+
+
+ + +
kôzonî
+
+ + +
kɔ.zɔ.ni
+ +
3.1.3
+
+
+ + + +zuerst, erstens +first +d'abord, premièrement + +
Kôzonî mo te kôbe. Na pekônî mo längö.
+ +
Eat first. Then go to sleep.
+
+
+ + +
ek
+
+
first
+
+
zuerst, erstens
+
+
+ + + +bevor +before +avant + +
Kôjonî, wâ ayeke daä äpe.
+ +
Before, there was no electricity.
+
+
+ + +
1354
+
+
+
+ + +
dawän
+
+ + + + + + + + + +vor +in front of +devant +
devant
+
+
vor
+
+
+
+ + +
alëe
+
+ + + + +Nachkomme +descendant +descendant + + +
tl
+
+
descendant
+
+
descendant
+
+
Nachkomme
+
+ +
0354
+
+
+
+ + +
bambü
+
+ + +
was këkë tî pekë
+
+ + + + + + +Raffiapalme +raffia palm +raphia + + +
tl
+
+
raffia palm
+
+
Raffiapalme
+
+
raphia
+
+ + +
1170
+
+
+
+ + +
serême
+
+ + + + +BH +bra +soutien-gorge + + +
ek
+
+
BH
+
+
bra
+
+
soutien-gorge
+
+
+
+ + +
wasöngö
+
+ + + + +Retter, Erlöser +savior +sauveur + + +
ek
+
+
Retter, Erlöser
+
+
sauveur
+
+
savior
+
+
+
+ + +
sangbi-lêgë
+
+ + + + + + + +Kreuzung +crossroads, intersection +croisement, carrefour + + +
tl
+
+
croisement, carrefour
+
+
crossroads, intersection
+
+
Kreuzung
+
+ +
0849
+
+
+ + + +Verzweigung, Strassengabelung +fork (in path) +bifurcation (de la route) + + + +
0848
+
+
+
+ + +
palâta
+
+ + + + +Narbe von Hautkrankheit +scar from skin disease +tache sur la peau + + +
ek
+
+
Narbe von Hautkrankheit
+
+
+
+ + +
biö
+
+ + +
bi.o
+ +
1.2
+
+
+ + + +Knochen +bone +os + + +
tl
+
+
bone
+
+
Knochen
+
+
os
+
+ +
0074
+
+
+
+ + +
sûkere
+
+ + + + +Zucker +sugar +sucre + + +
ek
+
+
sucre
+
+
sugar
+
+
Zucker
+
+
+
+ + +
kate
+
+ + + + +Brustkorb, Brust +chest +poitrine + + + + +
tl
+
+
Brustkorb, Brust
+
+
chest
+
+
poitrine
+
+ +
0033
+
+
+ + + +Körperseite, Körperhälfte +side (of body) +côté (du corps), flanc + + +
tl
+
+
côté (du corps), flanc
+
+
Körperseite, Körperhälfte
+
+
side (of body)
+
+ + +
0035
+
+
+
+ + +
fânî
+
+ + + + +-mal (in Verbindung mit einer Zahl) +time(s) +fois + +
mal, gefolgt von einer Nummer
+
time(s), occurance(s), followed by a number
+
fois, suivie d'un numéro
+
+ + + + +
ek
+
+
fois
+
+
-mal (in Verbindung mit einer Zahl)
+
+
time(s)
+
+
+
+ + +
sâra nzönî-bê
+
+ + + + + + + + + + + + + + +nett (sein) +nice (be) +gentil (être) + +
Sâra nzönî-bê. Yamba agene na lêgë nî.
+ +
Be nice. Welcome guests properly.
+
+
+ + +
ek
+
+
(être) gentil
+
+
nett (sein)
+
+
nice
+
+ +
0300
+
+
+ +gut (sein) +good (be) +bon (être) + +
Sâra nzönî-bê. Mä yângâ tî makönzi tî ködörö.
+ +
Be good. Obey the village chief.
+
+
+ + +
ek
+
+
(être) bon
+
+
good
+
+
gut (sein)
+
+ + +
0300
+
+
+
+ + +
wayïndä
+
+ + + + +Direktor +director +directeur + + +
ek
+
+
directeur
+
+
director
+
+
Direktor
+
+
+
+ + +
+
+ + + + +absteigen +descend +descendre +
absteigen
+
+
descend
+
+
descendre
+
+
+ + + +einschiffen +embark +s'embarquer + +
E zû ngö.
+ +
We embark in a dugout canoe.
+
Nous nous embarquons dans une pirogue.
+
+
+
einschiffen
+
+
embark
+
+
s'embarquer
+
+
+
+ + +
zîzïboro tî nyama
+
+ + + + +Fleischhungrig +lover of meat +gourmand de viande + +
i-476
+
+
+
+ + +
kamâ-kîte
+
+ + + + + + + + +Oppositionspartei +opposition party +parti de l'opposition + + + + +
ek
+
+
Oppositionspartei
+
+
+
+ + +
wara terê
+
+ + +
Originally: (kûê)
+
+ + + + + + + + + + +sich treffen, sich versammeln +gather, meet together +se réunir + + +
ek
+
+
sich treffen, sich versammeln
+
+
+
+ + +
sûku na ngangü
+
+ + + + + + + + + + + + +drohen +threaten +menacer + + +
tl
+
+
drohen
+
+
menacer
+
+
threaten
+
+ +
0464
+
+
+
+ + +
kpüngbülümûse
+
+ + + + +Grapefruit, Pampelmuse +grapefruit +pamplemousse + + +
Citrus grandis
+
+ +
tl
+
+
grapefruit
+
+
Grapefruit, Pampelmuse
+
+
pamplemousse
+
+ +
1212
+
+
+
+ + +
visêe
+
+ + + + +schraube +screw +visser + +
mle-4183
+
+
+
+ + +
kôlï sô afâ selêka
+
+ + + + + + + + + + + + + + + + +Bräutigam +groom +marié + + +
tl
+
+
Bräutigam
+
+
groom
+
+
marié
+
+ +
0945
+
+
+
+ + +
lü kûâ
+
+ + + + + + + + +einen Toten beerdigen +bury the deceased +enterrer un mort + + +
ek
+
+
bury the deceased
+
+
einen Toten beerdigen
+
+
enterrer un mort
+
+ +
0954
+
+
+
+ + +
sämba
+
+ + + + +alkoholisches Getränk, +alcoholic beverage, +boisson alcoolisée, + + +
ek
+
+
alkoholisches Getränk,
+
+
+ + + +Alkohol +alcohol (general) +alcool (général) + + +
tl
+
+
alcohol (general)
+
+
alcool (général)
+
+
Alkohol
+
+ +
0587
+
+
+
+ + +
ku sörö
+
+ + + + + + + + +spucken +spit +cracher + + + + + + +
tl
+
+
cracher
+
+
spit
+
+
spucken
+
+ + +
0111
+
+
+
+ + +
Kânga yângâ tî mo!
+
+ + + + + + +Sei still! +Be quiet! +Tais-toi! + + +
tl
+
+
Sei still!
+
+
Tais-toi!
+
+
+ + + +schweigen, ruhig (sein) +silent (be) +se taire, silencieux (être) + + +
tl
+
+
schweigen, ruhig (sein)
+
+
se taire, (être) silencieux
+
+
silent
+
+ + +
0442
+
+
+
+ + +
balangëti
+
+ + + + +Deck +blanket +couverture + + +
ek
+
+
blanket
+
+
couverture
+
+
Deck
+
+
+
+ + +
hîo
+
+ + +
hi.ɔ / hi.yɔɔ
+ +
3.1 / 3.31
+
+
+ + + +schnell +quickly, rapidly +vite, rapidement + +
Tambûla hîo sï ë sï kôzo sï ndo avûko.
+ +
Walk quickly so we'll arrive before nightfall.
+
+
+ + +
ek
+
+
schnell
+
+
+
+ + +
batizêe
+
+ + + + +jemanden taufen +baptize someone +baptiser + + +
ek
+
+
baptiser
+
+
jemanden taufen
+
+
+
+ + +
palâse tî kûâ
+
+ + + + + + + + +Trauerhaus +house of mourning +place mortuaire + + +
ek
+
+
Trauerhaus
+
+
+
+ + +
pä ïrï
+
+ + + + + + + + +verleumden, in Verruf bringen +slander, discredit +diffamer + + +
ek
+
+
diffamer
+
+
verleumden, in Verruf bringen
+
+
+
+ + +
wakängö zo
+
+ + + + + + + + + + + + + + + + +Verräter +traitor +traître + + +
tl
+
+
traitor
+
+
traitre
+
+
Verräter
+
+ +
0387
+
+
+
+ + +
lê avûko
+
+ + + + + + + + + +schwindlig werden +dizzy (be) +avoir le vertige + +
Lo nyön sämba gbii lê tî lo avûko.
+ +
He drank booze until he was dizzy.
+
+
+ + +
tl
+
+
avoir le vertige
+
+
dizzy
+
+
schwindlig werden
+
+ +
0126
+
+
+
+ + +
gä tî bâa
+
+ + + + + + + + + + + +besuchen +pay a visit +rendre visite + + +
ek
+
+
besuchen
+
+
+
+ + +
lêgë (ôko, ûse, otâ, ...)
+
+ + + + + + + + +x-mal, x-fach +x-times +x-fois + +
Mbï gue lêgë ôko, mbï wara lo pëpe. Na pekônî, mbï kîri lêgë ûse sï mbï tîngbi lo.
+ +
I went one time and I did not find him. Afterwards, I went back two times and then I met him.
+
+
+ + +
ek
+
+
x-fois
+
+
x-mal, x-fach
+
+
x-times
+
+
+
+ + +
yâ nî awöko
+
+ + + + + + + + + + +lose, locker, schlaff (sein) +loose, slack (be) +lâche, desserré (être) + +
Yâ nî awöko. Gbôto kâmba nî ngangü.
+ +
The rope is loose. Pull it hard.
+
+
+ + +
tl
+
+
(être) lâche, desserré
+
+
loose, slack
+
+
lose, locker, schlaff (sein)
+
+ +
0661
+
+
+
+ + +
lêgë tî ngû
+
+ + + + + + + + + + + + +Tal +valley +vallée + + +
tl
+
+
Tal
+
+
vallée
+
+
valley
+
+ +
1265
+
+
+
+ + +
Afrîka
+
+ + + + +Afrika +Africa +Afrique + + +
ek
+
+
Africa
+
+
Afrika
+
+
Afrique
+
+
+
+ + +
ngira
+
+ + + + +Verbot, Tabu +prohibition, taboo +interdiction, tabou(e) + +
+ + +
ndüzü tî bongö
+
+ + + + + + + + + + + +Hemd +shirt +chemise + + + + +
tl
+
+
chemise
+
+
Hemd
+
+
shirt
+
+ +
0542
+
+
+
+ + +
kolîngo
+
+ + +
ko.li.ngo
+ +
1.3.1
+
+
+ + + +Chamäleon +chameleon +caméléon + + +
tl
+
+
caméléon
+
+
Chamäleon
+
+
chameleon
+
+ +
1102
+
+
+
+ + +
gapa
+
+ + + + +Diskussion +discussion +discussion + + +
ek
+
+
discussion
+
+
discussion
+
+
Diskussion
+
+
+
+ + +
sô tî tene
+
+ + + + + + +was bedeutet +which means +ceci veut dire + +
ek
+
+
was bedeutet
+
+
+
+ + +
ndikâ
+
+ + +
from Lingala
+
+ + + +Palmnuss +palm nut +noix de palme + + +
Elaeis guineensis
+
+ +
ek
+
+
noix de palme
+
+
palm nut
+
+
Palmnuss
+
+ +
1240
+
+
+ + + +Nass +nut +noix + + +
+ + +
soko
+
+ + +
sɔ.kɔ
+ +
1.1
+
+
+ + + +rosten +to rust +rouiller + + +
ek
+
+
rosten
+
+
rouiller
+
+
+
+ + +
dû tî purû
+
+ + + + + + + + + + + + +After +anus +anus + + +
tl
+
+
After
+
+
anus
+
+
anus
+
+ +
0045
+
+
+
+ + +
yeke na mawa
+
+ + + + + + +traurig (sein) +sad (be) +triste (être) + +
Mamâ tî lo akûi. Lo yeke na mawa.
+ +
His mother died. He is sad.
+
+
+ + +
tl
+
+
(être) triste
+
+
sad
+
+
traurig (sein)
+
+ +
0271
+
+
+
+ + +
kpïngbä
+
+ + +
Formerly: mênë sô agbû terê sï akpîngba
+
+ +
mênë sô akpîngba
+ +
+ + + + + + +hart (sein) +hard (be) +dur (être) + +
cf. kpëngbä
+ + +
+ + +
ek
+
+
(être) dur
+
+
hard
+
+
hart (sein)
+
+ +
1544
+
+
+ + + +grob (sein) +rough (be) +rugueux, raboteux (être) + + +
tl
+
+
(être) rugueux, raboteux
+
+
grob (sein)
+
+
rough
+
+ +
1541
+
+
+ + + +stark (sein), widerstandsfähig +strong (be) +résistant (être) + + +
ek
+
+
(être) résistant
+
+
stark (sein), widerstandsfähig
+
+
strong
+
+ +
1571
+
+
+ + + +schwierig (sein) +difficult (be) +difficile (être) + + +
ek
+
+
(être) difficile
+
+
difficult
+
+
schwierig (sein)
+
+ + +
0320
+
+
+
+ + +
yê tî pendere
+
+ + + + + + + + +Schmuck, Schminke, Ornament +jewellery, make-up, ornament +bijoux, parure + + +
ek
+
+
Schmuck, Schminke, Ornament
+
+
+
+ + +
wambëtï
+
+ + + + +Intellektueller, Schriftsteller +intellectual, writer +intellectuel, écrivain + + +
ek
+
+
Intellektueller, Schriftsteller
+
+
+
+ + +
kanda
+
+ + + + +Knödel +dumpling, pancake, biscuit +boulette, galette + + +
ek
+
+
dumpling
+
+
Knödel
+
+ +
i-460
+
+
+
+ + +
gbû na kûkû
+
+ + + + + + + + + + + + +(ein Tier) einfangen +trap (animal) +prendre au piège + + +
tl
+
+
(ein Tier) einfangen
+
+
prendre au piège
+
+
trap (animal)
+
+ +
0793
+
+
+
+ + +
sana
+
+ + + + +abbiegen, drehen +turn, spin, rotate +tourner, faire tourner + +
+ + +
bëngo-lê
+
+ + +
bëngö-lê
+ +
+ + + + + + + + +
bɛ.ngɔ.lɛ / bɛ.ngɔ.le
+ +
2.1.3
+
+
+ + + +Bedrohung +threat +menace + +
+ + +
gbägbä
+
+ + + + +Barriere +barrier +enclos + + + + +
tl
+
+
barrier
+
+
Barriere
+
+
enclos
+
+ +
mle-0442
+
+
+ + + +Zaun +fence +clôture +
clôture
+
+
fence
+
+
Zaun
+
+ +
0676
+
+
+
+ + +
daräa
+
+ + + + +Betttuch, Leintuch +bed sheet +drap + + +
ek
+
+
Betttuch, Leintuch
+
+
drap
+
+
+
+ + +
âki
+
+ + + + +Insekt +insect +insecte + + +
ek
+
+
insect
+
+
insecte
+
+
Insekt
+
+ +
1117
+
+
+
+ + +
ngbûku
+
+ + + + +Rätsel +riddle +devinette + + +
ek, jl, lb, gfk-d
+
+
devinette
+
+
Rätsel
+
+
riddle
+
+ +
i-306
+
+
+
+ + +
hîni
+
+ + + + +salben, auf die Haut auftragen +anoint +oindre + + +
ek
+
+
oindre
+
+
salben, auf die Haut auftragen
+
+ +
+ + + +verschmieren, auf ... verstreichen +rub on +enduire + + + +
1484
+
+
+
+ + +
sânzîrî
+
+ + + + + + + +Wache, Wächter +guard +sentinelle + + +
ek
+
+
guard
+
+
sentinelle
+
+
Wache, Wächter
+
+
+
+ + +
ngbângbâ
+
+ + + + +Kiefer +jaw +mâchoire + + +
tl
+
+
jaw
+
+
Kiefer
+
+
mâchoire
+
+ +
0021
+
+
+ + + +Backe +cheek +joue + + +
tl
+
+
Backe
+
+
cheek
+
+
joue
+
+ +
0014
+
+
+
+ + +
da tî ndeke
+
+ + + + + + + + + + + + +Nest +nest +nid + + +
tl
+
+
nest
+
+
Nest
+
+
nid
+
+ +
1069
+
+
+
+ + +
tömbërä
+
+ + + + + +
to.mbe.ɾa
+ +
1.1.1
+
+
+ + + +Verordnung verkünden, etwas ansagen, bekanntmachen +proclaim a decree, make an announcement +proclamer un décret, faire une annonce + + +
ek
+
+
Verordnung verkünden, etwas ansagen, bekanntmachen
+
+
+
+ + +
ngbondâ
+
+ + +
ngbo.nda
+ +
1.3 / 1.2
+
+
+ + + +Rückseite (des Zimmers), Boden (eines Glases) +back (of the room), bottom (of the glass) +fond (de la salle, d'un verre) + + +
ek
+
+
Rückseite (des Zimmers), Boden (eines Glases)
+
+
+
+ + +
zî korobô tî ...
+
+ + + + + + + + + + + + +kastrieren +castrate +châtrer + + +
& i-142
+
+ +
tl
+
+
castrate
+
+
châtrer
+
+
kastrieren
+
+ +
0774
+
+
+
+ + +
ndembë
+
+ + + + +Zeit, Zeitspanne, Periode +time, period +temps, période + + + + +
ek
+
+
Zeit, Zeitspanne, Periode
+
+
+
+ + +
ndângôrö
+
+ + +
???
+
+ + + +Ecke +corner +coin + +
i-199
+
+
+ + + +Grenze +border +frontière + +
+ + +
bata li nzönî
+
+ + + + + + + + +sich gut benehmen +well-behaved (be) +bien se comporter + + + + +
ek
+
+
sich gut benehmen
+
+
+
+ + +
kïrïngö-tënë
+
+ + +
ki.ɾi.ngɔ.tɛ.nɛ
+ +
2.2.2.2.2
+
+
+ + + +Antwort +answer +réponse + + +
ek
+
+
answer
+
+
Antwort
+
+
réponse
+
+
+
+ + +
wayërë
+
+ + + + +arme Person +poor person +un pauvre + + +
tl
+
+
arme Person
+
+
poor person
+
+
un pauvre
+
+ +
0814
+
+
+ +arm (sein) +poor (be) +pauvre (être) + + +
tl
+
+
(être) pauvre
+
+
arm (sein)
+
+ +
0816
+
+
+
+ + +
mbadi
+
+ + + + +Wahrsagung +divination +divination + + +
ek
+
+
divination
+
+
divination
+
+
Wahrsagung
+
+
+
+ + +
zê zê
+
+ + + + +elegant +elegantly, gracefully, smoothly +élégamment + +
Lo dödô zê zê.
+ +
She danced elegantly.
+
Elle a dansé élégamment.
+
+
+ +
ek
+
+
élégamment
+
+
elegant
+
+
+ + + +diskret +discretely +discrètement + + +
ek
+
+
discretely
+
+
discrètement
+
+
diskret
+
+
+
+ + +
gbagbara tî gbüngö na susu
+
+ + + + + + + + + + + + + + + + +Fischdamm +fish dam +barrage de poissons + + +
tl
+
+
barrage de poissons
+
+
Fischdamm
+
+
fish dam
+
+ +
0800
+
+
+
+ + +
li tî ... atombôka
+
+ + + + + + + + + + +verwirrt (sein) +confused (be) +désorienté, embrouillé (être) + +
Lo girisa lêgë na yâ tî ngonda tëtî li tî lo atombôka.
+ +
He lost his way in the bush because he was confused.
+
+
+ + +
tl
+
+
(être) désorienté, embrouillé
+
+
confused
+
+
verwirrt (sein)
+
+ +
0261
+
+
+
+ + +
tîngbi
+
+ + + + +treffen +meet, encounter +rencontrer + + +
ek
+
+
meet, encounter
+
+
rencontrer
+
+
treffen
+
+ + +
0414
+
+
+ + + +konvergieren +converge +converger + +
mle-1092
+
+
+
+ + +
ngû sô asua sï atûku na ngangü na sêse
+
+ + + + + +
Kim - i.e. water of electricity
+
+
+ + + + +
Kim - i.e. water of electricity
+
+
+ + + + +
Kim - i.e. water of electricity
+
+
+ + + + +
Kim - i.e. water of electricity
+
+
+ + + + +
Kim - i.e. water of electricity
+
+
+ + + +Wasserfall +waterfall +chute, cataracte + + +
tl
+
+
chute, cataracte
+
+
Wasserfall
+
+
waterfall
+
+ + +
1291
+
+
+
+ + +
kasa ndo
+
+ + + + + + + + + + + + +tratschen +gossip +faire des commérages + + +
tl
+
+
faire des commérages
+
+
gossip
+
+
tratschen
+
+ +
0451
+
+
+
+ + +
kêtê këkë
+
+ + + + + + + + + + + + +Busch +bush +arbuste, buisson + + +
tl
+
+
arbuste, buisson
+
+
Busch
+
+
bush
+
+ +
1172
+
+
+ + + +Splitter +splinter, sliver +écharde, éclat + + +
tl
+
+
écharde, éclat
+
+
splinter, sliver
+
+
Splitter
+
+ + +
0722
+
+
+
+ + +
nzêne ngbonga
+
+ + + + + + + + +Minute +minute +minute + + +
ek
+
+
minute
+
+
minute
+
+
Minute
+
+
+
+ + +
tënë tî gïngö bê
+
+ + + + +Sorge +worry, concern +préoccupation (majeure) + +
i-816
+
+
+
+ + +
ngonda
+
+ + +
ngo.nda
+ +
1.1
+
+
+ + + +Wiese, Savanne +grassland +savane + + +
tl
+
+
grassland
+
+
savane
+
+
Wiese, Savanne
+
+ +
1257
+
+
+ + + +Land, Wildnis +countryside, wilderness +campagne, brousse + + +
tl
+
+
campagne, brousse
+
+
countryside, wilderness
+
+
Land, Wildnis
+
+ +
1260
+
+
+
+ + +
tene tënë na ndüzü
+
+ + + + + + + + + + + + + + + + +(auf-) schreien +shout, speak loudly, cry out +hurler, parler fort, crier + + +
tl
+
+
(auf-) schreien
+
+
hurler, parler fort, crier
+
+
shout, speak loudly, cry out
+
+ +
0437
+
+
+
+ + +
têke
+
+ + + + +Teakbaum +teak tree +teck + + +
Tectona grandis
+
+ +
tl
+
+
teak tree
+
+
Teakbaum
+
+
teck
+
+ +
1161
+
+
+
+ + +
vokö
+
+ + + + + +
vɔ.kɔ
+ +
1.2
+
+
+ + + +schwarz +black (be) +noir (être) + +
Mbênî vokö bägara alï yäkä tî mbï.
+ +
A black cow entered my garden.
+
+
+ + +
ek
+
+
black
+
+
noir
+
+
schwarz
+
+ + +
1556
+
+
+ + + +dunkel +dark (be) +sombre (être) + + +
ek
+
+
dark
+
+
dunkel
+
+
sombre
+
+ +
1562
+
+
+ + + +schmutzig +dirty (be) +sale (être) + + +
ek
+
+
dirty
+
+
sale
+
+
schmutzig
+
+ +
1585
+
+
+
+ + +
dë büzë
+
+ + + + + + + + + + + +kaufen und verkaufen, Handel treiben +buy and sell +faire du commerce + + +
ek
+
+
kaufen und verkaufen, Handel treiben
+
+
+
+ + +
dëbä yângâ
+
+ + + + + + + + +schwören +swear +jurer, prêter serment + + +
tl
+
+
jurer, prêter serment
+
+
schwören
+
+
swear
+
+ + +
0460
+
+
+
+ + +
kötä yê
+
+ + + + + + + + +wichtige Sache, Hauptsache +important thing, what counts +chose importante, l'essentiel + + + + +
ek
+
+
wichtige Sache, Hauptsache
+
+
+
+ + +
kinîni
+
+ + + + +Tablette +tablet +comprimé + + +
ek
+
+
comprimé
+
+
tablet
+
+
Tablette
+
+
+ + + +Quinin +quinine +quinine + + +
ek
+
+
Quinin
+
+
quinine
+
+
quinine
+
+
+
+ + +
tene (mbai)
+
+ + + + + + + + + + + + +erzählen (Geschichte) +tell, recount (story) +raconter (un conte) + + +
tl
+
+
erzählen (Geschichte)
+
+
raconter (un conte)
+
+
tell, recount (story)
+
+ + +
0479
+
+
+
+ + +
fa (yê)
+
+ + + + +zeigen +show +montrer + + + + +
ek
+
+
montrer
+
+
show
+
+
zeigen
+
+ +
0264
+
+
+ + + +lehren, unterrichten +teach, instruct +enseigner + + +
ek
+
+
enseigner
+
+
lehren, unterrichten
+
+
teach, instruct
+
+ +
0263
+
+
+
+ + +
zênê
+
+ + +
nzêne
+ +
+ + + +ausgleiten +slip +glisser + + +
ek
+
+
ausgleiten
+
+
glisser
+
+
slide, slip
+
+
+ + + +rutschen, gleiten +slide +glisser + + +
tl
+
+
glisser
+
+
rutschen, gleiten
+
+
slide
+
+ + +
1413
+
+
+ +rutschig, glitschig (sein) +slippery (be) +glissant (être) + + +
tl
+
+
(être) glissant
+
+
rutschig, glitschig (sein)
+
+
slippery
+
+ +
1550
+
+
+ + + +schlängeln, gleiten, kriechen +slither (snake) +onduler, glisser + + +
tl
+
+
onduler, glisser
+
+
schlängeln, gleiten, kriechen
+
+
slither (snake)
+
+ +
1113
+
+
+
+ + +
pîka pätärä
+
+ + + + + + + + + + + +besprechen +discuss +discuter + + +
ek
+
+
besprechen
+
+
discuss
+
+
discuter
+
+
+
+ + +
nïngängö
+
+ + +
ni.nga.ngɔ
+ +
2.2.2
+
+
+ + + +dauerhaft +durable (be) +durable, résistant (être) + +
Sô taâ nïngängö nzenze.
+ +
That is a very durable machete.
+
C'est une machette résistante.
+
+
+ +
mle-1521
+
+
+
+ + +
gi tî hînga ndâ tî kobêla
+
+ + + + +diagnostizieren +diagnose +diagnostiquer + +
mle-1355
+
+
+
+ + +
belü
+
+ + + + +Stachelschwein +porcupine +porc-épic + + +
tl
+
+
porc-épic
+
+
porcupine
+
+
Stachelschwein
+
+ +
1018
+
+
+
+ + +
kôkô
+
+ + +
kɔ́kɔ́
+
+ + + +Gecko +gecko +gecko + + +
1103
+
+
+
+ + +
yäyû
+
+ + + + +Himmel, Paradies +Heaven, paradise +ciel, paradis + + +
ek
+
+
Himmel, Paradies
+
+
+
+ + +
ba yâ nî
+
+ + + + + + + + + + + + +falten +fold +plier + + +
tl
+
+
falten
+
+
fold
+
+
plier
+
+ +
1441
+
+
+
+ + +
gbôto yâ nî
+
+ + + + + + + + + + + + +erweitern, ausweiten +widen +élargir + + +
tl
+
+
élargir
+
+
erweitern, ausweiten
+
+
widen
+
+ +
1520
+
+
+ + + +verlängern +lengthen +rallonger + + +
tl
+
+
lengthen
+
+
rallonger
+
+
verlängern
+
+ +
1514
+
+
+ + + +dehnen, ausstrecken +stretch +étirer, tendre + + +
tl
+
+
dehnen, ausstrecken
+
+
étirer, tendre
+
+
stretch
+
+ +
1445
+
+
+
+ + +
tëngbïngö tî mabôko na lê tî mabôko
+
+ + + + + + + + + + + + + + + + + + + +Handgelenk +wrist +poignet + + +
tl
+
+
Handgelenk
+
+
poignet
+
+
wrist
+
+ + +
0055
+
+
+
+ + +
vûnga
+
+ + + + +ankündigen +announce +annoncer + + + + +
ek
+
+
ankündigen
+
+
annoncer
+
+
announce
+
+ + +
0446
+
+
+ + + +veröffentlichen +publish +publier + + +
ek
+
+
publier
+
+
publish
+
+
veröffentlichen
+
+
+
+ + +
kêtê gaduru
+
+ + + + + + + + + + + + +Schweinchen +piglet +porcelet + + +
tl
+
+
piglet
+
+
porcelet
+
+
Schweinchen
+
+ +
0990
+
+
+
+ + +
lê tî mângo
+
+ + + + + + + + + + + + +Mangokern +mango stone, pit +noyau de mangue + + +
tl
+
+
mango stone, pit
+
+
Mangokern
+
+
noyau de mangue
+
+
+
+ + +
kötä zo tî kua
+
+ + + + + + + + + + + +Chef +boss +chef, patron, boss + +
employer, boss
+
+ + +
ek
+
+
boss
+
+
Chef
+
+ +
mle-0602
+
+
+
+ + +
gbâdêkûa
+
+ + + + +Spitzmaus +shrew +musaraigne + + +
tl
+
+
musaraigne
+
+
shrew
+
+
Spitzmaus
+
+ +
1013
+
+
+
+ + +
gbïngö
+
+ + +
gbi.ngɔ
+ +
2.2
+
+
+ + + +Brand +burning, blaze +brûlure, incendie + + + + +
ek
+
+
Brand
+
+
+ + + +Hitze +heat +chaleur + + +
ek
+
+
chaleur
+
+
heat
+
+
Hitze
+
+
+
+ + +
giriri
+
+ + + + +vor langer Zeit, früher +long ago +autrefois + +
Giriri akutukutu ayeke daä pëpe.
+ +
Long ago automobiles didn't exist.
+
+
+ + +
ek
+
+
autrefois
+
+
long ago
+
+
vor langer Zeit, früher
+
+ +
1375
+
+
+
+ + +
tene ânzërëngö tënë tî hânda na zo
+
+ + + + +schmeicheln +flatter +flatter + +
+ + +
goyâve
+
+ + +
???
+
+ + + +Guava +guava +goyave + + +
Psidium gujava
+
+ +
tl
+
+
goyave
+
+
guava
+
+
Guava
+
+ +
1215
+
+
+
+ + +
+
+ + +
+ +
2 / 3 [lb]
+
+
+ +
to.kwa
+ +
1.1
+
+
+ + + +Osten +east +est + + +
tl
+
+
east
+
+
est
+
+
Osten
+
+ +
1660
+
+
+
+ + +
pasêe
+
+ + + + +spülen Sie den Mund aus +rinse mouth +rincer la bouche + +
i-885
+
+
+
+ + +
kpë
+
+ + + + +vermeiden, aus dem Weg gehen +avoid +éviter + + + + +
tl
+
+
avoid
+
+
éviter
+
+
vermeiden, aus dem Weg gehen
+
+ + +
0423
+
+
+ + + +flüchten, weglaufen +flee, run away from +s'enfuir + + +
tl
+
+
flee, run away from
+
+
flüchten, weglaufen
+
+
s'enfuir
+
+ +
0421
+
+
+ + + +entkommen, entfliehen +escape +échapper, s'évader + + +
tl
+
+
échapper, s'évader
+
+
entkommen, entfliehen
+
+
escape
+
+ +
0795
+
+
+ + + +respektieren +respect +respecter + + +
ek
+
+
respect
+
+
respecter
+
+
respektieren
+
+ +
0282
+
+
+ + + +laufen +run +courir +
courir
+
+
laufen
+
+
run
+
+
+
+ + +
bängâ
+
+ + + + +Gummi +rubber +caoutchouc + + +
ek
+
+
caoutchouc
+
+
Gummi
+
+
rubber
+
+ +
1243
+
+
+
+ + +
nyama tî yâ
+
+ + + + + + + + +Parasiten, Würmer +parasites, worms +parasites, vers + + +
ek
+
+
Parasiten, Würmer
+
+
+
+ + +
ngôi tî fängö âlê tî kôbe
+
+ + + + + + + + + + + +Erntezeit, Erntesaison +harvest season +moisson + + +
tl
+
+ + +
0756
+
+
+
+ + +
pûsu-purû
+
+ + + + + + + +Mistkäfer +dung beetle +bousier + + +
tl
+
+
bousier
+
+
dung beetle
+
+
Mistkäfer
+
+ +
1130
+
+
+
+ + +
gbâ tî (ângadî, ...) sô ahuru
+
+ + + + + + + + + + + + + + + + +Schwarm +swarm +essaim + + +
tl
+
+
essaim
+
+
Schwarm
+
+
swarm
+
+ +
1157
+
+
+
+ + +
taâ na ngôi nî sô
+
+ + + + +in diesem Moment +at that very moment +à ce moment précis + +
Taâ na ngôi nî sô, lo kûi.
+ +
At that very moment, he died.
+
A ce moment précis, il est mort.
+
+
+
+
+ + +
ngu tî lê tî këkë sô a nyön nî
+
+ + +
Formerly: ngu tî lê tî këkë sô ate nî
+
+ + + + + + + + + + + + + + + + + + + +Saft +juice +jus + + +
tl
+
+
juice
+
+
jus
+
+
Saft
+
+ +
1197
+
+
+
+ + +
wasärängö ndao
+
+ + + + + + + + + + + + + + + + +Schmied +blacksmith +forgeron + + +
tl
+
+
blacksmith
+
+
forgeron
+
+
Schmied
+
+ + +
0399
+
+
+
+ + +
mankêe
+
+ + + + +verpassen +miss +manquer + + +
ek
+
+
manquer
+
+
miss
+
+
verpassen
+
+
+
+ + +
yângâ tî ...
+
+ + +
yângâ tî da
+ +
+ + + + + + + +Tür +door +porte + + +
ek
+
+
door
+
+
porte
+
+
Tür
+
+ + +
0665
+
+
+ + + +Aufgang, Eingang +doorway +entrée, seuil + + +
0666
+
+
+
+ + +
su ngbângbâ
+
+ + + + + + + + + + + + +küssen +kiss +donner un baiser + + +
tl
+
+
donner un baiser
+
+
kiss
+
+
küssen
+
+ +
0484
+
+
+
+ + +
îri
+
+ + + + +rufen +call (someone) +appeler, interpeller + + + + +
tl
+
+
appeler, interpeller
+
+
call (someone)
+
+
rufen
+
+ +
0444
+
+
+
+ + +
panzâka
+
+ + + + +verteilen, zerstreuen +scatter +éparpiller, répandre + + +
tl
+
+
éparpiller, répandre
+
+
scatter
+
+
verteilen, zerstreuen
+
+ +
1467
+
+
+
+ + +
kpangbala
+
+ + + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + + +
ek
+
+
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ + + + + +
0755
+
+
+
+ + +
kîrîkiri
+
+ + + + +krumm +crooked (be) +courbé (être) + +
Këkë sô ayeke kîrîkiri mîngi.
+ +
This stick is very crooked.
+
+
+ + +
ek
+
+
courbé
+
+
crooked
+
+
krumm
+
+
+ + + +any (in a pejorative sense) +n'importe qui + +
Zo kîrîkiri alîngbi tî mû yorô pëpe. [Sam]
+ +
Not just any person can take medecine.
+
+
+
+ + + +unordentlich, durcheinander +disorderly, careless, unruly (be) +désordonné, n'importe comment (être) + +
Âmôlengê sô ake yângâ. Âla sâra yê tî âla kûê kîrîkiri.
+ +
Those children disobey orders. They are unruly.
+
+
+ + +
ek
+
+
unordentlich, durcheinander
+
+ +
mle-0754
+
+
+ + + +schlecht, mangelhaft +poorly +mal, médiocrement + +
Lo sâra da nî kîrîkiri sî atï.
+ +
He made the house poorly so it fell down.
+
+
+ + +
tl
+
+
mal, médiocrement
+
+
poorly
+
+
schlecht, mangelhaft
+
+ +
1697
+
+
+ + + +unehrlich +dishonest (be) +malhonnête (être) + +
mle-1412
+
+
+
+ + +
wamändängö (yê)
+
+ + + + + + + + + + + + +Lehrling +apprentice +étudiant(e), apprenti(e) + + + + +
ek
+
+
apprentice
+
+
Lehrling
+
+
+
+ + +
längö
+
+ + +
la.ngɔ
+ +
2.2
+
+
+ + + +schlafen +sleep +dormir + +
längö na Bangui.
+ +
in Bangui wohnen
+
live in Bangui
+
habiter à Bangui
+
+
+ + +
tl
+
+
dormir
+
+
schlafen
+
+
sleep
+
+ +
0128
+
+
+ + + +Schlaf +sleep +sommeil + + +
ek
+
+
Schlaf
+
+
sleep
+
+
sommeil
+
+
+
+ + +
zî yângâ (tî) ...
+
+ + +
bâa yê na finî nî
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +öffnen +open (a door) (tr) +ouvrir (une porte) + + +
tl
+
+
öffnen
+
+
open (a door) (tr)
+
+
ouvrir (une porte)
+
+ + +
0639
+
+
+ + + +aufdecken, entdecken +uncover +découvrir + + +
tl
+
+
aufdecken, entdecken
+
+
découvrir
+
+
uncover
+
+ + +
0643
+
+
+
+ + +
hünzïngö
+
+ + + + + +
hu.nzi.ngɔ / wu.nzi.ngɔ
+ +
2.2.2
+
+
+ + + +Ende +end +fin + + +
tl
+
+
end
+
+
Ende
+
+
fin
+
+ +
1504
+
+
+
+ + +
lâsô
+
+ + + + + + + + + +
la.so
+ +
3.3
+
+
+ + + +heute +today +aujourd'hui + +
Kü kêkerêke pëpe. Lâsô ayeke tî gue na garâ.
+ +
Don't wait for tomorrow. Today you must go to the market.
+
+
+ + +
tl
+
+
aujourd'hui
+
+
heute
+
+
today
+
+ +
1370
+
+
+
+ + +
ndö tî lê
+
+ + + + + + + + + + + + +Stirn +forehead +front + + +
tl
+
+
forehead, Stirn
+
+
front
+
+
Stirn
+
+ +
0004
+
+
+
+ + +
sïgîgî
+
+ + + + +ausgehen +go out +sortir + + +
tl
+
+
ausgehen
+
+
go out
+
+
sortir
+
+ + +
1408
+
+
+ + + +erscheinen +appear +apparaître + + +
ek
+
+
apparaître
+
+
appear
+
+
erscheinen
+
+
+ + + +sprießen, keimen, wachsen +sprout, germinate +apparaître, pousser, germer + + +
tl
+
+
apparaître, pousser
+
+
sprießen
+
+
sprout
+
+ +
i-468
+
+
+ + + +entspringen +spring from, gush from +jaillir + +
i-539
+
+
+
+ + +
kpïngbä (mênë)
+
+ + +
Formerly: mênë sô agbû terê sï akpîngba
+
+ +
mênë sô akpîngba
+ +
+ + + + + + + + + + + + + + +gerinnen +coagulate, clot +coaguler + +
gerinnen
+
coagulate, clot (when referring to blood)
+
coaguler (en parlant du sang)
+
+ +
Mênë sô akpîngba. Fadë mbênî asïgîgî pëpe.
+ + +
+ + +
tl
+
+
coagulate, clot
+
+
coaguler
+
+
gerinnen
+
+ +
0125
+
+
+
+ + +
kpîi
+
+ + + + +sauer (sein) +sour (be) +acide, aigre (être) + + +
ek
+
+
(être) acide, aigre
+
+
sauer (sein)
+
+
sour
+
+ + +
1566
+
+
+
+ + +
vôte
+
+ + +
vɔ.tɛ
+ +
3.1
+
+
+ + + +Abstimmung +vote +vote + + + + +
ek
+
+
Abstimmung
+
+
vote
+
+
vote
+
+
+
+ + +
lê nî abe
+
+ + + + + + +es ist ernst +it's serious +c'est grave + +
ek
+
+
es ist ernst
+
+
+
+ + +
+
+ + + + +warten +wait +attendre + + +
tl
+
+
attendre
+
+
wait
+
+
warten
+
+ +
1366
+
+
+
+ + +
këkë tî ngombe
+
+ + + + + + + + +Gewehrkolben +rifle butt +crosse du fusil + + + + +
ek
+
+
Gewehrkolben
+
+
+
+ + +
dulëe
+
+ + + + +Milch +milk +lait + + +
tl
+
+
lait
+
+
Milch
+
+
milk
+
+ + +
0585
+
+
+
+ + +
ma
+
+ + + + +also gut, dochbitte! +all right, please! +donc, s'il te plaît ! + +
also, doch! (mit Nachdruck und Bitte)
+
all right, please! (end marker showing caring or insistence)
+
donc, s'il te plaît ! (marque d'insistance et de sollicitude)
+
+ +
ek
+
+
also gut, dochbitte!
+
+
+
+ + +
kundâ
+
+ + + + +(Wasser-)Schildkröte +turtle +tortue + + +
ek
+
+
(Wasser-)Schildkröte
+
+
tortue
+
+
turtle
+
+ + +
1109
+
+
+ + + +(Land-)Schildkröte +tortoise +tortue (terrestre) + + +
tl
+
+
(Land-)Schildkröte
+
+
tortoise
+
+
tortue (terrestre)
+
+ + +
1108
+
+
+
+ + +
biö tî susu
+
+ + + + + + + + + + + + +Gräte +fish bone +arête de poisson + + +
tl
+
+
arête de poisson
+
+
fish bone
+
+
Gräte
+
+ +
1087
+
+
+
+ + +
tûu
+
+ + + + +alles +all +tout + + +
ek
+
+
all
+
+
alles
+
+
tout
+
+ +
1638
+
+
+
+ + +
pëmbë
+
+ + + + +Zahn +tooth +dent + + +
tl
+
+
dent
+
+
tooth
+
+
Zahn
+
+ +
0018
+
+
+
+ + +
pâsi
+
+ + + + +Schmerz +pain +peine + + +
& i-964
+
+ +
tl
+
+
pain
+
+
peine
+
+
Schmerz
+
+ + +
0273
+
+
+ + + +Elend +misery +misère +
Elend
+
+
misère
+
+
misery
+
+
+ + + +Leid +sorrow +souffrance, chagrin +
Leid
+
+
sorrow
+
+
+
+ + +
ngbökö
+
+ + +
ngbɔ.kɔ
+ +
2.2
+
+
+ + + +Zuckerrohr +sugarcane +canne à sucre + + +
ek
+
+
canne à sucre
+
+
sugarcane
+
+
Zuckerrohr
+
+ + +
1241
+
+
+
+ + +
lamânde
+
+ + + + +Geldstrafe, Buße +fine +amende + + +
ek
+
+
amende
+
+
fine
+
+
Geldstrafe, Buße
+
+
+
+ + +
kpë tî yâ tî biö
+
+ + + + + + + + + + + + + + + + +Knochenmark +bone marrow +moelle + + +
tl
+
+
bone marrow
+
+
Knochenmark
+
+
moelle
+
+ +
0075
+
+
+
+ + +
su
+
+ + + + +scheinen (Sonne) +shine (sun) +briller (soleil) + +
Lâ asu ngangü mîngi.
+ +
The sun shone brightly.
+
+
+ + +
ek
+
+
scheinen (Sonne)
+
+
+
+ + +
yayâ
+
+ + + + +Ältere Geschwister +older sibling +aîné + + +
i-4
+
+
+
+ + +
kôlï-kôndo
+
+ + + + +Hahn +rooster +coq + + +
tl
+
+
coq
+
+
Hahn
+
+
rooster
+
+ +
0975
+
+
+
+ + +
siri
+
+ + + + +Floh +flea +puce + + +
tl
+
+
flea
+
+
Floh
+
+
puce
+
+ +
1118
+
+
+
+ + +
makûu!
+
+ + + + +Ruhe! +quiet! +silence ! + + +
ek
+
+
quiet!
+
+
Ruhe!
+
+
+
+ + +
zamêe
+
+ + + + +nie +never +jamais + +
Zamêe, neige alîngbi tî tï na RCA pëpe!
+ +
Never will snow be able to fall in CAR!
+
+
+ + +
ek
+
+
jamais
+
+
never
+
+
nie
+
+ +
1364
+
+
+
+ + +
yü (bongö)
+
+ + + + + + + + + + + +Kleider tragen +wear clothes +porter des vêtements + + +
tl
+
+
Kleider tragen
+
+
porter des vêtements
+
+
wear clothes
+
+ + +
0537
+
+
+ + + +sich anziehen +get dressed +s'habiller, se vêtir + + +
tl
+
+
get dressed
+
+
s'habiller, se vêtir
+
+
sich anziehen
+
+ + +
0538
+
+
+
+ + +
ndurü
+
+ + + + +klein (sein) +small (be) +petit (être) + + +
ek
+
+
(être) petit
+
+
klein (sein)
+
+
small
+
+ +
1509
+
+
+ +kurz (sein) +short (be) +court (être) + +
Këkë nî ayeke ndurü ahön ndönî! A lîngbi tî sâra na nî tî kö mângo pëpe.
+ +
The stick is way too short! It cannot be used to pick mangoes.
+
+
+ + +
tl
+
+
(être) court
+
+
kurz (sein)
+
+
short
+
+ +
1515
+
+
+
+ + +
bata nzönî
+
+ + + + +vorsichtig sein +be careful +être prudent + +
mle-0753
+
+
+
+ + +
pëngö yâ tî ...
+
+ + + + + + + + + + + + + + + + +Windsichter +winnow +van + + +
tl
+
+
van
+
+
Windsichter
+
+
winnow
+
+ +
0763
+
+
+
+ + +
âgbâkûrû
+
+ + + + +Hab und Gut, Güter +belongings +biens, possessions + + +
tl
+
+
belongings
+
+
biens, possessions
+
+
Hab und Gut, Güter
+
+ +
0811
+
+
+
+ + +
bîlîbili
+
+ + + + +Hirse-Bier +millet beer +bière de mil + + +
ek
+
+
Hirse-Bier
+
+
+
+ + +
kapïta
+
+ + + + +Stellvertreter des Chefs +deputy chief +adjoint au chef + + +
ek
+
+
Stellvertreter des Chefs
+
+
+
+ + +
zo tî kua tî yâ tî da
+
+ + + + + + + + + + + + + + + + +Hausangestellte(r) +servant (domestic) +domestique, servante, serviteur + + +
tl
+
+
domestique, servante, serviteur
+
+
Hausangestellte(r)
+
+
servant
+
+ + +
0404
+
+
+
+ + +
bazângele
+
+ + + + +Mitarbeiter, Angestellter/-e +associate, employee +associé, employé + + + + +
ek
+
+
Mitarbeiter, Angestellter/-e
+
+
+
+ + +
biö tî li
+
+ + + + + + + + + + + + +Schädel +skull +crâne + + +
tl
+
+
crâne
+
+
Schädel
+
+
skull
+
+ +
0077
+
+
+
+ + +
bembe ndo töngana wakälä
+
+ + + + + + + + + + + + + + + + +spionieren +spy, spy on +espionner + + +
tl
+
+
espionner
+
+
spionieren
+
+
spy, spy on
+
+ +
0870
+
+
+
+ + +
nzara tî ngû
+
+ + + + + + + + + + + +Durst +thirst +soif + + +
ek
+
+
Durst
+
+
soif
+
+
thirst
+
+
+
+ + +
kpûku
+
+ + +
kpu.ku
+ +
3.1 ~ 2.1 ~ 3.3
+
+
+ + + +Rätsel +riddle +devinette + +
lb, jl
+
+ +
i-306
+
+
+
+ + +
bäkongö
+
+ + +
ba.kɔ.ngɔ
+ +
2.1.2
+
+
+ + + +(Wasser-)Schildkröte +turtle +tortue + + +
ek
+
+
(Wasser-)Schildkröte
+
+
tortue
+
+
turtle
+
+ + +
1109
+
+
+
+ + +
butöon
+
+ + +
bu.to̰o̰
+ +
1.21
+
+
+ + + +Pickel +pimple +bouton (sur la peau) + + +
tl
+
+
bouton (sur la peau)
+
+
Pickel
+
+
pimple
+
+ +
0188
+
+
+
+ + +
Oriön
+
+ + +
ɔ.ɾi.ɔ̰
+ +
1.1.2
+
+
+ + + +Orion +Orion +Orion + + +
tl
+
+
Orion
+
+
Orion
+
+
Orion
+
+ +
1325
+
+
+
+ + +
asïgîgî (mênë tî ... )
+
+ + + + + + + + +bluten +bleed +saigner + +
Zembe akpo lo sï mênë tî lo asïgîgî.
+ + +
+ + +
tl
+
+
bleed
+
+
bluten
+
+
saigner
+
+ +
0124
+
+
+
+ + +
avokä
+
+ + +
a.vo.ka / za.vo.kaa
+ +
1.1.2 / 1.1.21
+
+
+ + + +Avocado +avocado +avocat + + +
Persea americana
+
+ +
tl
+
+
avocado
+
+
Avocado
+
+
avocat
+
+ +
1216
+
+
+
+ + +
potopôto tî sêse
+
+ + + + + + + + + + + + +Schlamm +mud +boue +
boue
+
+
mud
+
+
Schlamm
+
+
+
+ + +
kpändä mbo
+
+ + + + + + + + +streunender kranker Hund +stray, sick dog +chien chétif + + +
ek
+
+
streunender kranker Hund
+
+
+
+ + +
nge
+
+ + + + +Speikobra +spitting cobra +naja, cobra cracheur + + +
Naja spp.
+
+ +
tl
+
+
naja, cobra cracheur
+
+
Speikobra
+
+
spitting cobra
+
+ +
1096
+
+
+
+ + +
dutï na terê tî ...
+
+ + + + + + + + + + + + +helfen +help +aider, assister quelqu'un + + + + +
ek
+
+
helfen
+
+
help
+
+
+
+ + +
kä tî wâ
+
+ + + + + + + + + + + + +Verbrennung +burn +brûlure + + +
tl
+
+
brûlure
+
+
burn
+
+
Verbrennung
+
+ + +
0216
+
+
+
+ + +
wâlï sô afâ selêka
+
+ + + + + + + + + + + + + + + + +Braut +bride +mariée + + +
tl
+
+
Braut
+
+
bride
+
+
mariée
+
+ +
0944
+
+
+
+ + +
zîa na pendâ
+
+ + + + + + + + +ersetzen +replace +remplacer + + +
ek
+
+
ersetzen
+
+
remplacer
+
+
replace
+
+
+
+ + +
môlengê-wâlï
+
+ + + + + + + + +Mädchen +girl +fille, fillette + + +
ek
+
+
fille, fillette
+
+
girl
+
+
Mädchen
+
+ + +
0336
+
+
+ + + +Tochter +daughter +fille + + +
tl
+
+
daughter
+
+
fille
+
+
Tochter
+
+ +
0356
+
+
+
+ + +
kabinëe
+
+ + + + +Abort, WC +outhouse, bathroom +cabinets, toilettes + + +
ek
+
+
Abort, WC
+
+
+
+ + +
kambîri
+
+ + + + +heisses Palmöl +hot palm oil +huile de palme chauffée + + +
ek
+
+
heisses Palmöl
+
+
+ +gelb (sein) +yellow (be) +jaune (être) + + +
tl
+
+
(être) jaune
+
+
gelb (sein)
+
+
yellow
+
+ +
1561
+
+
+ +orangegelb (sein) +orange (be) +orange (être) + + +
ek
+
+
orangegelb (sein)
+
+
+
+ + +
na
+
+ + + + +und +and +et + + +
tl
+
+
and
+
+
et
+
+
und
+
+ +
1691
+
+
+ + + +mit +with +avec + + +
tl
+
+
avec
+
+
mit
+
+
with
+
+ +
1678
+
+
+ + + +an, auf, in +at, on, in +à, sur, dans + + + + +für, zu +for, to +pour, à + +
mû me na
+ +
give breast to
+
+
+ +
ek
+
+
for
+
+
für
+
+
pour
+
+
+ + + +von +by +par + +
ek
+
+
by
+
+
par
+
+
von
+
+
+ + + +weg/enfernt von +away from +de (direction) + + +
tl
+
+
away from
+
+
de (direction)
+
+
weg/enfernt von
+
+ +
1677
+
+
+ + + +gegen +against +contre (un ennemi) + +
i-221
+
+
+
+ + +
bongö tî dê
+
+ + + + + + + + +warme Kleidung +warm clothes +habit chaud + + +
ek
+
+
warme Kleidung
+
+
+
+ + +
da-fononon
+
+ + + + + + +
da.fo̰.no̰.no̰
+ +
1.1.1.1
+
+
+ + + +Radiosender, Rundfunkstation +radio station +station radiophonique + + +
ek
+
+
Radiosender, Rundfunkstation
+
+
+
+ + +
yangba
+
+ + + + +Pocken +smallpox +variole + + +
ek
+
+
Pocken
+
+
smallpox
+
+
variole
+
+
+
+ + +
nyen
+
+ + + + +welche(r)? +which? +quel(le) ? + +
Âla dutï töngana nyen na kötä ködörö tî Bangui?
+ +
How are things with you in the big city of Bangui?
+
+
+ + +
ek
+
+
welche(r)?
+
+
which?
+
+
+ + + +was? +what? +quoi ? + + +
tl
+
+
quoi ?
+
+
was?
+
+
what?
+
+ + +
1684
+
+
+
+ + +
gündâ tî tënë
+
+ + + + + + + + +Ursache des Problems +root of the problem +fond du problème + + +
ek
+
+
Ursache des Problems
+
+
+
+ + +
rumbatêe zô
+
+ + + + +drum rum reden +avoid a subject +éviter un sujet + + +
ek
+
+
drum rum reden
+
+
+
+ + +
tî löndö na ... asï na ...
+
+ + + + + + +von...bis...; von...nach...; zwischen +from...to...; between +de...à ; entre + +
ek
+
+
von...bis...
+
+
von...nach...
+
+
zwischen
+
+
+
+ + +
vo
+
+ + + + +kaufen +buy +acheter + + +
tl
+
+
acheter
+
+
buy
+
+
kaufen
+
+ +
0820
+
+
+
+ + +
ngbêne
+
+ + + + + +
ŋgbɛ.nɛ
+ +
3.1
+
+
+ + + +alt, vorige +old (be), former +vieux, vieil, ancien(ne) (être) + +
Ngbêne pôro tî lo abûba awe.
+ +
His old shoes are ruined.
+
+
+ + +
tl
+
+
(être) vieux, vieil, ancien(ne)
+
+
alt, vorige
+
+
old, former
+
+ +
1589
+
+
+
+ + +
fâ këkë
+
+ + + + + + + + +Baum fällen +fell a tree +abattre un arbre + + + + +
ek
+
+
abattre un arbre
+
+
Baum fällen
+
+
fell a tree
+
+ +
0713
+
+
+ + + +sägen +saw wood +scier le bois +
sägen
+
+
saw wood
+
+
scier le bois
+
+ +
0719
+
+
+
+ + +
kamba
+
+ + + + +Machete, Buschmesser, Entermesser +machete, cutlass +coupe-coupe, machette + + +
tl
+
+
coupe-coupe, machette
+
+
Machete, Buschmesser, Entermesser
+
+
machete, cutlass
+
+ + + + + +
0755
+
+
+
+ + +
lâi
+
+ + + + +Knoblauch +garlic +ail + + +
tl
+
+
ail
+
+
garlic
+
+
Knoblauch
+
+ +
1221
+
+
+
+ + +
ndo adë
+
+ + + + + +es ist kalt +it's cold +il fait froid + + +
ek
+
+
es ist kalt
+
+
+ +es ist ruhig/windstill +it's calm +c'est calme + +
ek
+
+
es ist ruhig/windstill
+
+
+
+ + +
hânge
+
+ + + + +Achtung +warning +attention + + +
ek
+
+
Achtung
+
+
attention
+
+
warning
+
+
+
+ + +
koko
+
+ + +
kɔ.kɔ
+ +
1.1
+
+
+ + + +Blatt-Gemüse +plant used in sauce +plante à sauce + + +
ek
+
+
Blatt-Gemüse
+
+
+
+ + +
da-kûku
+
+ + + + +Küche +kitchen +cuisine + + +
ek
+
+
cuisine
+
+
kitchen
+
+
Küche
+
+ + +
0673
+
+
+
+ + +
gbaa
+
+ + + + +without doubt, certainly, most likely + +
Gbaa lo yeke gä kêkerêke.
+ +
Without doubt he will come tomorrow.
+
+
+
certainly
+
+
+
+ + +
gbâ
+
+ + + + +Geschenk +gift +cadeau, don + + +
tl
+
+
cadeau, don
+
+
Geschenk
+
+
gift
+
+ +
0829
+
+
+
+ + +
*nîlaâ
+
+ + + + + + +genau, so ist es +true, that's right +c'est ça, voilà + + + +
ek
+
+
genau, so ist es
+
+
+
+ + +
zî lê
+
+ + + + + + +wachsam (sein) +watchful, careful (be) +vigilant (être) + + + + +
ek
+
+
wachsam (sein)
+
+
+
+ + +
yôo
+
+ + +
from Fulfulde?
+
+ + + + +
+ + +
bäkpä
+
+ + + + +Erdnußbutter +crunchy peanut butter +pâte d'arachide + + +
ek
+
+
Erdnußbutter
+
+
+
+ + +
mbênî
+
+ + + + +einige +some +quelque + + + + +
ek
+
+
einige
+
+
quelque
+
+
some
+
+ + +
1681
+
+
+ + + +andere +other +autre + + +
& i-47
+
+ +
ek
+
+
andere
+
+
autre
+
+
other
+
+ + +
1682
+
+
+ + + +manchmal +sometimes +des fois + +
Mbênî ï dûtï kpô, mbênî ï sâra dödö.
+ +
Sometimes we sit still, sometimes we dance.
+
+
+ + +
ek
+
+
manchmal
+
+
sometimes
+
+
+ + + +wieder, noch +again +encore + +
Mbï gue na ködörö mbênî. [LB]
+ +
I returned again to the village.
+
Je suis de nouveau allé au village.
+
+
+ + +
tl
+
+
again
+
+
encore
+
+
wieder, noch
+
+ +
1359
+
+
+
+ + +
ponö
+
+ + +
pɔ.nɔ
+ +
1.2
+
+
+ + + +Elend, Not +misery +misère + + +
ek
+
+
Elend, Not
+
+
misère
+
+
misery
+
+
+
+ + +
laâ
+
+ + + + +dies ist, dies sind +it is +c'est, ce sont + +
ek
+
+
dies ist, dies sind
+
+
+
+ + +
likünü
+
+ + + + + + + +Schienbein +shin +tibia + + +
tl
+
+
Schienbein
+
+
shin
+
+
tibia
+
+ +
0067
+
+
+
+ + +
ndö tî mabôko
+
+ + + + + + + + + + + + +Schulter +shoulder +épaule + +
épaule
+
+
Schulter
+
+
shoulder
+
+ +
0031
+
+
+
+ + +
balëûse na okü
+
+ + + + +fünfundzwanzig (25) +twenty-five (25) +vingt-cinq (25) + +
fünfundzwanzig (25)
+
+
twenty-five (25)
+
+
vingt-cinq (25)
+
+ +
chan_03
+
+
+
+ + +
lîga
+
+ + + + +Wurfmesser +throwing knife +couteau de jet + + +
tl
+
+
couteau de jet
+
+
throwing knife
+
+
Wurfmesser
+
+ +
0787
+
+
+
+ + +
bata (môlengê)
+
+ + + + + + + + +(ein Kind) großziehen, erziehen +bring up (a child) +élever (un enfant) + + +
tl
+
+
(ein Kind) großziehen, erziehen
+
+
bring up (a child)
+
+
élever (un enfant)
+
+ +
0495
+
+
+
+ + +
yângâ nî
+
+ + + + + + + +Rand +edge +bord, marge + + +
tl
+
+
bord, marge
+
+
edge
+
+
Rand
+
+ + +
1393
+
+
+
+ + +
sûku
+
+ + + + +schwellen +swell +enfler, gonfler + + + + +
tl
+
+
enfler, gonfler
+
+
schwellen
+
+
swell
+
+ +
1528
+
+
+ + + +ausschimpfen +scold +gronder + + +
ek
+
+
ausschimpfen
+
+
gronder
+
+
scold
+
+
+ + + +böse (sein) +angry (be) +fâché (être) + + +
ek
+
+
auf jemanden wütend (sein)
+
+ +
0279
+
+
+
+ + +
wü pupu hîo hîo
+
+ + + + + + + + + + + + + + + + +hecheln +pant +haleter + + +
tl
+
+
haleter
+
+
hecheln
+
+
pant
+
+ +
0109
+
+
+
+ + +
sükülängö terê nzönî
+
+ + + + +Sauberkeit +cleanliness +propreté + +
i-830
+
+
+
+ + +
wên
+
+ + +
wɛ̃
+ +
3
+
+
+ + + +Metall +metal +métal + + +
ek
+
+
metal
+
+
métal
+
+
Metall
+
+
+ + + +Eisen +iron +fer + + +
tl
+
+
Eisen
+
+
fer
+
+
iron
+
+ +
1279
+
+
+
+ + +
mû pokô tî zo.
+
+ + + + + + + + + + + + + + + + +verfolgen +follow +suivre +
follow
+
+
suivre
+
+
verfolgen
+
+
+
+ + +
+
+ + +
le / lɛ
+ +
3
+
+
+ + + +Gesicht +face +visage + + + + +
tl
+
+
face
+
+
Gesicht
+
+
visage
+
+ +
0005
+
+
+ + + +Auge +eye +œil + +
Tênë apîka li tî lo. Lê tî lo avûko.
+
+ + +
tl
+
+
Auge
+
+
eye
+
+
œil
+
+ +
0006
+
+
+ + + +Oberfläche +surface +surface + + +
ek
+
+
Oberfläche
+
+
surface
+
+
surface
+
+
+ + + +Frucht +fruit +fruit + + + + +
ek
+
+
Frucht
+
+
fruit
+
+
fruit
+
+ +
1207
+
+
+ + + +Kern +pit +noyau + +
lê tî mângo.
+ +
Mangokern
+
mango pit
+
noyau de mangue
+
+
+ + +
ek
+
+
Kern
+
+
noyau
+
+
pit
+
+ + +
1198
+
+
+ + + +Samen +seed +graine, semence + + +
1202
+
+
+
+ + +
maseka-kôlï
+
+ + + + + + + + + + + + +junger Mann +young man +jeune homme + + +
tl
+
+
jeune homme
+
+
junger Mann
+
+
young man
+
+ + +
0338
+
+
+
+ + +
ngäsâ
+
+ + + + +wilde Jamswurzel +wild yam +igname sauvage + + +
ek
+
+
wilde Jamswurzel
+
+
+
+ + +
môlengê
+
+ + +
mo.lɛ.ngɛ
+ +
3.1.3
+
+
+ + + +Kind +child +enfant + + + + +
tl
+
+
child
+
+
enfant
+
+
Kind
+
+ + +
0334
+
+
+
+ + +
kïön
+
+ + +
ki.ɔ̰
+ +
2.2
+
+
+ + + +Egoismus +selfishness +égoïsme + + +
ek
+
+
égoïsme
+
+
Egoismus
+
+
selfishness
+
+
+ +egoistisch +selfish +égoïste + + +
ek
+
+
égoïste
+
+
egoistisch
+
+
selfish
+
+ +
0302
+
+
+
+ + +
kpîngba
+
+ + + + + + + +(ver-)stärken +strengthen, reinforce +fortifier, renforcer + + +
ek
+
+
(ver-)stärken
+
+
+
+ + +
kautchü
+
+ + + + +Gummi +rubber +caoutchouc, latex + + +
tl
+
+
caoutchouc, latex
+
+
Gummi
+
+
rubber
+
+ +
1243
+
+
+
+ + +
+
+ + + + + + + +Nacht +night +nuit + + + + +
tl
+
+
Nacht
+
+
night
+
+
nuit
+
+ +
1384
+
+
+
+ + +
wanganga
+
+ + + + +Artzt +doctor +médecin + + +
ek
+
+
Artzt
+
+
doctor
+
+
médecin
+
+
+
+ + +
tênë tî töngö yê na ndönî
+
+ + + + + + + + + + + + + + + + +Kochstein +cooking stone +pierre à cuire + + +
tl
+
+
cooking stone
+
+
Kochstein
+
+
pierre à cuire
+
+ + +
0614
+
+
+
+ + +
nzöbê
+
+ + + + +Güte +goodness +bonté + + +
ek
+
+
bonté
+
+
goodness
+
+
Güte
+
+
+ + + +Gnade +grace +grâce + + +
ek
+
+
Gnade
+
+
grace
+
+
grâce
+
+
+
+ + +
gbï
+
+ + + + + + + +festbinden +tie up +attacher, lier + + +
ek
+
+
attacher, lier
+
+
festbinden
+
+
tie up
+
+ +
0656
+
+
+
+ + +
be lê tî ... na ndö tî ...
+
+ + + + + + + + + + + + + + + + + + + + +drohen +to threaten +menacer + +
+ + +
pupu
+
+ + + + +Wind +wind +vent + + +
tl
+
+
vent
+
+
wind
+
+
Wind
+
+ +
1330
+
+
+ + + +Luft +air (breathed) +air (respiré) + + +
tl
+
+
air (breathed)
+
+
air (respiré)
+
+
Luft
+
+ +
1314
+
+
+
+ + +
mênë sô alütï na yâ tî pörö tî terê
+
+ + + + + + + + + + + + + + + + + + + + +Prellung, blauer Fleck +bruise +contusion, bleu + + +
tl
+
+
bruise
+
+
contusion, bleu
+
+
Prellung, blauer Fleck
+
+ + +
0215
+
+
+
+ + +
bâge
+
+ + + + +Fingerring +ring (finger) +bague, anneau (de doigt) + + +
tl
+
+
bague, anneau (de doigt)
+
+
Fingerring
+
+
ring (finger)
+
+ +
0554
+
+
+
+ + +
hûru yângâ
+
+ + + + + + + + + + + +pfeifen +whistle +siffler + + +
ek
+
+
pfeifen
+
+
siffler
+
+
whistle
+
+ +
0882
+
+
+
+ + +
mû na (mbênî zo)
+
+ + +
mû na
+ +
+ +
+ +
+ + + + + + + +angebot +offer +offrir + +
angebot
+
+
offer
+
+
offrir
+
+ + +
0835
+
+
+ + + +geben +give +donner + + +
tl
+
+
donner
+
+
geben
+
+
give
+
+ + +
0809
+
+
+
+ + +
sâra pâsi na
+
+ + + + + + + + + + + + + + +foltern +to torture +torturer + +
+ + +
sûpu
+
+ + + + +Suppe +soup, broth +soupe + + +
tl
+
+
soup, broth
+
+
soupe
+
+
Suppe
+
+ +
0573
+
+
+
+ + +
sûru wâlï na ngangü
+
+ + + + + + + + + + + + + + + + +Vergewaltigung +rape +viol + + +
tl
+
+
rape
+
+
Vergewaltigung
+
+
viol
+
+ +
0518
+
+
+
+ + +
asï
+
+ + + + +voll (sein) +full (be) +plein (être) + + +
tl
+
+
(être) plein
+
+
full
+
+
voll (sein)
+
+ +
0636
+
+
+
+ + +
+
+ + + + +schneiden +cut +couper + + + + +
tl
+
+
couper
+
+
cut
+
+
schneiden
+
+ +
0592
+
+
+ + + +aufschneiden (Früchte) +cut open (fruit) +fendre, ouvrir avec un couteau + + +
tl
+
+
aufschneiden (Früchte)
+
+
cut open (fruit)
+
+
fendre, ouvrir avec un couteau
+
+ +
0593
+
+
+ + + +schneiden +slice +trancher + + +
ek
+
+
schneiden
+
+
slice
+
+
trancher
+
+ + +
0594
+
+
+ + + +zerbrechen +break +casser + + +
ek
+
+
break
+
+
casser
+
+
zerbrechen
+
+ +
1460
+
+
+ + + +töten +kill +tuer + + +
tl
+
+
kill
+
+
töten
+
+
tuer
+
+ +
0511
+
+
+ + + +überqueren +cross +traverser +
cross
+
+
traverser
+
+
überqueren
+
+ +
0850
+
+
+
+ + +
papâi
+
+ + + + + + + +Papaya +papaya +papaye + + +
Carica papaya
+
+ +
ek
+
+
papaya
+
+
Papaya
+
+
papaye
+
+ +
1213
+
+
+
+ + +
nzönî-bê
+
+ + + + + + + + +Freundlichkeit, Güte +kindness, goodness +gentillesse, bonté + + +
ek
+
+
Freundlichkeit, Güte
+
+
+ + + +Gnade +grace +grâce + + +
ek
+
+
Gnade
+
+
grace
+
+
grâce
+
+
+
+ + +
komandêe
+
+ + +
kɔ.ma.ndee
+ +
1.1.31
+
+
+ + + +befehlen +command +commander + + +
tl
+
+
befehlen
+
+
command
+
+
commander
+
+ +
0497
+
+
+
+ + +
na ndönî
+
+ + + + + + + + +außerdem +also, besides that +en plus + +
Mbï fûta nginza mîngi. Na ndönî âla hûnda ngâsa ôko!
+ +
I paid lots of money. On top of that, they asked for a goat!
+
+
+ +
ek
+
+
außerdem
+
+
+
+ + +
yingö sïönî
+
+ + + + + + + + + + + + +Dämon, böser Geist +demon, evil spirit +démon, mauvais esprit + + +
tl
+
+
Dämon, böser Geist
+
+
demon, evil spirit
+
+
démon, mauvais esprit
+
+ + +
0908
+
+
+
+ + +
sâa gbânda
+
+ + + + +Netz auswerfen +cast a net +jeter un filet + + +
ek
+
+
Netz auswerfen
+
+
+
+ + +
porosö
+
+ + +
po.ɾo.so
+
+ + + +Betrug, Schliche +trickery +tromperie, ruse + + +
ek
+
+
Betrug, Schliche
+
+
trickery
+
+
+ + + +Politik +politics +politique + + +
ek
+
+
politics
+
+
Politik
+
+
politique
+
+
+
+ + +
ngbangbo okü
+
+ + + + + + + + + + + + +fünf hundert (500) +five hundred (500) +cinq cents (500) + + +
tl
+
+
cinq cents (500)
+
+
five hundred (500)
+
+
fünf hundert (500)
+
+ +
1621
+
+
+
+ + +
kalä
+
+ + + +
Banda [LB]
+
+
+ + + +Schnecke +snail +escargot + + +
ek
+
+
escargot
+
+
Schnecke
+
+
snail
+
+ +
1094
+
+
+
+ + +
+
+ + +
ɾɔ
+ +
1
+
+
+ + + +sammeln +gather +ramasser + + +
ek
+
+
gather
+
+
ramasser
+
+
sammeln
+
+
+ + + +aufheben +pick up +ramasser + + +
tl
+
+
aufheben
+
+
pick up
+
+
ramasser
+
+ +
1425
+
+
+
+ + +
bala
+
+ + + + + + + +(be-) grüßen +greet +saluer + + +
ek
+
+
(be-) grüßen
+
+
greet
+
+
saluer
+
+ +
0443
+
+
+
+ + +
yeke sïönî mîngi
+
+ + + + + + +schlecht zu (sein) +very bad (be) +très mauvais (être) + +
Zo tî nzï sô ayeke sïönî mîngi.
+ +
This thief is very bad.
+
+
+
schlecht zu (sein)
+
+
+ +wütend (sein) +fierce (be) +féroce (être) + +
Ângbä ayeke sïönî mîngi. Âla fâ âzo tî gïngö nyama mîngi.
+ +
Buffalo are very fierce. They kill many hunters.
+
+
+ + +
tl
+
+
(être) féroce
+
+
fierce
+
+
wütend (sein)
+
+ +
0306
+
+
+
+ + +
ma
+
+ + + + +klettern +climb +grimper + + +
ek
+
+
climb
+
+
grimper
+
+
klettern
+
+
+ + + +(hinauf-) steigen +ascend, go up +monter + + +
tl
+
+
(hinauf-) steigen
+
+
ascend, go up
+
+
monter
+
+ +
1409
+
+
+
+ + +
tënë ayeke na li tî ...
+
+ + + + + + + + + + +schuldig (sein) +guilty (be) +coupable (être) + +
Zo tî nzï ayeke mbênî pandë tî zo sô tënë ayeke na li tî lo.
+ +
A thief is an example of a guilty person.
+
+
+ + +
tl
+
+
(être) coupable
+
+
guilty
+
+
schuldig (sein)
+
+ + +
0522
+
+
+
+ + +
nzêrê
+
+ + + + +Sperling, Spatz +sparrow +moineau + + +
ek
+
+
moineau
+
+
sparrow
+
+
Sperling, Spatz
+
+
+
+ + +
ngömbo
+
+ + +
ngo.mbo
+ +
2.1
+
+
+ +steril, unfruchtbar +sterile, barren +stérile + + +
ek
+
+
steril, unfruchtbar
+
+
stérile
+
+
+ + + +unfruchtbare Frau +barren woman +femme stérile + + +
tl
+
+
barren woman
+
+
femme stérile
+
+
unfruchtbare Frau
+
+ + +
0195
+
+
+
+ + +
lakerëe
+
+ + + + +Kreide +chalk +craie + + +
ek
+
+
chalk
+
+
craie
+
+
Kreide
+
+
+
+ + +
pendere nî ahön awe
+
+ + + + + + + + + + + + +verblaßen +fade +perdre l'éclat, se faner + +
Asâra ngû mîngi. Ndâli tî sô, pendere nî ahön awe.
+ +
It is old. On account of this, it has faded.
+
+
+ + +
tl
+
+
fade
+
+
perdre l'éclat, se faner
+
+
verblaßen
+
+ + +
1493
+
+
+
+ + +
ndâmbo kôlï/wâlï
+
+ + + + +Strolch +good-for-nothing +vaurien + + +
i-1056
+
+
+
+
diff --git a/tests/corpus/large/sango/sango.lift-ranges b/tests/corpus/large/sango/sango.lift-ranges new file mode 100644 index 0000000..f826763 --- /dev/null +++ b/tests/corpus/large/sango/sango.lift-ranges @@ -0,0 +1,32039 @@ + + + + + + +
The word is borrowed from another language
+
+ + +
The proto form of the word in another language
+
+
+ + + + + +
adv
+
adv
+
+ +
An adverb, narrowly defined, is a part of speech whose members modify verbs for such categories as time, manner, place, or direction. An adverb, broadly defined, is a part of speech whose members modify any constituent class of words other than nouns, such as verbs, adjectives, adverbs, phrases, clauses, or sentences. Under this definition, the possible type of modification depends on the class of the constituent being modified.
+
Dans un sens restreint, un adverbe modifie un verbe à propos d’informations concernant le moment, le lieu, la manière ou la direction. Dans un sens plus large, un adverbe modifie n’importe quel autre constituant autre que le nom, tel qu’un verbe, un adjectif, un adverbe, un syntagme, une proposition ou une phrase. Dans cette acception, le type de modification apportée par l’adverbe dépend de la classe du constituant qui est modifié.
+
+ +
+ + + +
n
+
n
+
+ +
A noun is a broad classification of parts of speech which include substantives and nominals.
+
+ +
+ + + +
pro-form
+
proforme
+
+ +
A pro-form is a part of speech whose members usually substitute for other constituents, including phrases, clauses, or sentences, and whose meaning is recoverable from the linguistic or extralinguistic context.
+
+ +
+ + + +
pro
+
pron
+
+ +
A pronoun is a pro-form which functions like a noun and substitutes for a noun or noun phrase.
+
Un pronom se substitue à un nominal (nom ou syntagme nominal).
+
+ +
+ + + +
interrog
+
pron.int
+
+ +
An interrogative pro-form is a pro-form that is used in questions to stand for the item questioned.
+
Une proforme interrogatif (pronom interrogatif) est une proforme (un pronom) remplaçant le terme sur lequel porte l’interrogation [Qui a-t-il vu ? Que voit-il ? Où va-t-il ?, etc.].
+
+ +
+ + + +
v
+
v
+
+ +
A verb is a part of speech whose members typically signal events and actions; constitute, singly or in a phrase, a minimal predicate in a clause; govern the number and types of other constituents which may occur in the clause; and, in inflectional languages, may be inflected for tense, aspect, voice, modality, or agreement with other constituents in person, number, or grammatical gender.
+
Un verbe est une partie du discours caractérisée syntaxiquement par sa fonction de prédicat. En tant que tel, il gouverne la structure argumentale de la proposition, c’est-à-dire le nombre d’arguments possibles. Dans les langues flexionnelles, il peut être fléchi en ce qui concerne le temps, l’aspect, la voix ou le mode ; il peut aussi être en accord avec d’autres constituants en ce qui concerne la personne, le nombre ou le genre. Du point de vue sémantique, il désigne généralement des événements et des actions ou encore des états.
+
+ +
+ + + +
TAM
+
+ +
+ + + + + + + +
Rep
+
+ +
+ + + + + + + +
Ideo
+
Ideo
+
Idéo
+
+ +
+ + + +
prt
+
partic
+
+ +
A particle is a part of speech whose members do not belong to one of the main classes of words, is invariable, and typically has grammatical or pragmatic meaning.
+
Une particule est une partie du discours qui n’appartient pas aux classes majeures de mot, qui est invariable et qui a généralement un sens grammatical ou pragmatique.
+
+ +
+ + + +
sup
+
+ +
Particle qui determine le degre d'un adjectif
+
+ +
+ + + +
nomprt
+
partic.nom
+
+ +
A nominal particle is a member of a closed class of particles that co-occur with nouns.
+
Une particule nominale est une particule qui modifie un nominal.
+
+ +
+ + + +
q
+
partic.interr
+
+ +
A question particle is a part of speech whose members signal a yes/no question.
+
Une particule interrogative est une particule indiquant une question polaire (réponse par oui ou par non).
+
+ +
+ + + +
adj
+
adj
+
+ +
An adjective is a part of speech whose members modify nouns. An adjective specifies the attributes of a noun referent. Note: this is one case among many. Adjectives are a class of modifiers.
+
Un adjectif est un modificateur du nom.
+
+ +
+ + + +
rel
+
relativis
+
+ +
A relativizer is a subordinating connective that links a relative clause to its head noun. It is distinguishable from a relative pronoun in that it does not have a nominal function within the relative clause.
+
Un relativiseur est un connecteur subordonnant qui relie une proposition relative à son antécédent, mais qui se distingue d’un pronom relatif en ce qu’il n’assume aucune fonction dans la proposition relative.
+
+ +
+ + + +
conn
+
conn
+
+ +
Also known as a conjunction, a connective is a class of parts of speech whose members syntactically link words or larger constituents, and expresses a semantic relationship between them. A conjunction is positionally fixed relative to one or more of the elements related by it, thus distinguishing it from constituents such as English conjunctive adverbs.
+
Appelé aussi conjonction, un connecteur est une partie du discours qui lie syntaxiquement des mots ou des constituants plus vastes. La place du connecteur est fixe par rapport à un ou plusieurs des éléments qu’elle relie.
+
+ +
+ + + +
subordconn
+
conn.subord
+
+ +
A subordinating connective is a connective that links constructions by making one of them a constituent of another. The subordinating conjunction typically marks the incorporated constituent.
+
Un connecteur subordonnant est un connecteur qui relie des constituants entre eux en faisant de l’un d’entre eux le constituant de l’autre. Le plus souvent, le connecteur subordonnant marque le constituant qui est incorporé dans l’autre.
+
+ +
+ + + +
advlizer
+
adverbialisateur
+
+ +
An adverbializer is a subordinating connective that links a subordinate clause to a main clause, and indicates that the subordinate clause has an 'adverbial' or interpropositional relation to the main clause, indicating purpose, condition, time, and location.
+
+ +
+ + + +
coordconn
+
conn.coord
+
+ +
A coordinating connective is a connective that links constituents without syntactically subordinating one to the other.
+
Un connecteur coordonnant est un connecteur qui relie des constituants entre eux sans établir une subordination de l’un ou de l’autre.
+
+ +
+ + + +
prenom
+
+ +
An element which may be compounded to the front of a noun to signal information such as size, color, etc..
+
+ +
+ + + +
existmrkr
+
marq.exist
+
+ +
An existential marker is a part of speech whose members are found in distinct clause types and which mark a referent's existence.
+
+ +
+ + + +
post
+
post
+
+ +
A postposition is an adposition that occurs after its complement.
+
+ +
+ + + +
Cplmt
+
+ +
+ + + + + + + + + + + +
interj
+
interj
+
+ +
An interjection is a part of speech, typically brief in form, such as one syllable or word, whose members are used most often as exclamations or parts of an exclamation. An interjection, typically expressing an emotional reaction, often with respect to an accompanying sentence, is not syntactically related to other accompanying expressions, and may include a combination of sounds not otherwise found in the language.
+
Une interjection est une partie du discours, généralement de forme brève (p.ex. une syllabe [Zut !], un mot [Ciel !]), indécomposable en morphèmes distincts, et qui est utilisée pour exprimer une réaction affective vive du locuteur. De façon générale, l’interjection n’est reliée syntaxiquement à aucun élément d’une phrase, mais forme à elle seule une phrase. Il n’est pas rare que certains sons ou certaines combinaisons de sons soient propres aux interjections.
+
+ +
+ + + + + + + +
preverb
+
+ +
An element which may be compounded to the front of a verb, to signal information such as tense, direction, etc..
+
+ +
+ + + +
num
+
num
+
+ +
A numeral is a part of speech whose members function most typically as adjectives or pronouns and express a number, or relation to the number, such as one of the following: quantity, sequence, frequency, fraction.
+
Un numéral est une sous-classe de nominaux fonctionnant généralement comme adjectifs ou pronoms et exprimant un nombre ou une relation à un nombre comme par exemple une quantité, une séquence, une fréquence ou une fraction.
+
+ +
+ + + +
dem
+
dém
+
+ +
A demonstrative is a determiner that is used deictically to indicate a referent's spatial, temporal, or discourse location. A demonstrative functions as a modifier of a noun, or a pronoun.
+
Un démonstratif est un déterminant déictique indiquant la situation spatiale, temporelle ou discursive du référent. Il fonctionne comme modificateur d’un nom ou d’un pronom.
+
+ +
+ + + +
quant
+
quant
+
+ +
A quantifier is a determiner that expresses a referent's definite or indefinite number or amount. A quantifier functions as a modifier of a noun, or a pronoun.
+
Un quantificateur est un déterminant qui précise la quantité précise ou non par laquelle le nom est défini. Il fonctionne comme modificateur d’un nom ou d’un pronom.
+
+ +
+ + + +
adp
+
adpos
+
+ +
An adposition is a part of speech whose members are of a closed set and occur before or after a complement composed of a noun phrase, noun, pronoun, or clause that functions as a noun phrase and forms a single structure with the complement to express its grammatical and semantic relation to another unit within a clause.
+
+ +
+ + + +
art
+
art
+
+ +
An article is a member of a small class of determiners that identify a noun's definite or indefinite reference, and new or given status.
+
Un article est un déterminant qui modifie le nom en apportant des précisions quant à la définitude (défini, indéfini) ou quant à la structure d’information (nouvelle, donnée).
+
+ +
+
+ + + + + +
pt
+
pt
+
+ +
A part/whole relation establishes a link between the sense for the whole (e.g., room), and senses for the parts (e.g., ceiling, wall, floor).
+
Une relation partie / tout établi un lien en ce qui concerne le sens tel que le tout (p.ex. chambre) désigne l’ensemble constitué par les parties recevant chacune une dénomination particulière (p.ex. plafond, mur, plancher, …)
+
+ +
Whole
+
Tout
+
+ +
wh
+
Tt
+
+ +
+ + + +
spec
+
spéc
+
+ +
A generic/specific relation establishes a link between the sense for the generic (e.g., bird), and senses for the specifics (e.g., robin, cardinal, dove).
+
Une relation générique / spécifique établi un lien en ce qui concerne le sens tel que le générique (p.ex. oiseau) s’applique à tous les membres d’une classe naturelle d’objets recevant chacun une dénomination spécifique (p.ex. pie, mésange, moineau, pigeon, …).
+
+ +
Generic
+
Générique
+
+ +
gen
+
gén
+
+ +
+ + + +
syn
+
syn
+
+ +
Use this type for synonym relationships (e.g., fast, fleet, hasty).
+
Utiliser ce champ pour les relations de synonymie, c’est-à-dire pour des mots ayant approximativement le même sens (p.ex. vite, rapidement, à la hâte, promptement, …).
+
+ +
+ + + +
ant
+
ant
+
+ +
Use this type for antonym relationships (e.g., fast, slow).
+
Utiliser ce champ pour les relations d’antonymie, c’est-à-dire pour des mots dont le sens est opposé ou contraire (p.ex. vite, lentement).
+
+ +
+ + + +
cal
+
cal
+
+ +
Use this type for calendar relationships (e.g., days of week, months in year).
+
Utiliser ce champ pour des relations calendaires (p.ex. jours / semaine, mois / année).
+
+ +
+ + + +
cf
+
cf
+
+ +
Use this type for relationships that cannot be classified by a specific label, or of which there are too few examples to warrant creating a custom lexical relation.
+
Utiliser ce champ pour des relations qui n’entrent pas clairement sous une rubrique existante, ou qui sont attestées par trop peu d’exemples pour que la création d’une relation lexicale spécifique soit justifiée.
+
+ +
+ + + +
clf. for
+
n.clfé
+
+ +
Use this relation for linking classifiers to the words that they classify.
+
Utiliser ce champ pour établir un lien entre les classificateurs et les mots qu’ils classifient.
+
+ +
Classifier
+
Classificateur
+
+ +
clf
+
clfr
+
+ +
+
+ + + + +
Gives anthropological information.
+
+ + +
Biblographic information.
+
+ + +
This note is an arbitrary comment not for publication
+
+ + +
Gives discourse information about a sense.
+
+ + +
This note gives encyclopedic information.
+
+ + +
General notes that do not fall in another clear category
+
+ + +
Gives grammatical information about a word.
+
+ + +
Gives phonological information about a word.
+
+ + +
Contains questions yet to be answered
+
+ + +
Gives information on the restriction of usage of a word.
+
+ + +
Gives the scientific name of a sense
+
+ + +
Gives sociolinguistic information about a sense.
+
+ + +
Contains information on sources
+
+ + +
Gives information on usage
+
+ + + +
Gives the literal meaning of a word.
+
+ + +
Gives semantic information about a sense.
+
+ + +
Gives a summary definition of a word.
+
+
+ + + +
1st dual
+
+ + +
1st exclusive
+
+ + +
1st inclusive
+
+ + +
1st person plural
+
+ + +
1st person singular
+
+ + +
2nd dual
+
+ + +
2nd plural
+
+ + +
2nd singular
+
+ + +
3rd dual
+
+ + +
3rd plural
+
+ + +
3rd singular
+
+ + +
-dual non-human or inanimate dual
+
+ + +
-plural non-human or inanimate plural
+
+ + +
-sing non-human or inanimate singulare
+
+ + +
plural form
+
+ + +
reduplication form
+
+ + +
singular
+
+
+ + + + + + + + + + + + + + + +
1
+
+ +
Use this domain for general words referring to the physical universe. Some languages may not have a single word for the universe and may have to use a phrase such as 'rain, soil, and things of the sky' or 'sky, land, and water' or a descriptive phrase such as 'everything you can see' or 'everything that exists'.
+
Classer dans ce champ lexical les termes génériques désignant le monde physique. Certaines langues peuvent avoir plusieurs mots pour désigner l’univers et employer des expressions telles que : « La pluie, le sol, les choses du ciel » ou « le ciel, la terre, et l’eau » ou une expression descriptive comme « tout ce qui est visible » ou « tout ce qui existe ».
+
+
+ + + +
1.1
+
+ +
Use this domain for words related to the sky.
+
Classer dans ce champ lexical le vocabulaire associé au ciel.
+
+
+ + + +
1.1.1
+
+ +
Use this domain for words related to the sun. The sun does three basic things. It moves, it gives light, and it gives heat. These three actions are involved in the meanings of most of the words in this domain. Since the sun moves below the horizon, many words refer to it setting or rising. Since the sun is above the clouds, many words refer to it moving behind the clouds and the clouds blocking its light. The sun's light and heat also produce secondary effects. The sun causes plants to grow, and it causes damage to things.
+
Classer dans ce champ lexical le vocabulaire associé au soleil. Le soleil a 3 fonctions principales : il se déplace, il donne de la lumière et de la chaleur. Ces trois fonctions sont présentes dans la plupart des mots dans ce champ lexical. Puisque le soleil descend et disparaît sous l’horizon, il existe bon nombre de mots ou d’expressions qui désignent son coucher et son lever. Comme il est au-dessus des nuages, plusieurs mots désignent sa disparition derrière les nuages et le fait que les nuages arrêtent ses rayons. Sa lumière et sa chaleur ont aussi d’autres effets. Le soleil fait croître les plantes, mais peut aussi causer des dommages.
+
+
+ + + +
1.1.1.1
+
+ +
Use this domain for words related to the moon. In your culture people may believe things about the moon. For instance in European culture people used to believe that the moon caused people to become crazy. So in English we have words like "moon-struck" and "lunatic." You should include such words in this domain.
+
Classer dans ce champ lexical le vocabulaire associé à la lune. Dans votre culture, il existe peut-être des croyances relatives à la lune. En Europe, par exemple, on pensait que la lune rend les gens fous. Ainsi en français, il existe des mots et des expressions tels que « coup de lune », et « lunatique » que l’on peut inclure dans ce champ lexical.
+
+
+ + + +
1.1.1.2
+
+ +
Use this domain for words related to the stars and other heavenly bodies.
+
Classer dans ce champ lexical le vocabulaire associé aux étoiles et aux autres corps célestes.
+
+
+ + + +
1.1.1.3
+
+ +
Use this domain for words related to planets (large objects that circle the sun, looking like bright wandering stars in the sky), comets (objects that circle the sun, looking like a star with a tail), meteors (small objects that come from space and burn up when they hit the earth's atmosphere, causing a streak of light across the sky), and asteroids (small objects that circle the sun), planetary moons (large objects that circle the planets). Some cultures do not study the stars and will have few or no words in this domain. Others cultures that study the stars will have many words. There are only five planets that people can see in the sky--Mercury, Venus, Mars, Jupiter, and Saturn. The others are only known from the scientific study of astronomy.
+
Classer dans ce champ lexical le vocabulaire associé aux planètes (gros objets gravitant autour du soleil, semblables à de grandes étoiles brillantes en mouvement dans le ciel), aux comètes (objets tournant autour du soleil, semblables à des étoiles avec une queue), météores ou météorites (petits objets venant de l’espace qui s’enflamment quand ils heurtent l’atmosphère terrestre, et qui se manifestent par une traînée lumineuse dans le ciel), sans oublier les astéroïdes (petits objets gravitant autour du soleil), les lunes planétaires (grands objets gravitant autour des planètes). Certaines cultures ne s’intéressent pas aux étoiles et n’ont que peu, voire pas, de termes dans ce champ lexical. D’autres cultures qui étudient les étoiles disposeront de nombreux termes. Seules cinq planètes sont visibles dans le ciel : Mercure, Vénus, mars, Jupiter et Saturne. Les autres ne sont connues que des astronomes.
+
+
+ + + +
1.1.2
+
+ +
Use this domain for words related to the air around us, including the air we breathe and the atmosphere around the earth.
+
Classer dans ce champ lexical le vocabulaire associé à l’air qui nous entoure, que l’on respire et à l’atmosphère qui enveloppe la terre.
+
+
+ + + +
1.1.2.1
+
+ +
Use this domain for words related to causing air to move.
+
Classer dans ce champ lexical le vocabulaire associé aux déplacements d’air.
+
+
+ + + +
1.1.3
+
+ +
Use this domain for words related to the weather.
+
Classer dans ce champ lexical le vocabulaire associé au temps, à la météorologie.
+
+
+ + + +
1.1.3.1
+
+ +
Use this domain for words related to the wind. Some words refer to when the wind begins and ends. The wind changes in speed, so some words refer to how fast the wind is moving. Try to rank these on a scale from very slow to very fast. These words may also be distinguished by what the wind does, since a fast wind does more things. These words may also be distinguished by how long the wind blows. Some words refer to the speed of the wind becoming faster or slower. Some words distinguish a steady wind from a wind in which the speed keeps changing. Some words refer to when the speed of the wind becomes faster for a short time. A steady wind moves in a particular direction, so there are words that include the direction of the wind. The direction of the wind may refer to the points of the compass, a neighboring geographical feature or area, or the direction in which the speaker is moving. Some words refer to a wind that moves in a small circle, making a pillar of dust or a funnel-shaped cloud. Some words refer to what the wind does, such as when it moves or damages something. People can feel the wind, so some words refer to how it feels. The wind makes noise, so there are words that refer to the sound of the wind. In some cultures there is a relation between the wind and spirits, so some words may refer to the activity of the spirits in the wind, or that the wind brings disease.
+
Classer dans ce champ lexical le vocabulaire associé au vent. Certains termes désignent le moment où le vent se lève ou s’arrête (tombe). La vitesse du vent est variable : il existe donc des mots qui décrivent la rapidité avec laquelle le vent souffle. Classer de préférence ces mots du plus lent au plus rapide. On peut distinguer aussi les mots qui désignent des effets particuliers du vent, comme ceux d’un vent fort par exemple ; les mots qui désignent la durée pendant laquelle le vent souffle ; ceux qui suggèrent une accélération ou un ralentissement de la vitesse du vent ; les mots qui permettent de différencier un vent constant d’un vent variable ; les mots associés à une brève accélération de la vitesse du vent. Un vent constant souffle dans une direction particulière : il existe donc des mots qui désignent la direction du vent. Il peut s’agir des points cardinaux, d’une région ou d’une zone géographique voisine ou de la direction dans laquelle se déplace celui qui parle. Certains mots s’appliquent au vent qui souffle en décrivant un petit cercle ou une spirale, soulevant une colonne de poussière ou un nuage en forme d’entonnoir. D’autres désignent les effets du vent (déplacement d’objets, dégâts, par exemple). Puisque l’on peut sentir le vent, il existe des mots pour décrire cette sensation. Le vent fait aussi du bruit : il existe donc des mots pour décrire le bruit du vent. Dans certaines cultures, le vent est lié aux esprits. Il existe donc des mots pour désigner l’activité des esprits dans le vent ou pour dire que le vent est cause de maladies.
+
+
+ + + +
1.1.3.2
+
+ +
Use this domain for words related to the clouds.
+
Classer dans ce champ lexical le vocabulaire associé aux nuages.
+
+
+ + + +
1.1.3.3
+
+ +
Use this domain for words related to the rain.
+
Classer dans ce champ lexical le vocabulaire associé à la pluie.
+
+
+ + + +
1.1.3.4
+
+ +
Use this domain for words related to snow, ice, sleet, and hail.
+
Classer dans ce champ lexical les mots qu’on associe à la neige, au verglas, à la neige fondue et à la grêle.
+
+
+ + + +
1.1.3.5
+
+ +
Use this domain for words related to storms.
+
Classer dans ce champ lexical les mots associés aux tempêtes.
+
+
+ + + +
1.1.3.6
+
+ +
Use this domain for words related to lightning and thunder.
+
Classer dans ce champ lexical les mots associés aux éclairs et au tonnerre.
+
+
+ + + +
1.1.3.7
+
+ +
Use this domain for words related to floods.
+
Classer dans ce champ lexical les mots associés aux inondations.
+
+
+ + + +
1.1.3.8
+
+ +
Use this domain for words related to drought.
+
Classer dans ce champ lexical les mots associés à la sécheresse.
+
+
+ + + +
1.2
+
+ +
Use this domain for words referring to the planet we live on.
+
Classer dans ce champ lexical les mots ou expressions faisant référence à la planète où nous vivons.
+
+
+ + + +
1.2.1
+
+ +
Use this domain for words referring to the ground we stand on, the earth versus the sky.
+
Classer dans ce champ lexical le vocabulaire associé au sol sur lequel nous nous tenons, à la terre par opposition au ciel.
+
+
+ + + +
1.2.1.1
+
+ +
Use this domain for words related to mountains.
+
Classer dans ce champ lexical le vocabulaire associé aux montagnes.
+
+
+ + + +
1.2.1.2
+
+ +
Use this domain for words related to volcanoes.
+
Classer dans ce champ lexical le vocabulaire associé aux volcans.
+
+
+ + + +
1.2.1.3
+
+ +
Use this domain for words referring to land that is flat.
+
Classer dans ce champ lexical le vocabulaire associé à un terrain plat.
+
+
+ + + +
1.2.1.4
+
+ +
Use this domain for words related to valleys.
+
Classer dans ce champ lexical le vocabulaire associé aux vallées.
+
+
+ + + +
1.2.1.5
+
+ +
Use this domain for words referring to the area under the ground, and to holes in the ground.
+
Classer dans ce champ lexical le vocabulaire associé au sous-sol et aux trous dans le sol.
+
+
+ + + +
1.2.1.6
+
+ +
Use this domain for words referring to an area of land that has particular types of plants growing in it.
+
Classer dans ce champ lexical le vocabulaire associé aux types de plantes qui poussent dans un endroit donné.
+
+
+ + + +
1.2.1.7
+
+ +
Use this domain for words related to earthquakes. In some languages earthquakes are thought of as moving somewhere. In Amele (PNG) they say "mim nen" which means 'the earthquake came down (from above)'. In Northern Embera an earthquake is a "house-shaking". They say "a house-shaking went."
+
Classer dans ce champ lexical le vocabulaire associé aux tremblements de terre. Dans certaines langues, les tremblements de terre sont considérés comme venant d’ailleurs. En amélé (PNG), on dit « mim nen » ce qui signifie « le tremblement de terre est descendu » (d’au-dessus). En embéra du Nord, un tremblement de terre est un « tremblement de maison ». On dit « il est passé un tremblement de maison
+
+
+ + + +
1.2.2
+
+ +
Use this domain for general words referring to matter--what something is made out of, or a type of solid, liquid, or gas.
+
Classer dans ce champ lexical le vocabulaire générique qui fait référence à la matière : aux matériaux.
+
+
+ + + +
1.2.2.1
+
+ +
Use this domain for words referring to soil and dirt.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la terre et à la boue.
+
+
+ + + +
1.2.2.2
+
+ +
Use this domain for words referring to rock.
+
Classer dans ce champ lexical le vocabulaire associé à la roche.
+
+
+ + + +
1.2.2.3
+
+ +
Use this domain for words referring to metal.
+
Classer dans ce champ lexical le vocabulaire associé au métal.
+
+
+ + + +
1.2.2.4
+
+ +
Use this domain for naturally occurring elements, compounds, and minerals--things you can find in the ground.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des éléments naturels ou composites et à des minéraux, c’est-à-dire à ce qu’on trouve dans le sol.
+
+
+ + + +
1.2.2.5
+
+ +
Use this domain for words referring to jewels and precious stones.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux pierres précieuses.
+
+
+ + + +
1.2.3
+
+ +
Use this domain for words describing the different states of matter (solid, liquid, and gas), and words for changing from one to another.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux différents états de la matière (solide, liquide, gazeux) et qui sert à exprimer le passage d’un état à l’autre.
+
+
+ + + +
1.2.3.1
+
+ +
Use this domain for words referring to liquids.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux liquides.
+
+
+ + + +
1.2.3.2
+
+ +
Use this domain for words referring to oil.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au pétrole, à l’huile, à la graisse.
+
+
+ + + +
1.2.3.3
+
+ +
Use this domain for words referring to gas.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au gaz.
+
+
+ + + +
1.3
+
+ +
Use this domain for general words referring to water.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’eau.
+
+
+ + + +
1.3.1
+
+ +
Use this domain for general words referring to bodies of water.
+
Classer dans ce champ lexical les termes génériques qui font référence à des étendues d’eau.
+
+
+ + + +
1.3.1.1
+
+ +
Use this domain for words referring to bodies of standing water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des étendues d’eau.
+
+
+ + + +
1.3.1.2
+
+ +
Use this domain for words referring to bodies of standing water with plants growing in them.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des étendues d’eau où poussent des plantes.
+
+
+ + + +
1.3.1.3
+
+ +
Use this domain for words referring to bodies of flowing water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des masses d’eau qui se déplacent.
+
+
+ + + +
1.3.1.4
+
+ +
Use this domain for words referring to a place where water comes out of the ground.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un endroit où l’eau sort de terre.
+
+
+ + + +
1.3.1.5
+
+ +
Use this domain for words referring to land in contrast with the sea or river.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la terre par rapport à la mer ou à un cours d’eau.
+
+
+ + + +
1.3.2
+
+ +
Use this domain for words referring to the way in which water and other liquids move.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la manière dont l’eau et autres liquides se déplacent.
+
+
+ + + +
1.3.2.1
+
+ +
Use this domain for words referring to the way water moves over a surface, such as in a river or along the ground.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la manière dont l’eau se déplace sur une surface, par exemple dans un cours d’eau ou sur le sol.
+
+
+ + + +
1.3.2.2
+
+ +
Use this domain for words referring to water coming out of something (such as a container), or causing water to come out of something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’eau qui sort de quelque chose (un récipient, par exemple) ou à ce qui en fait sortir l’eau.
+
+
+ + + +
1.3.2.3
+
+ +
Use this domain for words referring to drops of water and what they do.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux gouttes d’eau et à ce qu’elles font.
+
+
+ + + +
1.3.2.4
+
+ +
Use this domain for words related to waves and what they do.
+
Classer dans ce champ lexical le vocabulaire associé aux vagues et à ce qu’elles font.
+
+
+ + + +
1.3.2.5
+
+ +
Use this domain for words describing the surface of water.
+
Classer dans ce champ lexical le vocabulaire qui sert à décrire la surface de l’eau.
+
+
+ + + +
1.3.2.6
+
+ +
Use this domain for words related to the tide.
+
Classer dans ce champ lexical le vocabulaire associé à la marée.
+
+
+ + + +
1.3.3
+
+ +
Use this domain for words referring to when something has water on it or water has soaked into it.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des choses sur lesquelles il y a de l’eau (ou qui sont gorgées d’eau).
+
+
+ + + +
1.3.3.1
+
+ +
Use this domain for words describing something that is dry.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de sec.
+
+
+ + + +
1.3.4
+
+ +
Use this domain for words referring to being in water or putting something in water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d’être dans l’eau ou de mettre quelque chose dans l’eau.
+
+
+ + + +
1.3.5
+
+ +
Use this domain for words referring to a mixture of water and a substance (such as salt or sugar) that dissolves in water.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un mélange d’eau et d’autre chose (sel, sucre…) qui se dissout dans l’eau.
+
+
+ + + +
1.3.6
+
+ +
Use this domain for words describing the quality or condition of water.
+
Classer dans ce champ lexical le vocabulaire qui décrit la qualité ou l’état de l’eau.
+
+
+ + + +
1.4
+
+ +
Use this domain for general words that relate to all living things.
+
Classer dans ce champ lexical le vocabulaire générique associé à tout ce qui vit.
+
+
+ + + +
1.4.1
+
+ +
Use this domain for words referring to dead things--things that were alive before, but aren't now.
+
Classer dans ce champ lexical les mots ou expressions qui font référence aux choses qui sont mortes : celles qui auparavant étaient en vie, mais qui ne le sont plus.
+
+
+ + + +
1.4.2
+
+ +
Use this domain for words referring to the spirits of things.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’esprit des choses.
+
+
+ + + +
1.5
+
+ +
Use this domain for general words for all plants. Use a book of pictures to identify plant names and the scientific name. Languages divide plants into various domains that are not always comparable from language to language. Criterial features may be characteristics (trees and bushes are distinguished by size and number of trunks) and use (grass and weeds are distinguished by their desirability). A common distinction is between trees and non-trees, with trees described as being big, woody, and having a life expectancy of several years, while non-trees are small, non-woody, and have a life expectancy of typically not more than one year (Heine, Bernd and Karsten Legere. 1995. Swahili plants. Rudiger Koppe Verlag: Koln.). Agricultural societies will divide plants into wild and cultivated. However most plants for which there are names have some use. Therefore it does not seem helpful to divide plant names into domains for useful and non-useful plants. Since only parts of plants are eaten, edible parts of plants are listed under the domain 'Food'. Some languages may have more domains than are used in this list, others may have fewer. The classification system used here does not agree entirely with the system used by botanists. For instance botanists do not classify all the tree species together. The palm trees belong to the class Monocotyledoneae and are classified with lilies, bananas, and orchids. Apple and cherry trees belong to the class Dicotyledoneae and are classified in the rose family along with roses and blackberries. The acacia tree also belongs to the class Dicotyledoneae and is classified in the pulse family along with lupines and beans. However most folk taxonomies bring all the trees together. The scientific classification system for plants and animals is taken from: Carruth, Gorton, ed. 1989. The Volume Library, Vols. 1 and 2. The Southwestern Company: Nashville.
+
Classer dans ce champ lexical les termes génériques pour tous les végétaux. Repérer sur un livre illustré le nom courant des végétaux et leur nom scientifique. Chaque langue a une manière spécifique de classer les végétaux, qui n’a pas nécessairement d’équivalence dans une autre langue. On peut distinguer les végétaux selon leur aspect (arbres, arbustes et buissons diffèrent par le nombre et la taille de leurs troncs) et par l’usage que l’on en fait. Ce qui différencie l’herbe (gazon, pelouse, herbage) des mauvaises herbes est qu’on recherche le gazon mais qu’on évacue les mauvaises herbes. On distingue en général entre les arbres et les arbustes ou arbrisseaux : on dit que les arbres sont grands et ligneux et qu’ils vivent plusieurs années, alors que les autres sont petits, non ligneux et que leur espérance de vie ne dépasse pas un an en général (HEINE (Bernd) et LEGERE (Karsten), Swahili plants, Cologne, édition Rudiger Koppe, 1995.) Dans les communautés rurales, les plantes sont classées en deux catégories : sauvages et cultivées. Cependant, la plupart des végétaux qui portent un nom servent à quelque chose. Il ne semble donc pas pertinent d’établir des listes de plantes utiles et de plantes inutiles. Puisqu’on consomme seulement certaines parties des végétaux, on classe leurs parties comestibles dans le champ lexical intitulé « nourriture ». Le nombre de champs lexicaux varie selon les langues. Le système de classification employé ici ne correspond pas tout à fait à celui des botanistes. En botanique, on ne met pas toutes les espèces d’arbres dans la même catégorie. Les palmiers, par exemple, font partie de l’embranchement des monocotylédones qui comprend les nénuphars, les bananiers et les orchidées. Les pommiers et les cerisiers font partie des dicotylédones, ainsi que les rosiers et les mûriers. L’acacia est lui aussi une dicotylédone, mais il fait partie de la famille des légumineuses avec les lupins et les haricots. Cependant, la plupart des classifications populaires mettent tous les arbres ensemble. Le système de classification scientifique des végétaux et des animaux est tiré de CARRUTH (Gorton), The Volume Library, Vol. 1 et 2, Nashville, The Southwestern Company, 1989.
+
+
+ + + +
1.5.1
+
+ +
Use this domain for trees--flowering plants with roots, stems, and leaves, which are large and have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the evergreen trees (Phylum Spermatophyta, Subdivision Gymnospermae). Evergreen trees do not have flowers, but have cone like fruits (pinecones) that contain seeds. Their leaves are shaped like needles and are retained for over a year.
+
Classer dans ce champ lexical le vocabulaire qui s’applique aux arbres et plus précisément à ceux qui fleurissent et qui ont un gros tronc ligneux, des racines, des branches et des feuilles (phylum des spermaphytes, embranchement des angiospermes) ainsi que les arbres à feuillage persistant (phylum des spermaphytes, embranchement des gymnospermes). Ces derniers n’ont pas de fleurs, mais ont des fruits en forme de cônes (pommes de pin) qui contiennent des graines nues. Ils conservent toute l’année leurs feuilles en forme d’aiguilles.
+
+
+ + + +
1.5.2
+
+ +
Use this domain for bushes and shrubs--plants that are smaller than trees and have several wooden trunks (Phylum Spermatophyta, Subdivision Angiospermae).
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux buissons et arbustes : végétaux plus petits que des arbres et qui ont plusieurs troncs (phylum des spermaphytes, embranchement des angiospermes).
+
+
+ + + +
1.5.3
+
+ +
Use this domain for small plants that have roots, stems, flowers, and seeds, but do not have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the seedless plants, such as ferns (phylum Pteridophyta, class Felicineae), horsetails (phylum Pteridophyta, class Equisetineae), and club mosses (phylum Pteridophyta, class Lycopodineae). Plants of the Pteridophyta phylum have no flowers or seeds. Ferns have large, divided, feather-like leaves, or fronds. Club mosses are small (rarely over one meter) evergreen plants with simple leaves resembling pine or hemlock needles. Sometimes they grow upright, but often trail on the ground, where they propagate by means of runners. Horsetails send up tall, vertical, jointed stalks with branches covered with scale like leaves.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux petites plantes qui ont des racines, des tiges, des fleurs et des graines, mais pas de tronc (phylum des spermaphytes, embranchement des angiospermes). On y inclut aussi des plantes dépourvues de graines telles que les fougères (phylum des ptéridophytes, famille des felicineae), la prêle (phylum des ptéridophytes, famille des équisétinées) et les mousses à tiges (phylum des ptéridophytes famille des lycopodiacées). Les ptéridophytes n’ont ni fleurs, ni graines. Les fougères ont de grandes feuilles en forme de plumes appelées frondes. Les mousses à tiges sont de petites plantes vertes à feuilles persistantes (elles dépassent rarement un mètre de haut) qui ressemblent à des aiguilles de pins ou de sapin-ciguë. Elles se développent vers le haut ou bien rampent sur le sol où elles se reproduisent par marcottage. Les prêles forment un bouquet de grandes tiges jointes et ramifiées, couvertes de feuilles en forme d’écailles.
+
+
+ + + +
1.5.4
+
+ +
Use this domain for mosses (phylum Bryophyta, class Musci), liverworts (phylum Bryophyta, class Hepaticae), fungi (phylum Thallophyta, subdivision Fungi), algae (phylum Thallophyta, subdivision Algae), and lichens. These plants do not have true roots, stems, or leaves. The mosses are small, green, flowerless plants that grow in moist environments and look like velvety or feathery growths carpeting the ground, tree trunks, and rocks. The liverworts are similar to the mosses with a flat and branching growth pattern. The algae possess green chlorophyll. They vary from one-celled organisms, which sometimes live in colonies such as pond scum, to complex organisms such as seaweed. The fungi do not possess chlorophyll and feed off of other organic material. Lichens consist of a fungus and an algae growing together. They commonly grow on trunks of trees and rocks. Some are flat and leafy, and some are moss like.
+
Classer dans ce champ lexical le vocabulaire qui désigne les mousses (phylum des bryophytes, famille des mousses), les hépatiques (phylum des bryophytes, famille des hépatiques), les champignons (phylum des thallophytes, embranchement des champignons), les algues (phylum des thallophytes, embranchement des algues) ainsi que les lichens. Ces plantes n’ont pas vraiment de racines, de tiges ou de feuilles. Les mousses sont de petites plantes vertes dépourvues de fleurs, qui poussent dans un environnement humide et ressemblent à du velours ou à du duvet qui tapisse le sol, le tronc des arbres et les rochers. Les hépatiques ressemblent à de la mousse, elles sont plates et poussent en se ramifiant. Les algues contiennent de la chlorophylle verte. Ce sont des organismes unicellulaires qui forment des colonies dans la vase des mares ou bien des organismes complexes comme le varech. Les champignons, quant à eux, n’ont pas de chlorophylle et se nourrissent d’autres éléments organiques. Les lichens sont formés d’un champignon et d’une algue qui poussent ensemble. On les trouve souvent sur les troncs d’arbres ou sur les rochers. Certains lichens sont plats et touffus, d’autres ressemblent à de la mousse.
+
+
+ + + +
1.5.5
+
+ +
Use this domain for words that refer to parts of a plant. Start with general words that all plants have. Then think through each major type of plant. Finish by thinking of specific plants that are well known (usually cultivated crops) and that have words for specific parts (e.g. tassel on a corn/maize cob).
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux parties d’une plante. Commencer par des termes génériques employés pour tous les végétaux. Chercher ensuite quels sont les types de végétaux les plus importants. Terminer en citant des plantes bien connues (en général cultivées) et pour lesquelles il existe un vocabulaire désignant certaines de leurs parties (ex. barbe d’un épi de maïs, gland du chêne).
+
+
+ + + +
1.5.6
+
+ +
Use this domain for words related to the growth of plants.
+
Classer dans ce champ lexical le vocabulaire associé à la croissance des végétaux ou plantes.
+
+
+ + + +
1.5.7
+
+ +
Use this domain for words related to plant diseases.
+
Classer dans ce champ lexical le vocabulaire associé aux maladies des végétaux ou plantes.
+
+
+ + + +
1.6
+
+ +
Use this domain for general words referring to animals.
+
Classer dans ce champ lexical les termes génériques qui font référence aux animaux.
+
+
+ + + +
1.6.1
+
+ +
Use this domain for words describing types of animals. Use a book of pictures to identify each species and its scientific name. This section is organized according to the scientific, biological classification of animals. It may not correspond to the local classification of animals (folk taxonomy), which are often based on how people relate to animals (tame/wild, edible/work). Use this domain for words referring to large classes of animals that do not correspond to the scientific classification. For instance this would be the place for a word like 'flying animal', which includes birds, bats, and flying insects.
+
Classer dans ce champ lexical les mots qui décrivent des types d’animaux. Identifier sur un livre d’images chaque espèce et son nom scientifique. Dans cette section, les noms des animaux sont donnés selon la classification de la biologie animale. Celle-ci peut ne pas correspondre à la classification locale qui se fonde souvent sur la relation que l’homme entretient avec eux (taxonomie populaire) : animaux domestiques, sauvages, comestibles, utiles ou nuisibles. Classer dans ce champ lexical les mots qui font référence à de grandes catégories d’animaux qui ne correspondent pas à la classification scientifique. On pourrait, par exemple appeler « animaux volants » les oiseaux, chauves-souris et insectes volants.
+
+
+ + + +
1.6.1.1
+
+ +
Use this domain for general words referring to mammals (phylum Chordata, class Mammalia).
+
Classer dans ce champs lexical les termes génériques qui font référence aux mammifères (embranchement des chordés, classe des mammifères).
+
+
+ + + +
1.6.1.1.1
+
+ +
Use this domain for primates (phylum Chordata, class Mammalia, order Primates).
+
Classer dans ce champ lexical les primates (embranchement des chordés, classe des mammifères, ordre des primates).
+
+
+ + + +
1.6.1.1.2
+
+ +
Use this domain for carnivores--meat-eating animals (phylum Chordata, class Mammalia, order Carnivora).
+
Classer dans ce champ lexical les carnivores : animaux qui se nourrissent d’autres animaux (embranchement des chordés, classe des mammifères, ordre des carnivores).
+
+
+ + + +
1.6.1.1.3
+
+ +
Use this domain for even-toed hoofed animals (phylum Chordata, class Mammalia, order Artiodactyla), odd-toed hoofed animals (phylum Chordata, class Mammalia, order Perissodactyla), and elephants (phylum Chordata, class Mammalia, order Proboscidea).
+
Classer dans ce champ lexical les animaux ongulés avec un nombre pair de doigts (embranchement des chordés, classe des mammifères, ordre des artiodactyles), les animaux ongulés avec un nombre impair de doigts (embranchement des chordés, classe des mammifères, ordre des périssodactyles), et les éléphants (embranchement des chordés, classe des mammifères, ordre des proboscidiens).
+
+
+ + + +
1.6.1.1.4
+
+ +
Use this domain for rodents--gnawing animals (phylum Chordata, class Mammalia, order Rodentia), insect eating animals (phylum Chordata, class Mammalia, order Insectivora), rabbits (phylum Chordata, class Mammalia, order Lagomorpha), and hyraxes (phylum Chordata, class Mammalia, order Hyracoidea).
+
Classer dans ce champ lexical les rongeurs(embranchement des chordés, classe des mammifères, ordre des rongeurs), les mangeurs d’insectes (embranchement des chordés, classe des mammifères, ordre des insectivores), les lapins (embranchement des chordés, classe des mammifères, ordre des lagomorphes), et les damans (embranchement des chordés, classe des mammifères, ordre des hyracoïdes).
+
+
+ + + +
1.6.1.1.5
+
+ +
Use this domain for marsupials (phylum Chordata, class Mammalia, order Marsupialia). Marsupials carry their young in a pouch.
+
Classer dans ce champ lexical les marsupiaux (embranchement des chordés, classe des mammifères, ordre des marsupiaux). Les marsupiaux portent leur petit dans une poche abdominale.
+
+
+ + + +
1.6.1.1.6
+
+ +
Use this domain for mammals with few or no teeth--anteaters (phylum Chordata, class Mammalia, order Edentata), pangolins (phylum Chordata, class Mammalia, order Pholidota), aardvarks (phylum Chordata, class Mammalia, order Tubulidentata), and platypus--mammals that lay eggs (phylum Chordata, class Mammalia, order Monotremata).
+
Classer dans ce champ lexical des mammifères avec peu ou pas de dents : fourmilier (embranchement des chordés, classe des mammifères, ordre des édentés), pangolin (embranchement des chordés, classe des mammifères, ordre des phalidotes), oryctérope (embranchement des chordés, classe des mammifères, ordre des tubulidentés), et ornithorynque, mammifère ovipare (embranchement des chordés, classe des mammifères, ordre des monotrèmes).
+
+
+ + + +
1.6.1.1.7
+
+ +
Use this domain for mammals that live in the sea--whales and dolphins (phylum Chordata, class Mammalia, order Cetacea), seals (phylum Chordata, class Mammalia, order Pinnipedia), and sea cows (phylum Chordata, class Mammalia, order Sirenia).
+
Classer dans ce champ lexical les mammifères vivant dans les océans : baleines et dauphins (embranchement des chordés, classe des mammifères, ordre des cétacés), phoques (embranchement des chordés, classe des mammifères, ordre des pinnipèdes), et vaches marines (embranchement des chordés, classe des mammifères, ordre des siréniens).
+
+
+ + + +
1.6.1.1.8
+
+ +
Use this domain for bats--flying mammals (phylum Chordata, class Mammalia, order Chiroptera).
+
Classer dans ce champ lexical les chauves-souris : mammifères volants (embranchement des chordés, classe des mammifères, ordre des chiroptères).
+
+
+ + + +
1.6.1.2
+
+ +
Use this domain for birds (phylum Chordata, class Aves).
+
Classer dans ce champ lexical le vocabulaire employé pour les oiseaux (embranchement : chordés ; classe : oiseaux).
+
+
+ + + +
1.6.1.3
+
+ +
Use this domain for general words referring to reptiles (phylum Chordata, class Reptilia).
+
Classer dans ce champ lexical les termes génériques se rapportant aux reptiles (embranchement : chordés ; classe : reptiles).
+
+
+ + + +
1.6.1.3.1
+
+ +
Use this domain for words related to snakes.
+
Classer dans ce champ lexical le vocabulaire employé pour les serpents.
+
+
+ + + +
1.6.1.3.2
+
+ +
Use this domain for words related to lizards.
+
Classer dans ce champ lexical le vocabulaire employé pour les lézards.
+
+
+ + + +
1.6.1.3.3
+
+ +
Use this domain for words related to turtles.
+
Classer dans ce champ lexical le vocabulaire employé pour les tortues.
+
+
+ + + +
1.6.1.3.4
+
+ +
Use this domain for words referring to crocodiles.
+
Classer dans ce champ lexical le vocabulaire employé pour les crocodiles.
+
+
+ + + +
1.6.1.4
+
+ +
Use this domain for amphibians (phylum Chordata, class Amphibia).
+
Classer dans ce champ lexical le vocabulaire employé pour les amphibiens (embranchement : chordés ; classe : amphibien).
+
+
+ + + +
1.6.1.5
+
+ +
Use this domain for fish (phylum Chordata, class Osteichthyes).
+
Classer dans ce champ lexical le vocabulaire employé pour les poissons (embranchement : chordés ; classe : osteichthyes).
+
+
+ + + +
1.6.1.6
+
+ +
Use this domain for sharks and rays--animals with cartilage instead of bones (phylum Chordata, class Chondrichthyes), and eels (phylum Chordata, class Cyclostomata).
+
Classer dans ce champ lexical le vocabulaire employé pour les requins et les raies, animaux avec du cartilage au lieu d’os (embranchement : chordata ; classe : chondrichthyes), et les anguilles (embranchement : chordata ; classe : cyclostome).
+
+
+ + + +
1.6.1.7
+
+ +
Use this domain for the names of insect species (phylum Arthropoda, class Insecta). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.
+
Classer dans ce champ lexical les noms des espèces d’insectes (embranchement : arthropodes ; classe : insectes). A noter : les insectes ont six pattes et les araignées en ont huit. Cependant, dans certaines langues, la distinction entre les insectes et les araignées n’existe pas et il se peut que leurs locuteurs se servent d’autres caractéristiques pour subdiviser l’embranchement des arthropodes.
+
+
+ + + +
1.6.1.8
+
+ +
Use this domain for spiders (phylum Arthropoda, class Arachnida). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.
+
Classer dans ce champ lexical le vocabulaire employé pour les araignées (embranchement : arthropodes ; classe : arachnides). A noter : les insectes ont six pattes, alors que les araignées en ont huit. Cependant, certaines langues ne font pas la différence entre les insectes et les araignées, et peuvent utiliser d’autres caractéristiques pour subdiviser les arthropodes.
+
+
+ + + +
1.6.1.9
+
+ +
Use this domain for the names of worms, animals with shells, and other animals that do not fit into any of the other categories.
+
Classer dans ce champ lexical le vocabulaire employé pour les vers, les animaux avec des coquilles, et d'autres animaux qui n’entrent pas dans les autres catégories.
+
+
+ + + +
1.6.2
+
+ +
Use this domain for the parts of animals, especially those of mammals.
+
Classer dans ce champ lexical les parties du corps des animaux, notamment des mammifères.
+
+
+ + + +
1.6.2.1
+
+ +
Use this domain for the parts of a bird, but not general parts that belong to all animals.
+
Classer dans ce champ lexical les parties spécifiques de l’oiseau, mais pas celles appartenant à toutes les espèces animales.
+
+
+ + + +
1.6.2.2
+
+ +
Use this domain for the parts of a reptile.
+
Classer dans ce champ lexical les différentes parties du reptile.
+
+
+ + + +
1.6.2.3
+
+ +
Use this domain for the parts of a fish.
+
Classer dans ce champ lexical les différentes parties du poisson.
+
+
+ + + +
1.6.2.4
+
+ +
Use this domain for the parts of an insect.
+
Classer dans ce champ lexical les différentes parties de l’insecte.
+
+
+ + + +
1.6.2.5
+
+ +
Use this domain for the parts of small animals.
+
Classer dans ce champ lexical les différentes parties des animaux inférieurs.
+
+
+ + + +
1.6.3
+
+ +
Use this domain for words related to the life cycle of an animal.
+
Classer dans ce champ lexical le vocabulaire associé au cycle de la vie d’un animal.
+
+
+ + + +
1.6.3.1
+
+ +
Use this domain for words related to eggs.
+
Classer dans ce champ lexical le vocabulaire associé aux œufs.
+
+
+ + + +
1.6.4
+
+ +
Use this domain for actions of animals.
+
Classer dans ce champ lexical le vocabulaire associé aux actions des animaux.
+
+
+ + + +
1.6.4.1
+
+ +
Use this domain for ways in which animals move. Only include words specific for the movement of animals. For the movement of people use the domains under Movement. It is necessary to think through how each type of animal moves, especially the important ones.
+
Classer dans ce champ lexical les termes décrivant les différents mouvements des animaux, mais uniquement ceux qui sont spécifiques aux animaux. Le vocabulaire relatif aux mouvements des personnes est à classer dans le champ lexical « Mouvement ». Il faut passer en revue les mouvements de chaque espèce animale, surtout des animaux importants.
+
+
+ + + +
1.6.4.2
+
+ +
Use this domain for words referring to animals eating. Because animals often eat in very different ways from people, many languages will have words that are specific to the way an animal eats.
+
Classer dans ce champ lexical le vocabulaire associé à l’alimentation animale. Comme les animaux mangent souvent d’une manière très différente des humains, de nombreuses langues auront des termes spécifiques pour la façon dont un animal mange.
+
+
+ + + +
1.6.4.3
+
+ +
Use this domain for the sounds animals make. It is necessary to think through the sounds each type of animal makes, especially the important ones.
+
Classer dans ce champ lexical les différents sons produits par les animaux. Il faut passer en revue chaque famille d’animaux, notamment des animaux principaux.
+
+
+ + + +
1.6.5
+
+ +
Use this domain for animal homes. It is necessary to think through the homes of each type of animal, especially the important ones.
+
Classer dans ce champ lexical le vocabulaire associé à l’habitat des animaux. Il est nécessaire de bien prendre en compte le nom des habitations de chaque type d’animal, en particulier celles qui sont importantes.
+
+
+ + + +
1.6.6
+
+ +
Use this domain for words referring to groups of animals.
+
Classez dans ce champ lexical le vocabulaire associé aux groupes d’animaux.
+
+
+ + + +
1.6.7
+
+ +
Use this domain for words referring to male and female animals. Most languages have special words for the male and female of a species only for domesticated animals. Sometimes there will be a word for the male and not the female, and vice versa (male dog, bitch). Sometimes the word for one is also used generically +(cow for both female and generic).
+
Classer dans ce champ lexical le vocabulaire qui désigne les animaux mâles et femelles. La plupart des langues ont des mots spécifiques pour désigner le mâle et la femelle d’une espèce uniquement pour les animaux domestiques. Il existera parfois un mot pour désigner le mâle, mais il n’y en aura pas pour la femelle, et vice versa (un castor, une girafe). D’autres fois, le mot qui désigne l’un des deux genres se trouve également être le nom qui désigne l’animal en général (un chat, un mouton à la fois pour le nom du mâle et le nom générique).
+
+
+ + + +
1.7
+
+ +
Use this domain for words referring to nature and the environment--the world around us. Include words that refer to how people damage or protect nature.
+
Classer dans ce champ lexical les mots qui désignent la nature et l’environnement : le monde qui nous entoure. Y inclure les mots qui font référence à la façon dont les gens détruisent ou protègent la nature.
+
+
+ + + +
1.7.1
+
+ +
Use this domain for words describing something that is natural--something in the world around us, as opposed to something that has been made or changed by people.
+
Classer dans ce champ lexical les mots ou expressions qui décrivent une chose naturelle : quelque chose appartenant au monde qui nous entoure, par opposition à quelque chose qui a été créé ou modifié par l’homme.
+
+
+ + + +
2
+
+ +
Use this domain for general words for a person or all mankind.
+
Classer dans ce champ lexical les termes génériques désignant une personne ou l’humanité.
+
+
+ + + +
2.1
+
+ +
Use this domain for general words for the whole human body, and general words for any part of the body. Use a drawing or photo to label each part. Some words may be more general than others are and include some of the other words. For instance 'head' is more general than 'face' or 'nose'. Be sure that both general and specific parts are labeled.
+
Classer dans ce champ lexical les termes génériques désignant le corps humain ou l’une de ses parties. Utiliser un dessin ou une photographie pour illustrer chaque partie du corps humain. Certains mots seront plus génériques que d’autres et en incluront d’autres. Par exemple, « tête » est un terme plus générique que « visage » ou « nez ». S’assurer que les termes génériques et spécifiques sont tous illustrés.
+
+
+ + + +
2.1.1
+
+ +
Use this domain for the parts of the head.
+
Classer dans ce champ lexical les termes qui désignent les parties de la tête.
+
+
+ + + +
2.1.1.1
+
+ +
Use this domain for words related to the eye.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’oeil.
+
+
+ + + +
2.1.1.2
+
+ +
Use this domain for words related to the ear.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’oreille.
+
+
+ + + +
2.1.1.3
+
+ +
Use this domain for words related to the nose.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au nez.
+
+
+ + + +
2.1.1.4
+
+ +
Use this domain for words related to the mouth. Do not use this domain for words referring to eating, drinking, or speaking.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la bouche. Ne pas utiliser ce champ lexical pour des mots se rapportant à manger, boire ou parler.
+
+
+ + + +
2.1.1.5
+
+ +
Use this domain for words related to the teeth.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux dents.
+
+
+ + + +
2.1.2
+
+ +
Use this domain for the parts of the torso.
+
Classer dans ce champ lexical les termes désignant les différentes parties du torse.
+
+
+ + + +
2.1.3
+
+ +
Use this domain for words referring to a limb--either an arm or a leg.
+
Classer dans ce champ lexical les termes génériques associés à un membre : un bras ou une jambe.
+
+
+ + + +
2.1.3.1
+
+ +
Use this domain for the parts of the arm.
+
Classer dans ce champ lexical les noms des différentes parties du bras.
+
+
+ + + +
2.1.3.2
+
+ +
Use this domain for the parts of the leg and foot.
+
Classer dans ce champ lexical les parties de la jambe et du pied.
+
+
+ + + +
2.1.3.3
+
+ +
Use this domain for words related to the fingers and toes.
+
Classer dans ce champ lexical le vocabulaire associé aux doigts et aux orteils.
+
+
+ + + +
2.1.4
+
+ +
Use this domain for words related to the skin.
+
Classer dans ce champ lexical le vocabulaire associé à la peau.
+
+
+ + + +
2.1.5
+
+ +
Use this domain for words related to hair.
+
Classer dans ce champ lexical le vocabulaire associé aux cheveux ou aux poils.
+
+
+ + + +
2.1.6
+
+ +
Use this domain for words related to the bones and joints.
+
Classer dans ce champ lexical le vocabulaire associé aux os et aux articulations.
+
+
+ + + +
2.1.7
+
+ +
Use this domain for words related to the soft tissue of the body.
+
Classer dans ce champ lexical le vocabulaire associé aux tissus du corps.
+
+
+ + + +
2.1.8
+
+ +
Use this domain for words referring to the internal organs.
+
Classer dans ce champ lexical le vocabulaire associé aux organes internes.
+
+
+ + + +
2.1.8.1
+
+ +
Use this domain for functions of the heart and blood veins.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux différentes fonctions du cœur, ainsi que des veines et vaisseaux sanguins.
+
+
+ + + +
2.1.8.2
+
+ +
Use this domain for words referring to the stomach and to the normal functions of the stomach. Do not use this domain for stomach illness.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’estomac et aux fonctions normales de l’estomac. Ne pas classer les troubles digestifs dans ce champ lexical.
+
+
+ + + +
2.1.8.3
+
+ +
Use this domain for words related to the male reproductive organs.
+
Classer dans ce champ lexical le vocabulaire associé aux organes de reproduction masculins.
+
+
+ + + +
2.1.8.4
+
+ +
Use this domain for words related to the female reproductive organs and a woman's monthly menstrual cycle. Some of these terms may be taboo. Care must be exercised in which terms are included in the dictionary. A group of women should decide which terms are 'public' and can go in the dictionary, and which would be considered taboo, overly crude, or embarrassing. For example some societies have been afraid that their women will be taken advantage of if these terms are known.
+
Classer dans ce champ lexical le vocabulaire associé aux organes de reproduction féminins et au cycle menstruel de la femme. Certains de ces termes peuvent être tabous. Choisir soigneusement des mots ou expressions pouvant figurer dans le dictionnaire. Demander à un groupe de femmes de décider quels sont les termes « décents » qui peuvent être mis dans le dictionnaire, et ceux qui sont tabous, trop explicites ou embarrassants. Par exemple, dans certaines sociétés, les gens craignent que l’on abuse des femmes du fait que ces termes soient connus.
+
+
+ + + +
2.2
+
+ +
Use this domain for the functions and actions of the whole body. Use the subdomains in this section for functions, actions, secretions, and products of various parts of the body. In each domain include any special words that are used of animals.
+
Classer dans ce champ lexical l’ensemble des fonctions et des actions du corps. Mettre dans les champs secondaires de cette section les fonctions, actions et sécrétions des différentes parties du corps.
+
+
+ + + +
2.2.1
+
+ +
Use this domain for words related to breathing.
+
Classer dans ce champ lexical le vocabulaire associé à la respiration.
+
+
+ + + +
2.2.2
+
+ +
Use this domain for words related to coughing, sneezing, and other actions of the mouth and nose.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte au fait de tousser, d’éternuer, et à toutes autres actions liées à la bouche et au nez.
+
+
+ + + +
2.2.3
+
+ +
Use this domain for words related to spitting.
+
Classer dans ce champ lexical le vocabulaire associé au crachement.
+
+
+ + + +
2.2.4
+
+ +
Use this domain for words related to mucus in the nose.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte aux mucosités présentes dans le nez.
+
+
+ + + +
2.2.5
+
+ +
Use this domain for words related to blood and bleeding.
+
Classer dans ce champ lexical le vocabulaire associé au sang et au saignement.
+
+
+ + + +
2.2.6
+
+ +
Use this domain for words related to sweating.
+
Classer dans ce champ lexical le vocabulaire associé à la transpiration.
+
+
+ + + +
2.2.7
+
+ +
Use this domain for words related to urination.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’uriner.
+
+
+ + + +
2.2.8
+
+ +
Use this domain for words related to defecation.
+
Classer dans ce champ lexical le vocabulaire associé à la défécation.
+
+
+ + + +
2.3
+
+ +
Use this domain for general words related to all the senses--sight, hearing, smell, taste, and feeling. Some languages may not distinguish some of these senses, and some languages may have words for other senses. There are also other senses that animals have. If your language has words for other senses, include them here.
+
Classer dans ce champ lexical le vocabulaire associé à tous les sens : vue, ouïe, odorat, goût et toucher. Certaines langues ne font peut-être pas la distinction entre tous ces sens et d’autres, au contraire, peuvent avoir un mot pour des sens supplémentaires. Il y a aussi d’autres sens spécifiques aux animaux. Si votre langue a des mots pour d’autres sens, veuillez les inclure ici.
+
+
+ + + +
2.3.1
+
+ +
Use this domain for words related to seeing something (in general or without conscious choice).
+
Classer dans ce champ lexical le vocabulaire associé à la vue (en général ou sans choix conscient).
+
+
+ + + +
2.3.1.1
+
+ +
Use this domain for words that refer to looking at someone or something--to see something because you want to.
+
Classer dans ce champ lexical le vocabulaire associé au regard sur quelqu’un ou quelque chose : voir quelque chose parce qu’on le désire.
+
+
+ + + +
2.3.1.2
+
+ +
Use this domain for words that refer to watching someone or something--to look for some time at something that is happening because you are interested in it and want to know what is happening.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’observer quelqu’un ou quelque chose : regarder un certain temps quelque chose qui se passe parce que vous vous y intéressez et que vous voulez le connaître.
+
+
+ + + +
2.3.1.3
+
+ +
Use this domain for words referring to examining--to look carefully at something because you want to learn something about it.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’examiner : regarder attentivement quelque chose parce que vous voulez apprendre quelque chose à son sujet.
+
+
+ + + +
2.3.1.4
+
+ +
Use this domain for words related to showing something to someone so that they can see it--to cause someone to see something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de montrer quelque chose à quelqu’un pour qu’il puisse le voir : amener quelqu’un à voir quelque chose.
+
+
+ + + +
2.3.1.5
+
+ +
Use this domain for words related to being able to see something--words that describe something that can be seen, something that cannot be seen, something that is easy to see, or something that is difficult to see.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être capable de voir quelque chose : des mots qui décrivent ce qu’on peut voir, qu’on ne peut pas voir, qui se voit facilement ou qui se voit difficilement.
+
+
+ + + +
2.3.1.5.1
+
+ +
Use this domain for words referring to something appearing (becoming visible) and disappearing (becoming invisible).
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui apparaît (devient visible) et disparaît (devient invisible).
+
+
+ + + +
2.3.1.6
+
+ +
Use this domain for words that describe how well you can see through something.
+
Classer dans ce champ lexical le vocabulaire qui décrit jusqu’à quel point on peut voir à travers quelque chose.
+
+
+ + + +
2.3.1.7
+
+ +
Use this domain for words related to reflecting light.
+
Classer dans ce champ lexical le vocabulaire associé au fait de réfléchir la lumière.
+
+
+ + + +
2.3.1.8
+
+ +
Use this domain for words related to how something appears.
+
Classer dans ce champ lexical le vocabulaire associé à l’aspect exnérieur d’une chose.
+
+
+ + + +
2.3.1.8.1
+
+ +
Use this domain for words describing someone or something that is beautiful--pleasing in appearance,.
+
Classer dans ce champ lexical le vocabulaire associé à quelqu’un ou quelque chose de beau : d’apparence agréable.
+
+
+ + + +
2.3.1.8.2
+
+ +
Use this domain for words describing someone or something that is ugly--not pleasing in appearance.
+
Classer dans ce champ lexical le vocabulaire associé à une personne ou une chose qui est laide : d’apparence peu agréable.
+
+
+ + + +
2.3.1.9
+
+ +
Use this domain for words referring to glasses and other things people use to help them see.
+
Classer dans ce champ lexical le vocabulaire associé aux lunettes et autres aides visuelles.
+
+
+ + + +
2.3.2
+
+ +
Use this domain for words related to hearing something (in general or without conscious choice).
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’entendre quelque chose (en général ou inconsciemment).
+
+
+ + + +
2.3.2.1
+
+ +
Use this domain for words related to listening--to deliberately hear something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’écouter : chercher délibérément à entendre.
+
+
+ + + +
2.3.2.2
+
+ +
Use this domain for words referring to sounds.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux sons.
+
+
+ + + +
2.3.2.3
+
+ +
Use this domain for words referring to types of sounds.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux différents types de sons.
+
+
+ + + +
2.3.2.4
+
+ +
Use this domain for words that describe loud sounds.
+
Classer dans ce champ lexical le vocabulaire associé à des sons forts.
+
+
+ + + +
2.3.2.5
+
+ +
Use this domain for words that describe quiet sounds.
+
Classer dans ce champ lexical le vocabulaire associé à des sons doux.
+
+
+ + + +
2.3.3
+
+ +
Use this domain for words related to tasting something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de goûter quelque chose.
+
+
+ + + +
2.3.4
+
+ +
Use this domain for words related to smelling something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de sentir quelque chose.
+
+
+ + + +
2.3.5
+
+ +
Use this domain for words related to the sense of touch--to feel something with your skin, to feel hot or cold, to feel tired or rested.
+
Classer dans ce champ lexical le vocabulaire associé au toucher : percevoir quelque chose avec sa peau, éprouver les sensations de chaud ou froid, de fatigue ou de bien-être.
+
+
+ + + +
2.3.5.1
+
+ +
Use this domain for words related to feeling comfortable--to feel good in your body because there is nothing around you that makes you feel bad. This includes comfortable clothes, chair, bed, temperature, or journey.
+
Classer dans ce champ lexical le vocabulaire associé à la sensation de confort : se sentir bien dans son corps car il n’y a rien alentour qui soit cause de désagrément. Ceci inclut des éléments tels que vêtements, chaise, lit, température ou voyage.
+
+
+ + + +
2.4
+
+ +
Use this domain for general words related to the condition of the body.
+
Classer dans ce champ lexical les termes génériques en rapport avec la condition physique.
+
+
+ + + +
2.4.1
+
+ +
Use this domain for words that related to being strong, such as being able to lift a heavy object or being able to work hard.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fort, tel qu’être capable de soulever quelque chose de lourd ou de travailler dur.
+
+
+ + + +
2.4.2
+
+ +
Use this domain for words related to being weak.
+
Classer dans ce champ lexical le vocabulaire associé à la faiblesse.
+
+
+ + + +
2.4.3
+
+ +
Use this domain for words related to being energetic.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être plein d’énergie.
+
+
+ + + +
2.4.4
+
+ +
Use this domain for words related to being tired.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fatigué.
+
+
+ + + +
2.4.5
+
+ +
Use this domain for words related to resting.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se reposer.
+
+
+ + + +
2.5
+
+ +
Use this domain for words related to a person being healthy--not sick.
+
Classer dans ce champ lexical le vocabulaire associé à une personne en bonne santé : qui n’est pas malade.
+
+
+ + + +
2.5.1
+
+ +
Use this domain for words describing a person who is sick.
+
Classer dans ce champ lexical le vocabulaire qui décrit une personne malade.
+
+
+ + + +
2.5.1.1
+
+ +
Use this domain for words referring to recovering from sickness or injury.
+
Classer dans ce champ lexical le vocabulaire associé à la guérison d’une maladie ou d’une blessure.
+
+
+ + + +
2.5.2
+
+ +
Use this domain for general words for disease and for words referring to specific diseases.
+
Classer dans ce champ lexical le vocabulaire générique associé à la maladie et les mots désignant des maladies spécifiques.
+
+
+ + + +
2.5.2.1
+
+ +
Use this domain for words related to not having enough food.
+
Classer dans ce champ lexical le vocabulaire associé au fait de manquer de nourriture.
+
+
+ + + +
2.5.2.2
+
+ +
Use this domain for words related to skin diseases such as leprosy, boils, and rashes.
+
Classer dans ce champ lexical les mots associés aux maladies de la peau telles que la lèpre, les furoncles, et les éruptions.
+
+
+ + + +
2.5.2.3
+
+ +
Use this domain for words related to stomach illness.
+
Classer dans ce champ lexical le vocabulaire associé aux troubles digestifs.
+
+
+ + + +
2.5.2.4
+
+ +
Use this domain for words related to tooth decay.
+
Classer dans ce champ lexical le vocabulaire associé aux caries dentaires.
+
+
+ + + +
2.5.3
+
+ +
Use this domain for words related to injuring someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de blesser quelqu’un.
+
+
+ + + +
2.5.3.1
+
+ +
Use this domain for words related to amputating or losing a limb or other part of your body.
+
Classer dans ce champ lexical le vocabulaire associé à l'amputation ou la perte d'un membre ou d’une autre partie du corps.
+
+
+ + + +
2.5.3.2
+
+ +
Use this domain for words referring to poison--something that is bad for your body if you eat it, it gets on you, or an animal injects it into you.
+
Classer dans ce champ lexical le vocabulaire associé au poison : quelque chose qui est mauvais pour le corps si on le mange, s’il vient sur le corps ou si un animal l’injecte dans le corps.
+
+
+ + + +
2.5.4
+
+ +
Use this domain for general words for being disabled--to be injured or born with a condition, so that some part of your body does not work.
+
Classer dans ce champ lexical les termes génériques associés aux handicaps (congénitaux ou suite à un accident causant la perte de l'usage d'une partie du corps).
+
+
+ + + +
2.5.4.1
+
+ +
Use this domain for words related to being blind.
+
Classer dans ce champ lexical le vocabulaire associé à la cécité.
+
+
+ + + +
2.5.4.2
+
+ +
Use this domain for words related to having poor eyesight.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir une mauvaise vue.
+
+
+ + + +
2.5.4.3
+
+ +
Use this domain for words related to being deaf.
+
Classer dans ce champ lexical le vocabulaire associé à la surdité.
+
+
+ + + +
2.5.4.4
+
+ +
Use this domain for words related to being mute--unable to speak (usually because of being unable to hear).
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être muet : incapacité de parler (liée habituellement à l’incapacité d’entendre).
+
+
+ + + +
2.5.4.5
+
+ +
Use this domain for words related to having a birth defect.
+
Classer dans ce champ lexical le vocabulaire associé aux malformations congénitales.
+
+
+ + + +
2.5.5
+
+ +
Use this domain for words referring to the cause of disease.
+
Classer dans ce champ lexical le vocabulaire qui est associé à la cause d’une maladie.
+
+
+ + + +
2.5.6
+
+ +
Use this domain for words for symptoms of disease--something that happens to you when you get sick, something that shows that you are sick.
+
Classer dans ce champ lexical le vocabulaire associé aux symptômes d’une maladie : quelque chose qui arrive quand on tombe malade, quelque chose qui montre qu’on est malade.
+
+
+ + + +
2.5.6.1
+
+ +
Use this domain for words related to pain
+
Classer dans ce champ lexical le vocabulaire associé à la douleur.
+
+
+ + + +
2.5.6.2
+
+ +
Use this domain for words related to having a fever.
+
Classer dans ce champ lexical le vocabulaire associé à la fièvre.
+
+
+ + + +
2.5.6.3
+
+ +
Use this domain for words related to swelling of the body.
+
Classer dans ce champ lexical le vocabulaire associé aux enflures du corps.
+
+
+ + + +
2.5.6.4
+
+ +
Use this domain for words related to losing consciousness, including fainting, being knocked out, and anesthesia.
+
Classer dans ce champ lexical le vocabulaire associé à la perte de conscience, y compris le fait de s’évanouir (se trouver mal), d’être assommé, et à l’anesthésie.
+
+
+ + + +
2.5.6.5
+
+ +
Use this domain for words that describe the state of the mind when a person's mind is not working well or when he is not thinking very well.
+
Classer dans ce champ lexical le vocabulaire qui décrit l’état de l’esprit d’une personne qui ne fonctionne pas bien ou quand celle-ci ne réfléchit pas très bien.
+
+
+ + + +
2.5.6.6
+
+ +
Use this domain for words related to having a vision--when a person sees something that isn't there because something unusual has happened to their mind. Include unusual, abnormal, and paranormal states of consciousness, visions, hallucinations, and spiritually induced trances.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir une vision : une personne voit quelque chose qui n’est pas réel, parce que son esprit a subi quelque chose d’inhabituel. Inclure les états de conscience inhabituels, anormaux et paranormaux, les visions, les hallucinations, et les transes d’origine spirituelle.
+
+
+ + + +
2.5.7
+
+ +
Use this domain for words related to the treatment of disease and injury.
+
Classer dans ce champ lexical le vocabulaire associé au traitement des maladies et des blessures.
+
+
+ + + +
2.5.7.1
+
+ +
Use this domain for words referring to people who habitually take care of the sick and injured, such as those who do it for a living.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux gens qui s’occupent des malades et des blessés, tels ceux dont c’est le métier.
+
+
+ + + +
2.5.7.2
+
+ +
Use this domain for words related to medicine, types of medicine, and the application of medicine.
+
Classer dans ce champ lexical le vocabulaire associé aux médicaments, aux différents types de médicaments, et à l’administration de médicaments.
+
+
+ + + +
2.5.7.3
+
+ +
Use this domain for plants that are used for medicine.
+
Classer dans ce champ lexical les noms des plantes employées comme médicaments.
+
+
+ + + +
2.5.7.4
+
+ +
Use this domain for words that refer to a place where the sick and injured are treated.
+
Classer dans ce champ lexical le vocabulaire associé aux lieux où sont soignés les malades et les blessés.
+
+
+ + + +
2.5.7.5
+
+ +
Use this domain for words related to traditional medicine. There may be no distinction in terminology between 'modern medicine' and 'traditional medicine.' In that case this domain should be ignored. (Our purpose here is not to judge the value of traditional medicine, but to collect and describe the words used for it.)
+
Classer dans ce champ lexical le vocabulaire associé à la médecine traditionnelle. Ici il se peut qu’il n’y ait pas de distinction au point de vue terminologie entre « médecine moderne » et « médecine traditionnelle ». Dans ce cas, on laisse de côté ce champ lexical. (Notre but ici n’est pas de juger la valeur de la médecine traditionnelle, mais de recueillir et de décrire les mots qui s’y appliquent.)
+
+
+ + + +
2.5.8
+
+ +
Use this domain for words related to being mentally ill or disabled.
+
Classer dans ce champ lexical le vocabulaire associé aux maladies ou handicaps mentaux.
+
+
+ + + +
2.6
+
+ +
Use this domain for general words referring to being alive and to a person's lifetime.
+
Classer dans ce champs lexical les termes génériques associés au fait d’être vivant et à la durée de vie d’une personne.
+
+
+ + + +
2.6.1
+
+ +
Use this domain for words related to the state of being married.
+
Classer dans ce champ lexical les termes associés au statut de personne mariée.
+
+
+ + + +
2.6.1.1
+
+ +
Use this domain for all the words related to arranging a marriage. Cultures vary widely in their practices. In some cultures marriages are arranged by the parents. In other cultures a man must seek a wife for himself. Some cultures allow either practice or a combination of the two. So some of the questions below may be inappropriate to your culture.
+
Classer dans ce champ lexical le vocabulaire associé à l’arrangement d’un mariage. Les pratiques sont très différentes selon les cultures. Dans certaines, les mariages sont arrangés par les parents. Dans d’autres, un homme doit chercher lui-même sa femme. D’autres cultures permettent les deux ou une combinaison des deux. Aussi, les questions qui suivent ne correspondront peut-être pas à votre culture.
+
+
+ + + +
2.6.1.2
+
+ +
Use this domain for words related to the wedding ceremony.
+
Classer dans ce champ lexical le vocabulaire associé à la cérémonie de mariage.
+
+
+ + + +
2.6.1.3
+
+ +
Use this domain for words related to being unmarried.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être non marié.
+
+
+ + + +
2.6.1.4
+
+ +
Use this domain for words related to divorce--to legally end your marriage.
+
Classer dans ce champ lexical le vocabulaire associé au divorce : mettre légalement fin à un mariage.
+
+
+ + + +
2.6.1.5
+
+ +
Use this domain for words related to romantic love.
+
Classer dans ce champ lexical le vocabulaire associé à un amour romantique.
+
+
+ + + +
2.6.2
+
+ +
Use this domain for words related to sexual relations and having sex. Be careful that your domain label does not use a taboo word.
+
Classer dans ce champ lexical le vocabulaire associé aux relations sexuelles et à l’amour. Attention à ne pas utiliser des mots tabous !
+
+
+ + + +
2.6.2.1
+
+ +
Use this domain for words related to being a virgin--a person who has never had sex.
+
Classer dans ce champ lexical le vocabulaire associé à la virginité : fait de n’avoir jamais eu de relations sexuelles.
+
+
+ + + +
2.6.2.2
+
+ +
Use this domain for words related to attracting someone sexually--to cause someone to want to have sex with you, and for words related to being sexually attracted to someone--to want to have sex with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attirer quelqu’un sexuellement : donner envie à quelqu’un d’avoir des rapports sexuels avec soi ; ainsi que le vocabulaire associé au fait d’être attiré sexuellement par quelqu’un : désirer avoir des rapports sexuels avec lui (ou elle).
+
+
+ + + +
2.6.2.3
+
+ +
Use this domain for words referring to illicit sexual relations.
+
Classer dans ce champ lexical les mots associés à des relations sexuelles immorales.
+
+
+ + + +
2.6.3
+
+ +
Use this domain for words related to giving birth and being born.
+
Classer dans ce champ lexical le vocabulaire associé au fait de donner la vie et à la naissance.
+
+
+ + + +
2.6.3.1
+
+ +
Use this domain for words related to being pregnant.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être enceinte.
+
+
+ + + +
2.6.3.2
+
+ +
Use this domain for words related to a fetus--a baby that has not been born yet.
+
Classer dans ce champ lexical le vocabulaire associé à un fœtus, c’est-à-dire un bébé non encore né.
+
+
+ + + +
2.6.3.3
+
+ +
Use this domain for words related to the prevention or termination of a pregnancy, and for words related to killing babies.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’empêcher ou d’interrompre une grossesse, et le vocabulaire associé au fait de tuer un bébé.
+
+
+ + + +
2.6.3.4
+
+ +
Use this domain for words related to labor and birth pains.
+
Classer dans ce champ lexical le vocabulaire associé au travail et aux douleurs de l’accouchement.
+
+
+ + + +
2.6.3.5
+
+ +
Use this domain for words related to helping a woman to give birth.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aider une femme à accoucher.
+
+
+ + + +
2.6.3.6
+
+ +
Use this domain for words related to an unusual birth.
+
Classer dans ce champ lexical le vocabulaire associé à une naissance anormale.
+
+
+ + + +
2.6.3.7
+
+ +
Use this domain for words related to multiple births--when a woman give birth to more than one baby at the same time.
+
Classer dans ce champ lexical le vocabulaire associé aux naissances multiples (quand une femme donne naissance à plus d’un bébé en même temps).
+
+
+ + + +
2.6.3.8
+
+ +
Use this domain for words related to being unable to have children.
+
Classer dans ce champ lexical le vocabulaire associé à l’incapacité d’avoir des enfants.
+
+
+ + + +
2.6.3.9
+
+ +
Use this domain for words related to a birth ceremony.
+
Classer dans ce champ lexical le vocabulaire associé à la cérémonie à l’occasion de la naissance.
+
+
+ + + +
2.6.4
+
+ +
Use this domain for words referring to a stage of life--a time period in a person's life.
+
Classer dans ce champ lexical le vocabulaire associé à un stade de la vie (une période dans la vie d’une personne).
+
+
+ + + +
2.6.4.1
+
+ +
Use this domain for words related to a baby.
+
Classer dans ce champ lexical le vocabulaire associé à un bébé.
+
+
+ + + +
2.6.4.1.1
+
+ +
Use this domain for words related to caring for a baby.
+
Classer dans ce champ lexical le vocabulaire associé aux soins donnés au bébé.
+
+
+ + + +
2.6.4.2
+
+ +
Use this domain for words related to a child.
+
Classer dans ce champ lexical le vocabulaire associé à l’enfant.
+
+
+ + + +
2.6.4.2.1
+
+ +
Use this domain for words related to rearing a child--to take care of someone while they are a child so that their needs are met and they become a good person.
+
Classer dans ce champ lexical le vocabulaire associé à l’éducation d’un enfant : prendre soin d’une personne dans son enfance afin de répondre à ses besoins et de l’aider à devenir quelqu’un de bien.
+
+
+ + + +
2.6.4.3
+
+ +
Use this domain for words referring to a youth.
+
Classer dans ce champ lexical le vocabulaire associé à un jeune.
+
+
+ + + +
2.6.4.4
+
+ +
Use this domain for words referring to an adult.
+
Classer dans ce champ lexical le vocabulaire associé à l’adulte.
+
+
+ + + +
2.6.4.5
+
+ +
Use this domain for words related to old age and older persons?
+
Classer dans ce champ lexical le vocabulaire associé à la vieillesse et aux personnes âgées.
+
+
+ + + +
2.6.4.6
+
+ +
Use this domain for words referring to people, animals, or plants growing and getting bigger.
+
Classer dans ce champ lexical le vocabulaire associé à des gens, des animaux ou des plantes dont la taille augmente.
+
+
+ + + +
2.6.4.7
+
+ +
Use this domain for words related to initiation rites--a ceremony when a child becomes an adult.
+
Classer dans ce champ lexical le vocabulaire associé aux rites d’initiation : cérémonie célébrée lorsqu’un enfant devient adulte.
+
+
+ + + +
2.6.4.8
+
+ +
Use this domain for words referring to a peer group--all the people who were born during the same time period.
+
Classer dans ce champ lexical le vocabulaire associé aux personnes qui sont nées durant la même période.
+
+
+ + + +
2.6.5
+
+ +
Use this domain for words referring to male and female people.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux personnes de sexe masculin et de sexe féminin.
+
+
+ + + +
2.6.5.1
+
+ +
Use this domain for words referring to a man or any male person.
+
Classer dans ce champ lexical le vocabulaire associé à l’homme en général.
+
+
+ + + +
2.6.5.2
+
+ +
Use this domain for words referring to a woman or any female person.
+
Classer dans ce champ lexical le vocabulaire associé à la femme en général.
+
+
+ + + +
2.6.6
+
+ +
Use this domain for words related to dying.
+
Classer dans ce champ lexical le vocabulaire associé à la mort.
+
+
+ + + +
2.6.6.1
+
+ +
Use this domain for words related to killing someone--to cause someone to die.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tuer quelqu’un : causer la mort d’une personne.
+
+
+ + + +
2.6.6.2
+
+ +
Use this domain for words referring to a corpse--the body of a person who has died.
+
Classer dans ce champ lexical le vocabulaire associé à un cadavre : le corps d’une personne morte.
+
+
+ + + +
2.6.6.3
+
+ +
Use this domain for words related to a funeral and other things that are done after a person dies.
+
Classer dans ce champ lexical le vocabulaire associé aux funérailles et ce qu’on fait après la mort de quelqu’un.
+
+
+ + + +
2.6.6.4
+
+ +
Use this domain for words related to mourning a death--to feel bad because someone died and to show this feeling in various ways. Include whatever cultural practices are used.
+
Classer dans ce champ lexical le vocabulaire associé au deuil pour un mort : avoir de la peine parce qu’une personne est décédée et montrer ses sentiments de différentes façons. Inclure les pratiques culturelles qui sont en usage.
+
+
+ + + +
2.6.6.5
+
+ +
Use this domain for words related to disposing of a dead body. Different cultures have practices other than burying a body in the ground. Include words for all practices used by the culture.
+
Classer dans ce champ lexical le vocabulaire associé à l’enterrement. Les coutumes varient selon les cultures : l’ensevelissement du corps dans la terre n’est pas général. Inclure des mots pour toutes les coutumes liées à une culture donnée.
+
+
+ + + +
2.6.6.6
+
+ +
Use this domain for words related to a grave--the place where a dead body is put.
+
Classer dans ce champ lexical le vocabulaire associé à une tombe : l’endroit où l’on met un corps.
+
+
+ + + +
2.6.6.7
+
+ +
Use this domain for words related to inheriting something from your parents after they die.
+
Classer dans ce champ lexical le vocabulaire relatif à l’héritage reçu de ses parents après leur mort.
+
+
+ + + +
2.6.6.8
+
+ +
Use this domain for words related to life after death.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la vie après la mort.
+
+
+ + + +
3
+
+ +
Use this domain for general words referring to mental and verbal activity. This domain is primarily for grouping many related domains. Therefore there may be no general word in a language to cover such a broad area of meaning.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’activité mentale et langagière. Ce champ sert essentiellement à regrouper différents champs voisins. Il se peut donc que dans certaines langues, il n’y ait aucun terme générique couvrant une telle variété de sens.
+
+
+ + + +
3.1
+
+ +
Use this domain for general words related to the immaterial, non-physical part of a person, as opposed to the body.
+
Classer dans ce champ lexical les termes génériques associés à la partie immatérielle, non physique d’une personne par contraste avec le corps.
+
+
+ + + +
3.1.1
+
+ +
Use this domain for words that describe a person's personality (the way he usually thinks, talks, and how he acts with other people).
+
Classer dans ce champ lexical les termes génériques qui décrivent la personnalité de quelqu’un (sa façon habituelle de penser, de parler, d’agir).
+
+
+ + + +
3.1.2
+
+ +
Use this domain for words referring to a person's mental state.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’état mental de quelqu’un.
+
+
+ + + +
3.1.2.1
+
+ +
Use this domain for words referring to a mental state when the mind is working hard.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à l’état mental lorsque l’esprit travaille intensément.
+
+
+ + + +
3.1.2.2
+
+ +
Use this domain for words related to noticing something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remarquer quelque chose.
+
+
+ + + +
3.1.2.3
+
+ +
Use this domain for words referring to a mental state when the mind is working hard.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’état mental durant lequel l’esprit travaille dur.
+
+
+ + + +
3.1.2.4
+
+ +
Use this domain for words related to ignoring someone--to not look at, listen to, or talk to someone because you think they are not important or you don't like them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’ignorer quelqu’un, de ne pas le regarder, de ne pas l’écouter ou de ne pas lui parler parce qu’on ne le trouve pas important ou qu’on ne l’aime pas.
+
+
+ + + +
3.2
+
+ +
Use this domain for words related to thinking, thought processes, and kinds of thinking.
+
Classer dans ce champ lexical le vocabulaire qui signifie penser, fait référence à la réflexion et aux modes de pensée.
+
+
+ + + +
3.2.1
+
+ +
Use this domain for general words referring to the mind--the part of a person that thinks.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’intellect (l’intelligence) : capacité de penser de la personne.
+
+
+ + + +
3.2.1.1
+
+ +
Use this domain for words related to thinking about something for some time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à penser, pendant un moment, à quelque chose.
+
+
+ + + +
3.2.1.2
+
+ +
Use this domain for imagining things--to think about something that does not exist, or to think about something happening that has never happened.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’imagination, au fait de penser à des choses qui n’existent pas ou de penser à quelque chose qui arrive alors que cela n’était jamais arrivé.
+
+
+ + + +
3.2.1.3
+
+ +
Use this domain for words that describe a person who thinks well.
+
Classer dans ce champ lexical le vocabulaire qui qualifie quelqu’un qui pense correctement.
+
+
+ + + +
3.2.1.4
+
+ +
Use this domain for words that describe a person who does not think well.
+
Classer dans ce champ lexical le vocabulaire qui qualifie une personne qui raisonne mal.
+
+
+ + + +
3.2.1.5
+
+ +
Use this domain for words describing logical thinking.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un raisonnement logique.
+
+
+ + + +
3.2.1.6
+
+ +
Use this domain for words related to instinct--to know something without being told, to know what to do without taught how to do it.
+
Classer dans ce champ lexical le vocabulaire relatif à l’instinct, au fait de savoir quelque chose sans l’avoir entendu dire, au fait de savoir que faire sans l’avoir appris.
+
+
+ + + +
3.2.2
+
+ +
Use this domain for words referring to learning something, acquiring information, gaining knowledge (whether done intentionally or unintentionally), or discovering the answer to some question.
+
Classer dans ce champ lexical le vocabulaire qui signifie apprendre quelque chose, obtenir une information, accroître ses connaissances (que ce soit volontairement ou non) ou trouver la réponse à une question.
+
+
+ + + +
3.2.2.1
+
+ +
Use this domain for words referring to studying--to try to learn something.
+
Classer dans ce champ lexical le vocabulaire qui signifie étudier, essayer d’apprendre quelque chose.
+
+
+ + + +
3.2.2.2
+
+ +
Use this domain for words referring to checking something--when you think something is true or correct, but you aren't sure, you do something to find out if it is true or correct.
+
Classer dans ce champ lexical le vocabulaire qui signifie vérifier quelque chose ; quand on pense que c’est juste ou vrai, sans en être sûr, on fait quelque chose pour s’en assurer.
+
+
+ + + +
3.2.2.3
+
+ +
Use this domain for words referring to the process of determining the truth or falsehood of something, or for determining the nature or value of something.
+
Classer dans ce champ lexical le vocabulaire qui a trait au processus qui détermine si une chose est vraie ou fausse, ou qui détermine la nature ou la valeur de quelque chose.
+
+
+ + + +
3.2.2.4
+
+ +
Use this domain for words referring to answering a question when one is unsure of the answer.
+
Classer dans ce champ lexical le vocabulaire qui signifie donner, à une question, une réponse dont on n’est pas sûr.
+
+
+ + + +
3.2.2.5
+
+ +
Use this domain for words related to solving something--finding the answer to something that is difficult to understand.
+
Classer dans ce champ lexical le vocabulaire qui signifie résoudre quelque chose, trouver la réponse à quelque chose de difficile.
+
+
+ + + +
3.2.2.6
+
+ +
Use this domain for words related to realizing something.
+
Classer dans ce champ lexical le vocabulaire signifiant prendre conscience de quelque chose.
+
+
+ + + +
3.2.2.7
+
+ +
Use this domain for words referring to being willing to learn or unwilling to learn.
+
Classer dans ce champ lexical le vocabulaire qui signifie désirer apprendre ou ne pas le vouloir.
+
+
+ + + +
3.2.3
+
+ +
Use this domain for words referring to the results of thinking.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux résultats de l’action de penser.
+
+
+ + + +
3.2.3.1
+
+ +
Use this domain for words that describe whether or not something is known.
+
Classer dans ce champ lexical le vocabulaire qui sert à décrire si une chose est connue ou non.
+
+
+ + + +
3.2.3.2
+
+ +
Use this domain for words referring to an area of knowledge.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un champ de connaissance.
+
+
+ + + +
3.2.3.3
+
+ +
Use this domain for words that describe whether or not something is known.
+
Classer dans ce champ lexical ce qui est peu ou pas connu.
+
+
+ + + +
3.2.4
+
+ +
Use this domain for words referring to understanding a topic or the meaning of something.
+
Classer dans ce champ lexical le vocabulaire qui signifie comprendre un sujet ou le sens de quelque chose.
+
+
+ + + +
3.2.4.1
+
+ +
Use this domain for when a person does not understand a topic or the meaning of something.
+
Classer dans ce champ lexical le vocabulaire qui signifie ne pas comprendre un sujet ou le sens de quelque chose.
+
+
+ + + +
3.2.4.2
+
+ +
Use this domain for words that describe something that is easy to understand.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui se comprend facilement.
+
+
+ + + +
3.2.4.3
+
+ +
Use this domain for words that describe something that is difficult to understand.
+
Classer dans ce champ lexical le vocabulaire pour décrire quelque chose qui est difficile à comprendre.
+
+
+ + + +
3.2.5
+
+ +
Use this domain for situations in which a question or issues are being debated, more than one option is possible, and a person chooses to think in one way about the question or issue.
+
Classer dans ce champ lexical les cas où un sujet ou une question font l’objet d’un débat, où il y a plusieurs possibilités et où quelqu’un choisit sa façon d’envisager la question ou le sujet.
+
+
+ + + +
3.2.5.1
+
+ +
Use this domain for words referring to believing that something is true.
+
Classer dans ce champ lexical le vocabulaire qui signifie croire que quelque chose est vrai.
+
+
+ + + +
3.2.5.1.1
+
+ +
Use this domain for words referring to trusting someone--believing that someone is honest and will not do something bad to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir confiance en quelqu’un, de croire qu’une personne est honnête et ne ferait pas de mal à autrui.
+
+
+ + + +
3.2.5.2
+
+ +
Use this domain for words referring to not believing something or someone.
+
Classer dans ce champ lexical le vocabulaire qui signifie ne pas croire quelque chose ou quelqu’un.
+
+
+ + + +
3.2.5.3
+
+ +
Use this domain for words related to doubt--not being sure if something is true or not.
+
Classer dans ce champ lexical le vocabulaire qui est associé au doute, au fait de ne pas être sûr de la véracité de quelque chose.
+
+
+ + + +
3.2.5.4
+
+ +
Use this domain for when two people agree on something, think the same way about something, or agree on a decision.
+
Classer dans ce champ lexical le vocabulaire qui signifie que deux personnes sont d’accord sur quelque chose, pensent la même chose, sont d’accord sur une décision.
+
+
+ + + +
3.2.5.4.1
+
+ +
Use this domain for when two people disagree about something.
+
Classer dans ce champ lexical le vocabulaire qui signifie que deux personnes sont en désaccord à propos de quelque chose.
+
+
+ + + +
3.2.5.4.2
+
+ +
Use this domain for words related to protesting--to say publicly that you do not like something.
+
Classer dans ce champ lexical le vocabulaire signifiant protester, dire publiquement qu’on n’apprécie pas quelque chose.
+
+
+ + + +
3.2.5.5
+
+ +
Use this domain for words referring to a set of beliefs about truth.
+
Classer dans ce champ lexical le vocabulaire qui désigne un ensemble de croyances sur la vérité.
+
+
+ + + +
3.2.5.6
+
+ +
Use this domain for words referring to a person's attitude--the way you think and feel about something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’attitude de quelqu’un, à la manière dont il perçoit quelque chose ou à ce qu’il pense de quelque chose.
+
+
+ + + +
3.2.5.7
+
+ +
Use this domain for words referring to an extreme belief--something that you believe, that most people think is not good.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une croyance extrême, quelque chose qu’on croit et que la plupart des gens considèrent comme mal.
+
+
+ + + +
3.2.5.8
+
+ +
Use this domain for words related to changing your mind--to change what you think about something, or change your plans or decisions.
+
Classer dans ce champ lexical le vocabulaire signifiant changer d’avis, changer d’idée sur quelque chose, changer ses plans ou prendre une autre décision.
+
+
+ + + +
3.2.5.9
+
+ +
Use this domain for words related to approving of doing something--to think that doing something is good.
+
Classer dans ce champ lexical le vocabulaire signifiant approuver quelque chose, penser que ce qui est fait est bien.
+
+
+ + + +
3.2.6
+
+ +
Use this domain for words referring to remembering something you know.
+
Classer dans ce champ lexical le vocabulaire qui signifie se rappeler quelque chose qu’on sait.
+
+
+ + + +
3.2.6.1
+
+ +
Use this domain for words referring to forgetting something.
+
Classer dans ce champ lexical le vocabulaire qui signifie oublier quelque chose.
+
+
+ + + +
3.2.6.2
+
+ +
Use this domain for words referring to recognizing something.
+
Classer dans ce champ lexical le vocabulaire qui signifie reconnaître quelque chose.
+
+
+ + + +
3.2.6.3
+
+ +
Use this domain for words referring to memorizing something--to think hard about something so that you will not forget it.
+
Classer dans ce champ lexical le vocabulaire qui signifie apprendre par cœur quelque chose, se concentrer dessus afin de ne pas l’oublier.
+
+
+ + + +
3.2.6.4
+
+ +
Use this domain for words referring to reminding someone about something--to make someone remember something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rappeler à quelqu’un quelque chose : faire en sorte que quelqu’un se souvienne de quelque chose.
+
+
+ + + +
3.2.7
+
+ +
Use this domain for words referring to thinking about the future.
+
Classer dans ce champ lexical le vocabulaire qui signifie penser à l’avenir.
+
+
+ + + +
3.2.7.1
+
+ +
Use this domain for words related to hoping that something will happen--to want something good to happen in the future.
+
Classer dans ce champ lexical le vocabulaire signifiant espérer que quelque chose se passe, vouloir que quelque chose de bien arrive dans l’avenir.
+
+
+ + + +
3.2.7.2
+
+ +
Use this domain for words related to feeling hopeless--to thinking that nothing good will happen in the future.
+
Classer dans ce champ lexical le vocabulaire évoquant des sentiments de désespoir, la pensée que rien de bon ne se passera dans l’avenir.
+
+
+ + + +
3.2.7.3
+
+ +
Use this domain for words referring to predicting the future--saying what you think will happen.
+
Classer dans ce champ lexical le vocabulaire qui signifie prédire l’avenir, dire ce qu’on pense qu’il va arriver.
+
+
+ + + +
3.2.8
+
+ +
Use this domain for words indicating that the speaker thinks that something tends to be a certain way.
+
Classer dans ce champ lexical le vocabulaire qui indique que le locuteur pense que quelque chose tend à être ceci ou cela.
+
+
+ + + +
3.3
+
+ +
Use this domain for words related to wanting something or wanting to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant vouloir quelque chose ou vouloir faire quelque chose.
+
+
+ + + +
3.3.1
+
+ +
Use this domain for words related to deciding to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant décider de faire quelque chose.
+
+
+ + + +
3.3.1.1
+
+ +
Use this domain for words referring to a goal--something that you want to do or something that you want to happen.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un but, à quelque chose qu’on veut faire ou qu’on souhaite qu’il arrive.
+
+
+ + + +
3.3.1.2
+
+ +
Use this domain for words related to choosing something--to want one thing (or person) from a group of things, or to choose to do one thing from several possible things you could do.
+
Classer dans ce champ lexical le vocabulaire signifiant choisir quelque chose, vouloir une chose parmi d’autres ou choisir de faire une chose parmi plusieurs autres possibilités.
+
+
+ + + +
3.3.1.3
+
+ +
Use this domain for words referring to casting lots--to make a decision by chance.
+
Classer dans ce champ lexical le vocabulaire qui signifie tirer au sort, prendre une décision au hasard.
+
+
+ + + +
3.3.1.4
+
+ +
Use this domain for words related to intending to do something--to do something intentionally and not by accident.
+
Classer dans ce champ lexical le vocabulaire signifiant avoir l’intention de faire quelque chose, de faire quelque chose intentionnellement et non par accident.
+
+
+ + + +
3.3.1.5
+
+ +
Use this domain for words related to doing something deliberately--to intend to do something, as opposed to doing something accidentally.
+
Classer dans ce champ lexical le vocabulaire signifiant faire quelque chose délibérément, vouloir faire quelque chose par opposition à faire quelque chose accidentellement.
+
+
+ + + +
3.3.1.6
+
+ +
Use this domain for words related to being determined to do something--deciding to do something and not letting anything stop you.
+
Classer dans ce champ lexical le vocabulaire signifiant être déterminé à faire quelque chose, être décidé à faire quelque chose sans se laisser arrêter, coûte que coûte.
+
+
+ + + +
3.3.1.7
+
+ +
Use this domain for words related to being stubborn--to be unwilling to change a decision; to be unwilling to do something someone wants you to do; or to do what you want to do, even though other people do not want you to do it.
+
Classer dans ce champ lexical le vocabulaire signifiant être entêté, ne pas vouloir changer de décision ou refuser de faire ce que quelqu’un demande ; ou faire ce que l’on veut faire, même si d’autres personnes ne veulent pas qu’on le fasse.
+
+
+ + + +
3.3.1.8
+
+ +
Use this domain for words related to lusting for something--to want something bad or forbidden.
+
Classer dans ce champ lexical le vocabulaire signifiant convoiter quelque chose, vouloir quelque chose de mal ou d’interdit.
+
+
+ + + +
3.3.2
+
+ +
Use this domain for words related to requesting something--to ask for something, or ask someone to do something.
+
Classer dans ce champ lexical le vocabulaire qui signifie demander quelque chose ou demander à quelqu’un de faire quelque chose.
+
+
+ + + +
3.3.2.1
+
+ +
Use this domain for words related to agreeing to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant accepter de faire quelque chose.
+
+
+ + + +
3.3.2.2
+
+ +
Use this domain for words related to refusing to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant refuser de faire quelque chose.
+
+
+ + + +
3.3.2.3
+
+ +
Use this domain for words related to interceding for someone--to say something to someone because you want them to do something good for someone else.
+
Classer dans ce champ lexical le vocabulaire signifiant dire à quelqu’un ce qu’on veut qu’il fasse pour le bien d’une troisième personne.
+
+
+ + + +
3.3.2.4
+
+ +
Use this domain for words related to being willing to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être disposé à faire quelque chose.
+
+
+ + + +
3.3.3
+
+ +
Use this domain for words related to influencing someone--to do something because you want someone to change his thinking.
+
Classer dans ce champ lexical le vocabulaire signifiant influencer quelqu’un, à faire quelque chose pour le faire changer d’avis.
+
+
+ + + +
3.3.3.1
+
+ +
Use this domain for words referring to suggesting something--saying that something might be good.
+
Classer dans ce champ lexical le vocabulaire qui signifie dire qu’une chose pourrait être bonne.
+
+
+ + + +
3.3.3.2
+
+ +
Use this domain for words referring to giving someone advice or counsel, for instance recommending a wise course of action.
+
Classer dans ce champ lexical le vocabulaire qui signifie donner à quelqu’un un conseil, par exemple lui conseiller une ligne de conduite sage.
+
+
+ + + +
3.3.3.3
+
+ +
Use this domain for words related to persuading someone--to try to get someone to do something or to change his thinking.
+
Classer dans ce champ lexical le vocabulaire signifiant persuader quelqu’un, essayer d’obtenir de lui qu’il fasse quelque chose ou change d’avis.
+
+
+ + + +
3.3.3.4
+
+ +
Use this domain for words related to insisting--to say strongly or repeatedly that someone must do something, because the other person does not want to do it.
+
Classer dans ce champ lexical le vocabulaire signifiant insister, dire fortement ou de manière répétée une chose parce que l’autre ne veut pas la faire.
+
+
+ + + +
3.3.3.5
+
+ +
Use this domain for words related to compelling someone to do something--to cause or force someone to do something that they do not want to do.
+
Classer dans ce champ lexical le vocabulaire signifiant contraindre quelqu’un à faire quelque chose, le forcer à faire ce qu’il ne veut pas.
+
+
+ + + +
3.3.3.6
+
+ +
Use this domain for words related to controlling someone--to force someone to do what you want them to do by ordering them to do it, or by doing something so that they have no choice. Also use this domain for words related to controlling something, for instance to control a machine, so that it does what you want it to do.
+
Classer dans ce champ lexical le vocabulaire signifiant commander quelqu’un, le forcer à faire ce qu’on veut, sans lui laisser le choix. Classer également dans ce champ lexical le vocabulaire lié au fait de commander quelque chose, par exemple une machine, de sorte qu’on lui fait faire ce qu’on veut.
+
+
+ + + +
3.3.3.7
+
+ +
Use this domain for words related to warning someone--saying something to someone so that he will not do something bad.
+
Classer dans ce champ lexical le vocabulaire signifiant avertir quelqu’un, lui dire quelque chose afin qu’il ne fasse pas quelque chose de mal.
+
+
+ + + +
3.3.3.8
+
+ +
Use this domain for words related to threatening someone--to say that you will do something bad to someone if they don't do what you want them to do.
+
Classer dans ce champ lexical le vocabulaire signifiant menacer quelqu’un, dire qu’on lui fera quelque chose de mal s’il ne fait pas ce qu’on veut.
+
+
+ + + +
3.3.4
+
+ +
Use this domain for words related to asking permission to do something. This domain is part of a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission. I obey you or disobey you.
+
Classer dans ce champ lexical le vocabulaire utilisé pour demander la permission de faire quelque chose. Ce champ lexical fait partie du scénario : quelqu’un a autorité sur moi. Je veux faire quelque chose. Je lui en demande la permission. Il me l’accorde ou me la refuse. Je lui obéis ou lui désobéis.
+
+
+ + + +
3.3.4.1
+
+ +
Use this domain for words related to giving someone permission to do something. This domain is about a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission.
+
Classer dans ce champ lexical le vocabulaire employé pour donner à quelqu’un la permission de faire quelque chose. Ce champ lexical fait partie du scénario : quelqu’un a autorité sur moi. Je veux faire quelque chose. Je lui en demande la permission. Il me l’accorde ou me la refuse.
+
+
+ + + +
3.3.4.2
+
+ +
Use this domain for words related to refusing to permit someone to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant refuser la permission de faire quelque chose.
+
+
+ + + +
3.3.4.3
+
+ +
Use this domain for words related to being exempt from a law or obligation.
+
Classer dans ce champ lexical le vocabulaire signifiant être exempté d’une obligation ou dispensé d’obéir à une loi.
+
+
+ + + +
3.3.4.4
+
+ +
Use this domain for words related to preventing someone from doing something.
+
Classer dans ce champ lexical le vocabulaire signifiant empêcher de faire quelque chose.
+
+
+ + + +
3.3.4.5
+
+ +
Use this domain for words related to freedom--when you can do the things that you want to do.
+
Classer dans ce champ lexical le vocabulaire signifiant être libre de faire ce qu’on veut.
+
+
+ + + +
3.3.5
+
+ +
Use this domain for words related to offering to do something for someone.
+
Classer dans ce champ lexical le vocabulaire signifiant proposer de faire quelque chose pour quelqu’un.
+
+
+ + + +
3.3.5.1
+
+ +
Use this domain for words referring to accepting something such as an offer, invitation, or request.
+
Classer dans ce champ lexical le vocabulaire qui signifie accepter quelque chose, par exemple une offre, une invitation ou une demande.
+
+
+ + + +
3.3.5.2
+
+ +
Use this domain for words referring to rejecting something such as an offer, invitation, or request.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de refuser une offre.
+
+
+ + + +
3.4
+
+ +
Use this domain for general words related to feelings and emotions.
+
Classer dans ce champ lexical le vocabulaire ayant trait aux sentiments et aux émotions.
+
+
+ + + +
3.4.1
+
+ +
Use this domain for general words related to positive emotions.
+
Classer dans ce champ lexical le vocabulaire qui est associé à des émotions positives.
+
+
+ + + +
3.4.1.1
+
+ +
Use this domain for words related to liking something or someone, or liking to do something.
+
Classer dans ce champ lexical le vocabulaire signifiant aimer quelque chose ou quelqu’un.
+
+
+ + + +
3.4.1.1.1
+
+ +
Use this domain for words related to enjoying doing something.
+
Classer dans ce champ lexical le vocabulaire signifiant aimer faire quelque chose.
+
+
+ + + +
3.4.1.1.2
+
+ +
Use this domain for words related to feeling good about yourself.
+
Classer dans ce champ lexical le vocabulaire signifiant avoir une bonne estime de soi.
+
+
+ + + +
3.4.1.1.3
+
+ +
Use this domain for words related to preferring one thing over another--to like something more than something else.
+
Classer dans ce champ lexical le vocabulaire qui signifie préférer une chose à une autre, aimer une chose plus qu’une autre.
+
+
+ + + +
3.4.1.1.4
+
+ +
Use this domain for words describing something that many people like.
+
Classer dans ce champ lexical le vocabulaire qui sert à qualifier ce qu’on aime beaucoup en général.
+
+
+ + + +
3.4.1.1.5
+
+ +
Use this domain for words describing something that many people like.
+
Classer dans ce champ lexical le vocabulaire qui qualifie quelque chose qu’on aime beaucoup.
+
+
+ + + +
3.4.1.1.6
+
+ +
Use this domain for words related to feeling contented.
+
Classer dans ce champ lexical le vocabulaire ayant trait au fait de se sentir satisfait.
+
+
+ + + +
3.4.1.1.7
+
+ +
Use this domain for words related to feeling happy for someone--to feel good because something good happened to someone. The opposite is jealousy and envy.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d’être heureux pour quelqu’un, d’être heureux parce que quelque chose de bien est arrivé à quelqu’un ; le contraire de l’envie et de la jalousie.
+
+
+ + + +
3.4.1.1.8
+
+ +
Use this domain for words related to feeling pleased with someone--to feel good because someone did something good.
+
Classer dans ce champ lexical le vocabulaire signifiant être content de quelqu’un, être satisfait de ce que quelqu’un a fait.
+
+
+ + + +
3.4.1.2
+
+ +
Use this domain for words related to feeling happy--to feel good when something good happens (such as receiving a gift, hearing good news, or watching something good happening).
+
Classer dans ce champ lexical le vocabulaire ayant trait au fait de se sentir heureux, de se sentir bien parce qu’il est arrivé quelque chose d’agréable (par exemple recevoir un cadeau, apprendre une bonne nouvelle, assister à un événement heureux).
+
+
+ + + +
3.4.1.2.1
+
+ +
Use this domain for words related to feeling relaxed--to feel good when you are not working and nothing bad is happening.
+
Classer dans ce champ lexical le vocabulaire signifiant être détendu, se sentir bien quand on ne travaille pas ou que rien de désagréable n’arrive.
+
+
+ + + +
3.4.1.2.2
+
+ +
Use this domain for words related to feeling calm.
+
Classer dans ce champ lexical le vocabulaire ayant trait au fait d’être calme.
+
+
+ + + +
3.4.1.3
+
+ +
Use this domain for words related to feeling surprised--to feel something when something unexpected, unusual, or amazing happens.
+
Classer dans ce champ lexical le vocabulaire ayant trait au sentiment de surprise qu’on éprouve lorsque quelque chose d’inattendu, d’inhabituel ou d’étonnant arrive.
+
+
+ + + +
3.4.1.4
+
+ +
Use this domain for words related to feeling interested.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être intéressé.
+
+
+ + + +
3.4.1.4.1
+
+ +
Use this domain for words related to feeling excited--to feel good when something good has happening or is about to happen.
+
Classer dans ce champ lexical le vocabulaire se rapportant au sentiment d’excitation, au fait de se sentir bien quand quelque chose de bien se produit ou va se produire, ou au fait d’être dans l’attente d’un évènement redouté.
+
+
+ + + +
3.4.1.4.2
+
+ +
Use this domain for words related to feeling enthusiastic--to feel very good because you want to do something or you want something to happen.
+
Classer dans ce champ lexical le vocabulaire qui désigne l’enthousiasme, le fait d’être très content parce qu’on veut faire quelque chose ou que l’on veut que quelque chose se passe.
+
+
+ + + +
3.4.1.4.3
+
+ +
Use this domain for words related to feeling obsessed--to be very interested in something for a long time.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’obsession, le fait qu’une idée, une image, un comportement, s’impose de manière répétée, sans pouvoir s’en débarrasser.
+
+
+ + + +
3.4.1.4.4
+
+ +
Use this domain for words related to attracting someone's attention to something. In a typical situation, a person sees something with an interesting quality. The person moves closer, pays close attention to the thing, and possibly does something to it.
+
Classer dans ce champ lexical le vocabulaire qui signifie attirer l’attention de quelqu’un sur quelque chose. Le cas classique est celui où quelqu’un voit quelque chose d’intéressant. Il s’en approche, y fait davantage attention et éventuellement s’en occupe de plus près.
+
+
+ + + +
3.4.1.4.5
+
+ +
Use this domain for words related to feeling indifferent about something.
+
Classer dans ce champ lexical le vocabulaire exprimant l’indifférence envers quelque chose.
+
+
+ + + +
3.4.1.4.6
+
+ +
Use this domain for words related to feeling uninterested or bored--when someone is not interested in something.
+
Classer dans ce champ lexical le vocabulaire qui signifie ne pas être intéressé ou s’ennuyer.
+
+
+ + + +
3.4.1.5
+
+ +
Use this domain for words related to feeling confident--to feel sure that you can do something.
+
Classer dans ce champ lexical le vocabulaire associé à la confiance en soi, le fait d’être sûr de soi quand on fait quelque chose.
+
+
+ + + +
3.4.2
+
+ +
Use this domain for general words related to feeling bad.
+
Classer dans ce champ lexical les termes génériques associés à des sentiments négatifs.
+
+
+ + + +
3.4.2.1
+
+ +
Use this domain for words related to feeling sad--to feel bad because something bad has happened (such as losing something, hearing bad news, or watching something bad happening).
+
Classer dans ce champ lexical le vocabulaire associé à la tristesse, au fait de se sentir triste parce qu’un malheur est arrivé (perte, mauvaise nouvelle, catastrophe).
+
+
+ + + +
3.4.2.1.1
+
+ +
Use this domain for words related to not liking someone or something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas aimer quelqu’un ou quelque chose.
+
+
+ + + +
3.4.2.1.2
+
+ +
Use this domain for words related to hating someone or something--to dislike someone or something very much.
+
Classer dans ce champ lexical le vocabulaire associé à la haine envers quelqu’un ou quelque chose, au fait de détester énormément quelqu’un ou quelque chose.
+
+
+ + + +
3.4.2.1.3
+
+ +
Use this domain for words related to feeling disgusted--to dislike something so much that you feel sick.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment de dégoût, au fait de détester quelque chose au point d’en être malade.
+
+
+ + + +
3.4.2.1.4
+
+ +
Use this domain for words related to feeling disappointed--to feel bad because something did not happen that you wanted to happen or someone did not do something that you wanted them to do.
+
Classer dans ce champ lexical le vocabulaire associé à la déception, au fait d’être malheureux parce que ce qu’on attendait ne s’est pas produit ou parce que quelqu’un n’a pas fait ce qu’on aurait aimé.
+
+
+ + + +
3.4.2.1.5
+
+ +
Use this domain for words related to feeling lonely--to feel bad because you are alone and not with people you love.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment d’être seul, le fait de souffrir parce qu’on est seul au lieu d’être avec ceux qu’on aime.
+
+
+ + + +
3.4.2.1.6
+
+ +
Use this domain for word related to feeling upset--to feel very bad because someone has done something bad to you or because something bad has happened to you, so that your thinking and behavior is affected.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment d’être bouleversé, le fait de souffrir parce que quelqu’un s’est mal comporté envers nous ou parce qu’on a eu une épreuve qui affecte nos façons de penser et d’agir.
+
+
+ + + +
3.4.2.1.7
+
+ +
Use this domain for words related to feeling shocked--feeling both surprised and angry when something very bad suddenly happens or when someone does something very bad.
+
Classer dans ce champ lexical le vocabulaire associé au sentiment d’être choqué, de se sentir à la fois surpris et en colère parce qu’un grand malheur s’est brutalement produit ou quand quelqu’un fait quelque chose de très mal.
+
+
+ + + +
3.4.2.1.8
+
+ +
Use this domain for words related to feeling jealous--to feel bad when someone does well, has something good, receives something good, or something good happens to them, because you want what they have. Also use this domain for words for when a husband (or wife) is jealous because he thinks his wife loves someone else.
+
Classer dans ce champ lexical le vocabulaire associé à la jalousie, le fait d’être malheureux parce que quelqu’un fait bien, a quelque chose de bien ou parce qu’il arrive à cette personne quelque chose de bien ; d’être malheureux parce qu’on veut ce que l’autre a. Classer également dans ce champ lexical le vocabulaire associé à la jalousie entre époux.
+
+
+ + + +
3.4.2.1.9
+
+ +
Use this domain for words related to feeling discontent.
+
Classer dans ce champ lexical le vocabulaire associé au mécontentement.
+
+
+ + + +
3.4.2.2
+
+ +
Use this domain for words related to feeling sorry--to feel bad about something bad that you did.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être navré, d’être malheureux à cause de ce qu’on a fait.
+
+
+ + + +
3.4.2.2.1
+
+ +
Use this domain for words related to feeling ashamed--to feel bad because people think you did something bad.
+
Classer dans ce champ lexical le vocabulaire associé à la honte, au fait d’être malheureux parce que les gens pensent qu’on a fait quelque chose de mal.
+
+
+ + + +
3.4.2.2.2
+
+ +
Use this domain for words related to feeling embarrassed--to feel bad in front of other people because you did or said something that makes you seem stupid.
+
Classer dans ce champ lexical le vocabulaire se rapportant à la gêne, au fait de se sentir mal à l’aise devant les autres parce qu’on a fait ou dit quelque chose qui donne l’impression d’être bête.
+
+
+ + + +
3.4.2.3
+
+ +
Use this domain for words related to feeling angry--to feel bad when someone does something wrong and to want to do something bad to them.
+
Classer dans ce champ lexical le vocabulaire se rapportant à la colère.
+
+
+ + + +
3.4.2.3.1
+
+ +
Use this domain for words related to feeling annoyed--to feel a little angry because someone keeps doing something you don't like.
+
Classer dans ce champ lexical le vocabulaire signifiant être irrité, être un peu en colère parce que quelqu’un n’arrête pas de faire quelque chose qu’on n’aime pas.
+
+
+ + + +
3.4.2.4
+
+ +
Use this domain for words related to fear--to feel bad because you think something bad might happen to you.
+
Classer dans ce champ lexical le vocabulaire en rapport avec la crainte, le fait de se sentir mal parce que la personne pense que quelque chose de mal risque de lui arriver.
+
+
+ + + +
3.4.2.4.1
+
+ +
Use this domain for words related to feeling worried--to feel bad because you think something bad might happen.
+
Classer dans ce champ lexical le vocabulaire en rapport avec l’inquiétude, le fait de se sentir mal parce qu’on pense que quelque chose de mal pourrait arriver.
+
+
+ + + +
3.4.2.4.2
+
+ +
Use this domain for words related to feeling nervous--to be worried and frightened that something bad may happen, so that you are unable to relax.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’être nerveux, d’être inquiet que quelque chose puisse mal se passer et empêche de se détendre.
+
+
+ + + +
3.4.2.4.3
+
+ +
Use this domain for words related to feeling shy--to feel bad (afraid) when you are with people because you think they might think something bad about you if you say or do something (for instance, being afraid to talk, feeling inadequate to do what is required in a social situation, or not feeling as good as other people).
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’être intimidé, d’avoir peur de dire ou de faire, devant d’autres, quelque chose qui attirera leurs critiques (par exemple se sentir moins bon que les autres, avoir peur de parler ou de risquer de ne pas faire ce qu’il convient en société).
+
+
+ + + +
3.4.2.5
+
+ +
Use this domain for words related to feeling confused--to be worried and uncertain about what something means or what to do.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’avoir l’esprit confus, d’être inquiet et de ne pas vraiment savoir ce que quelque chose signifie ou ce qu’il faut faire.
+
+
+ + + +
3.5
+
+ +
Use this domain for general words referring to communication of all kinds.
+
Classer dans ce champ lexical les termes génériques en lien avec tout type de communication.
+
+
+ + + +
3.5.1
+
+ +
Use this domain for words related to saying something.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dire quelque chose.
+
+
+ + + +
3.5.1.1
+
+ +
Use this domain for words referring to a person's voice and the way it sounds--the kind of sound a person makes when they speak or sing.
+
Classer dans ce champ lexical le vocabulaire qui qualifie la voix d’une personne : le genre de son qu’une personne produit quand elle parle ou chante.
+
+
+ + + +
3.5.1.1.1
+
+ +
Use this domain for words related to shouting--to speak loudly.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de crier, de parler fort.
+
+
+ + + +
3.5.1.1.2
+
+ +
Use this domain for words that describe a person speaking quietly.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un qui parle doucement.
+
+
+ + + +
3.5.1.1.3
+
+ +
Use this domain for words related to speaking a lot.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler beaucoup.
+
+
+ + + +
3.5.1.1.4
+
+ +
Use this domain for words related to speaking a little, either because you do not like to talk, or you think you should not talk.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler peu, soit parce qu’on n’aime pas parler, soit parce qu’on estime ne pas devoir parler.
+
+
+ + + +
3.5.1.1.5
+
+ +
Use this domain for words related to being silent--to say nothing for some time.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de rester silencieux, de ne rien dire pendant un certain temps.
+
+
+ + + +
3.5.1.1.6
+
+ +
Use this domain for words describing the way a person talks in a particular social situation.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte à la manière dont quelqu’un parle dans un contexte social donné.
+
+
+ + + +
3.5.1.1.7
+
+ +
Use this domain for words related to speaking well.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de bien parler.
+
+
+ + + +
3.5.1.1.8
+
+ +
Use this domain for words related to speaking poorly.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler mal.
+
+
+ + + +
3.5.1.2
+
+ +
Use this domain for words related to talking about a subject.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler d’un sujet.
+
+
+ + + +
3.5.1.2.1
+
+ +
Use this domain for words related to announcing something--communicating something to many people.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’annoncer quelque chose, de communiquer quelque chose à beaucoup de monde.
+
+
+ + + +
3.5.1.2.2
+
+ +
Use this domain for words related to describing something--to say some things about something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de décrire, de donner des détails.
+
+
+ + + +
3.5.1.2.3
+
+ +
Use this domain for words related to explaining something--to help someone to understand something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’expliquer quelque chose : aider quelqu’un à comprendre quelque chose.
+
+
+ + + +
3.5.1.2.4
+
+ +
Use this domain for words related to mentioning something--to talk about something but without saying much about it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mentionner quelque chose : de parler de quelque chose mais sans s’étendre.
+
+
+ + + +
3.5.1.2.5
+
+ +
Use this domain for words related to introducing a new subject--to start talking or writing about something new for the first time.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’introduire un nouveau sujet, de se mettre à parler ou écrire quelque chose de nouveau pour la première fois.
+
+
+ + + +
3.5.1.2.6
+
+ +
Use this domain for words related to repeating something--saying something a second time.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de répéter quelque chose, de dire une deuxième fois la même chose.
+
+
+ + + +
3.5.1.2.7
+
+ +
Use this domain for words referring to summarizing what you have said or what someone else has said.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de résumer ce qu’on a dit ou ce que quelqu’un d’autre a dit.
+
+
+ + + +
3.5.1.2.8
+
+ +
Use this domain for words related to emphasizing something--to say something in a way that other people know that you think this thing is important.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de mettre l’accent sur quelque chose, de dire quelque chose de manière à ce que les gens sachent qu’on trouve cela important.
+
+
+ + + +
3.5.1.2.9
+
+ +
Use this domain for words that express the idea that something (said, written, thought, or made) depicts or is about a subject, or that something is logically related to some topic. Also use this domain for words that mark the topic or subject of what is being thought about, talked about, or written about. Verbs of thinking, knowing, or speaking (including other types of expression) can take a 'topic' role. We can think of a 'topic' as the main idea. Use this domain also for the important thing in a picture.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’idée que quelque chose (de dit, d’écrit, de pensé ou de fait) illustre un sujet ou s’y rapporte, ou bien que quelque chose est logiquement associé à un sujet. Classez aussi dans ce champ lexical le vocabulaire qui caractérise le thème ou le sujet par ce qu’on en pense, dit ou écrit. Les verbes asssociés au fait de penser, de connaître ou de parler (y compris d’autres types d’expression) peuvent prendre une position de 'sujet'. Nous pouvons penser à un 'sujet' comme étant l’idée principale. Classer aussi dans ce champ lexical ce qui est important dans un tableau (une peinture, une représentation).
+
+
+ + + +
3.5.1.3
+
+ +
Use this domain for words that indicate if something is true, if it agrees with reality, or if it is not true.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’indiquer si une chose est vraie, si elle correspond à la réalité ou si elle n’est pas vraie.
+
+
+ + + +
3.5.1.3.1
+
+ +
Use this domain for words related to telling the truth.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dire la vérité.
+
+
+ + + +
3.5.1.3.2
+
+ +
Use this domain for words related to lying--to say something that is not true.
+
Classer dans ce champ lexical le vocabulaire en lien avec le mensonge, le fait de dire quelque chose qui n’est pas vrai.
+
+
+ + + +
3.5.1.3.3
+
+ +
Use this domain for words related to contradicting someone--to say that something someone has said is not true.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de contredire ce quelqu’un a dit.
+
+
+ + + +
3.5.1.3.4
+
+ +
Use this domain for words related to exposing falsehood--to do something to show that someone has told a lie.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dévoiler un mensonge, de faire quelque chose pour montrer que quelqu’un a dit un mensonge.
+
+
+ + + +
3.5.1.3.5
+
+ +
Use this domain for words that indicate if something is real.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est réel.
+
+
+ + + +
3.5.1.3.6
+
+ +
Use this domain for words referring to exaggerating--reporting information but saying something untrue that makes the information seem bigger or more important than it really is.
+
Classer dans ce champ lexical le vocabulaire exprimant l’exagération, qui rend l’information plus importante qu’elle ne l’est réellement.
+
+
+ + + +
3.5.1.4
+
+ +
Use this domain for words referring to carrying on a conversation with other people.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler avec d’autres.
+
+
+ + + +
3.5.1.4.1
+
+ +
Use this domain for words related to calling someone--to say something loud because you want someone who is far away to listen to you.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait d’appeler quelqu’un, de dire quelque chose fort parce qu’on veut que quelqu’un, qui est loin, entende.
+
+
+ + + +
3.5.1.4.2
+
+ +
Use this domain for words related to contacting someone--to communicate with someone who is far away from you using some communication device such as a telephone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de contacter quelqu’un : de communiquer avec quelqu’un qui est éloigné en utilisant un moyen de communication tel que le téléphone.
+
+
+ + + +
3.5.1.4.3
+
+ +
Use this domain for words related to greeting someone.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de saluer quelqu’un.
+
+
+ + + +
3.5.1.4.4
+
+ +
Use this domain for words related to saying farewell.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de dire au revoir.
+
+
+ + + +
3.5.1.4.5
+
+ +
Use this domain for words related to speaking in unison--to say something at the same time as someone else.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de parler à l’unisson, de dire quelque chose en même temps que quelqu’un d’autre.
+
+
+ + + +
3.5.1.5
+
+ +
Use this domain for words related to asking a question.
+
Classer dans ce champ lexical le vocabulaire associé au fait de poser une question.
+
+
+ + + +
3.5.1.5.1
+
+ +
Use this domain for words related to answering a question.
+
Classer dans ce champ lexical le vocabulaire associé au fait de répondre à une question.
+
+
+ + + +
3.5.1.5.2
+
+ +
Use this domain for words that refer to discovering and revealing unknown information.
+
Classer dans ce champ lexical le vocabulaire associé au fait de découvrir et dévoiler une information jusque là inconnue.
+
+
+ + + +
3.5.1.5.3
+
+ +
Use this domain for words related to hiding your thoughts.
+
Classer dans ce champ lexical le vocabulaire associé au fait de dissimuler ses pensées.
+
+
+ + + +
3.5.1.6
+
+ +
Use this domain for words referring to debating--for two or more people to discuss some issue and try to persuade the other person to accept one's view.
+
Classer dans ce champ lexical le vocabulaire associé au fait de discuter : deux personnes ou plus, abordant une question et chacune s’efforçant de convaincre l'autre (ou les autres) de son point de vue.
+
+
+ + + +
3.5.1.6.1
+
+ +
Use this domain for words referring to demonstrating something--to do something that shows the truth of a statement, or shows how to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de démontrer quelque chose : faire quelque chose pour prouver que quelque chose est vrai.
+
+
+ + + +
3.5.1.6.2
+
+ +
Use this domain for words related to quarreling--to fight with words.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se disputer : se battre avec des paroles.
+
+
+ + + +
3.5.1.7
+
+ +
Use this domain for words related to praising someone or something--to say something good about someone, or to say that someone did something good.
+
Classer dans ce champ lexical le vocabulaire associé au fait de louer quelqu’un ou quelque chose : dire du bien de quelqu’un ou dire qu'il a fait quelque chose de bien.
+
+
+ + + +
3.5.1.7.1
+
+ +
Use this domain for words related to thanking someone--to tell someone that you feel good about something they did for you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remercier quelqu’un : dire à quelqu’un qu'on apprécie ce qu’il a fait pour nous.
+
+
+ + + +
3.5.1.7.2
+
+ +
Use this domain for words referring to flattering someone--saying something nice to someone but not meaning it.
+
Classer dans ce champ lexical le vocabulaire associé à la flatterie : faire à quelqu’un des compliments sans les penser.
+
+
+ + + +
3.5.1.7.3
+
+ +
Use this domain for words related to boasting--to say something good about yourself, especially to make it seem that you are better than you really are.
+
Classer dans ce champ lexical le vocabulaire associé à la vantardise : dire du bien de soi, surtout pour se faire passer pour meilleur qu’on n’est en réalité.
+
+
+ + + +
3.5.1.8
+
+ +
Use this domain for words related to criticizing someone or something--to say that something is bad, especially something that someone did.
+
Classer dans ce champ lexical le vocabulaire associé au fait de critiquer quelqu’un ou quelque chose : dire que quelque chose (notamment quelque chose que quelqu'un a fait) est mauvais.
+
+
+ + + +
3.5.1.8.1
+
+ +
Use this domain for words related to blaming someone for something--to say that someone did something, and because of this something bad happened.
+
Classer dans ce champ lexical le vocabulaire associé au fait de blâmer : accuser d’avoir mal agi.
+
+
+ + + +
3.5.1.8.2
+
+ +
Use this domain for words related to insulting someone--to say that someone is bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’insulter quelqu’un.
+
+
+ + + +
3.5.1.8.3
+
+ +
Use this domain for words referring to mocking someone--doing or saying something to make people laugh at someone because you don't like them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se moquer de quelqu’un, de dire ou faire quelque chose afin qu’on se moque de quelqu’un que l’on n’aime pas.
+
+
+ + + +
3.5.1.8.4
+
+ +
Use this domain for words related to gossip--to say something bad about a person who is not with you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire des commérages, dire des choses négatives sur un absent.
+
+
+ + + +
3.5.1.8.5
+
+ +
Use this domain for words related to complaining--to say that you don't like something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se plaindre, de dire qu’on n’aime pas quelque chose.
+
+
+ + + +
3.5.1.9
+
+ +
Use this domain for words related to promising to do something--to say that you will do something in the future.
+
Classer dans ce champ lexical le vocabulaire associé au fait de promettre de faire quelque chose, de dire qu’on fera quelque chose.
+
+
+ + + +
3.5.2
+
+ +
Use this domain for words related to making a speech--to talk for a long time to many people.
+
Classer dans ce champ lexical le vocabulaire en lien avec le fait de faire un discours, de parler longtemps devant une foule.
+
+
+ + + +
3.5.2.1
+
+ +
Use this domain for words related to reporting something--to say that something has happened and to tell about it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rapporter un fait, un événement.
+
+
+ + + +
3.5.2.2
+
+ +
Use this domain for words referring to something someone says, which relays information from someone else, or about something someone has done.
+
Classer dans ce champ lexical le vocabulaire associé au récit d’une information ou d’un événement relaté par quelqu’un d’autre.
+
+
+ + + +
3.5.2.3
+
+ +
Use this domain for words referring to figurative speech--saying something that is not meant to be understood literally (according to the normal meaning of each word), or saying something that compares one thing to another.
+
Classer dans ce champ lexical le vocabulaire faisant référence au langage figuré (qu’on ne doit pas prendre au sens littéral, selon le sens habituel de chaque mot) ou à ce qu’on dit pour comparer une chose à une autre.
+
+
+ + + +
3.5.2.4
+
+ +
Use this domain for words referring to admitting something--saying that you have done wrong, or that your beliefs were wrong
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait d’admettre quelque chose, de reconnaître qu’on a mal agi ou qu’on s’est trompé.
+
+
+ + + +
3.5.3
+
+ +
Use this domain for words referring to a language.
+
Classer dans ce champ lexical le vocabulaire faisant référence au langage.
+
+
+ + + +
3.5.3.1
+
+ +
Use this domain for words that refer to words and groups of words.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des mots ou à des groupes de mots.
+
+
+ + + +
3.5.3.2
+
+ +
Use this domain for words referring to information--something someone says about something.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux informations, à ce qu’on dit.
+
+
+ + + +
3.5.4
+
+ +
Use this domain for words referring to a story.
+
Classer dans ce champ lexical le vocabulaire faisant référence à une histoire.
+
+
+ + + +
3.5.4.1
+
+ +
Use this domain for words referring to a fable or myth--a story that people tell that is not true.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux fables ou mythes, aux histoires qu’on raconte et qui ne sont pas vraies.
+
+
+ + + +
3.5.4.2
+
+ +
Use this domain for words referring to a saying or proverb--a short thing that people say to teach something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux dictons et aux proverbes, ces formules brèves qu’on dit pour enseigner quelque chose.
+
+
+ + + +
3.5.4.3
+
+ +
Use this domain for words referring to a riddle--something someone says that is hard to understand.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux devinettes, quelque chose que quelqu’un dit et qui est difficile à comprendre.
+
+
+ + + +
3.5.4.4
+
+ +
Use this domain for words related to poetry.
+
Classer dans ce champ lexical le vocabulaire associé à la poésie.
+
+
+ + + +
3.5.4.5
+
+ +
Use this domain for words related to history.
+
Classer dans ce champ lexical le vocabulaire associé à l’histoire.
+
+
+ + + +
3.5.4.6
+
+ +
Use this domain for words referring to verbal tradition--something that your ancestors told to each successive generation.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la tradition orale, à ce qui se transmet oralement de génération en génération.
+
+
+ + + +
3.5.5
+
+ +
Use this domain for words related to foolish talk--something someone says that other people think is silly or stupid.
+
Classer dans ce champ lexical le vocabulaire associé à des propos insensés, à ce que quelqu’un dit et que les autres estiment être bête ou insensé.
+
+
+ + + +
3.5.5.1
+
+ +
Use this domain for obscene words related to sex, defecation, death, damnation, and other taboo or offensive subjects. It is important to check the appropriateness of including obscene words in the dictionary. It should be the choice of the speakers of the language whether a word should be included or excluded. Obscene words included in the dictionary should be clearly marked as such. Obscenity is often used to heighten the emotion of an expression, and is often used when someone is angry. Obscenity is often associated with sex or defecation. Cursing is often associated with God, religion, or the afterlife. Insults often involve equating a person with an animal that is associated with an undesirable characteristic, questioning someone's parentage/legitimacy, questioning someone's character, or questioning someone's intelligence/sanity.
+
Classer dans ce champ lexical le vocabulaire obscène, les mots associés au sexe, à la défécation, à la mort, à la damnation ou à des sujets tabous ou choquants. Il faut impérativement vérifier s’il est pertinent d’inclure des termes obscènes dans le dictionnaire. C’est aux locuteurs de la langue de le décider. Les mots obscènes inclus doivent être clairement indiqués comme tels. On utilise souvent l’obscénité pour renforcer l’expression d’un sentiment. L’obscénité est souvent associée au sexe et à la défécation. Les jurons sont, eux, souvent liés à Dieu, à la religion et à la vie après la mort. On peut insulter quelqu’un en le comparant à un animal ayant une connotation négative, en remettant en cause la légitimité de sa naissance et de ses origines, en attaquant sa personne, son intelligence, son caractère ou sa santé mentale.
+
+
+ + + +
3.5.6
+
+ +
Use this domain for words referring to a sign or symbol--a picture or shape that has a meaning.
+
Classer dans ce champ lexical le vocabulaire désignant un signe ou un symbole, c’est-à-dire un dessin ou une forme qui a un sens.
+
+
+ + + +
3.5.6.1
+
+ +
Use this domain for words referring to gesturing--moving a part of the body to communicate a message.
+
Classer dans ce champ lexical le vocabulaire faisant référence aux gestes, au fait de bouger une partie du corps pour exprimer quelque chose.
+
+
+ + + +
3.5.6.2
+
+ +
Use this domain for words related to pointing at something--to move a part of your body toward something so that people will look at it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de pointer quelque chose, de bouger une partie du corps en direction de quelque chose pour que les autres regardent.
+
+
+ + + +
3.5.6.3
+
+ +
Use this domain for facial expressions--ways in which people move the parts of their faces to show feeling or communicate something.
+
Classer dans ce champ lexical les expressions du visage : les façons dont on bouge les parties du visage pour manifester nos sentiments ou communiquer quelque chose.
+
+
+ + + +
3.5.6.4
+
+ +
Use this domain for words related to the expression of good feelings, including laughing--the sounds a person makes when he is enjoying himself or thinks something is funny.
+
Classer dans ce champ lexical le vocabulaire désignant la manifestation de sentiments positifs, y compris le rire, les sons que quelqu’un fait quand il s’amuse ou pense à quelque chose de drôle.
+
+
+ + + +
3.5.6.5
+
+ +
Use this domain for words related to crying--when water forms in the eyes because of sadness or pain.
+
Classer dans ce champ lexical le vocabulaire associé au fait de pleurer : des larmes se forment dans les yeux à cause de la tristesse ou de la douleur.
+
+
+ + + +
3.5.7
+
+ +
Use this domain for general words related to reading and writing.
+
Classer dans ce champ lexical les termes génériques associés à la lecture et à l’écriture.
+
+
+ + + +
3.5.7.1
+
+ +
Use this domain for words related to writing.
+
Classer dans ce champ lexical le vocabulaire associé à l’écriture.
+
+
+ + + +
3.5.7.2
+
+ +
Use this domain for words referring to written material--something that has writing on it.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux documents écrits, ce sur quoi est écrit quelque chose.
+
+
+ + + +
3.5.7.3
+
+ +
Use this domain for words related to reading.
+
Classer dans ce champ lexical le vocabulaire associé à la lecture.
+
+
+ + + +
3.5.7.4
+
+ +
Use this domain for words related to publishing books.
+
Classer dans ce champ lexical le vocabulaire associé à la publication de livres.
+
+
+ + + +
3.5.7.5
+
+ +
Use this domain for words related to a record--something written because people need to remember it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de consigner des données, de les mettre par écrit parce qu’on a besoin de s’en souvenir.
+
+
+ + + +
3.5.7.6
+
+ +
Use this domain for words related to a list of things.
+
Classer dans ce champ lexical le vocabulaire associé à une liste de choses.
+
+
+ + + +
3.5.7.7
+
+ +
Use this domain for words referring to letter--a written message that is sent to someone.
+
Classer dans ce champ lexical le vocabulaire associé à une lettre : un message écrit qu’on envoie à quelqu’un.
+
+
+ + + +
3.5.8
+
+ +
Use this domain for words referring to interpreting something someone says--to try to understand the meaning of something someone says and express it in other words.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d’interpréter ce que quelqu’un dit : essayer de comprendre le sens de ce que quelqu’un dit et de le dire avec d’autres mots.
+
+
+ + + +
3.5.8.1
+
+ +
Use this domain for words related to the meaning of something that is said.
+
Classer dans ce champ lexical le vocabulaire associé à la signification de ce que quelqu’un a dit.
+
+
+ + + +
3.5.8.2
+
+ +
Use this domain for words describing something that is meaningless--something someone says that doesn't mean anything.
+
Classer dans ce champ lexical le vocabulaire qui décrit une chose qui n’a pas de sens, une parole que quelqu’un a dite et qui ne veut rien dire.
+
+
+ + + +
3.5.8.3
+
+ +
Use this domain for words related to being unintelligible--to say something that someone cannot understand.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être inintelligible, le fait de dire quelque chose que personne ne comprend.
+
+
+ + + +
3.5.8.4
+
+ +
Use this domain for words referring to showing or indicating something--if something (such as an object, something said, or something that happens) shows something, it makes people think of something or understand something (e.g. When his face turns red, it indicates he is angry.)
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de montrer ou d’indiquer quelque chose : un objet, une parole ou un événement montre quelque chose, fait penser à quelque chose ou fait comprendre quelque chose (par exemple, quand quelqu’un devient tout rouge, cela montre qu’il est en colère).
+
+
+ + + +
3.5.9
+
+ +
Use this domain for words related to radio, television, newspapers, magazines and other forms of mass communication.
+
Classer dans ce champ lexical le vocabulaire associé à la radio, la télévision, les journaux, les magazines et autres formes de communication de masse.
+
+
+ + + +
3.5.9.1
+
+ +
Use this domain for words related to radio and television.
+
Classer dans ce champ lexical le vocabulaire associé à la radio et à la télévision.
+
+
+ + + +
3.5.9.2
+
+ +
Use this domain for words related to the telephone.
+
Classer dans ce champ lexical le vocabulaire associé au téléphone.
+
+
+ + + +
3.5.9.3
+
+ +
Use this domain for words related to newspapers and magazines.
+
Classer dans ce champ lexical le vocabulaire associé aux journaux et magazines.
+
+
+ + + +
3.5.9.4
+
+ +
Use this domain for words related to movies and the cinema.
+
Classer dans ce champ lexical le vocabulaire associé aux films et au cinéma.
+
+
+ + + +
3.5.9.5
+
+ +
Use this domain for words related to recording music.
+
Classer dans ce champ lexical le vocabulaire associé à l’enregistrement de la musique.
+
+
+ + + +
3.5.9.6
+
+ +
Use this domain for words related to communication devices.
+
Classer dans ce champ lexical le vocabulaire associé aux moyens de communication.
+
+
+ + + +
3.6
+
+ +
Use this domain for words related to teaching.
+
Classer dans ce champ lexical le vocabulaire associé à l’enseignement.
+
+
+ + + +
3.6.1
+
+ +
Use this domain for words related to showing someone how something works, or explaining something to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de montrer à quelqu’un comment quelque chose marche ou de lui expliquer quelque chose.
+
+
+ + + +
3.6.2
+
+ +
Use this domain for words related to school.
+
Classer dans ce champ lexical le vocabulaire associé à l’école.
+
+
+ + + +
3.6.3
+
+ +
Use this domain for words related to a subject that is taught or a subject that you study at school.
+
Classer dans ce champ lexical le vocabulaire associé à une matière enseignée ou une matière que vous étudiez à l’école.
+
+
+ + + +
3.6.4
+
+ +
Use this domain for words related to a class--the period of time when a subject is taught.
+
Classer dans ce champ lexical le vocabulaire associé à un cours : durée pendant laquelle on enseigne une matière.
+
+
+ + + +
3.6.5
+
+ +
Use this domain for words related to correcting a mistake.
+
Classer dans ce champ lexical le vocabulaire associé au fait de corriger des fautes de comportement ou des fautes dans un écrit (ou autre travail).
+
+
+ + + +
3.6.6
+
+ +
Use this domain for words related to science.
+
Classer dans ce champ lexical le vocabulaire associé aux sciences.
+
+
+ + + +
3.6.7
+
+ +
Use this domain for words related to a test.
+
Classer dans ce champ lexical le vocabulaire associé à une évaluation.
+
+
+ + + +
3.6.8
+
+ +
Use this domain for words related to the answer to a question in a test.
+
Classer dans ce champ lexical le vocabulaire associé à la réponse à une question, dans un devoir ou examen.
+
+
+ + + +
4
+
+ +
Use this domain for very general words having to do with how people behave in relationship to other people.
+
Classer dans ce champ lexical les termes très généraux ayant trait aux relations qu’entretiennent les gens entre eux.
+
+
+ + + +
4.1
+
+ +
Use this domain for words related to relationships between people and groups of people.
+
Classer dans ce champ lexical le vocabulaire associé aux relations entre personnes ou groupes de personnes.
+
+
+ + + +
4.1.1
+
+ +
Use this domain for words related to friendship.
+
Classer dans ce champ lexical le vocabulaire associé à l’amitié.
+
+
+ + + +
4.1.1.1
+
+ +
Use this domain for words referring to a girlfriend or boyfriend.
+
Classer dans ce champ lexical le vocabulaire qui désigne un petit ami ou une petite amie.
+
+
+ + + +
4.1.2
+
+ +
Use this domain for words referring to different types of people.
+
Classer dans ce champ lexical les mots qui désignent les différents types de personnes.
+
+
+ + + +
4.1.2.1
+
+ +
Use this domain for words related to a relationship between people who work together.
+
Classer dans ce champ lexical le vocabulaire associé aux relations entre des personnes qui travaillent ensemble.
+
+
+ + + +
4.1.3
+
+ +
Use this domain for words referring to knowing someone.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de faire des connaissances.
+
+
+ + + +
4.1.3.1
+
+ +
Use this domain for words related to meeting someone for the first time.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rencontrer quelqu’un pour la première fois.
+
+
+ + + +
4.1.4
+
+ +
Use this domain for words referring to a neighbor--someone who lives nearby.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un voisin : quelqu’un qui vit près de chez soi.
+
+
+ + + +
4.1.4.1
+
+ +
Use this domain for words related to social class.
+
Classer dans ce champ lexical le vocabulaire associé aux classes sociales.
+
+
+ + + +
4.1.5
+
+ +
Use this domain for words related to unity--when a group of people agree with each other and are not fighting.
+
Classer dans ce champ lexical le vocabulaire associé à l’unité, au fait que toutes les personnes d’un groupe soient d’accord entre elles et ne se disputent pas.
+
+
+ + + +
4.1.6
+
+ +
Use this domain for words related to disunity--when a group of people do not agree with each other and are fighting.
+
Classer dans ce champ lexical le vocabulaire associé à la désunion :des personnes ne sont pas d’accord entre elles et se disputent.
+
+
+ + + +
4.1.6.1
+
+ +
Use this domain for words related to being antisocial--when someone does not want to talk to other people or be friends with them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être inamical : ne pas vouloir parler aux autres ou en être ami.
+
+
+ + + +
4.1.6.2
+
+ +
Use this domain for words related to setting yourself apart from other people and not relating to them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se mettre à l’écart des autres et de ne pas avoir de relations avec eux.
+
+
+ + + +
4.1.6.3
+
+ +
Use this domain for words related to being alone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rester seul.
+
+
+ + + +
4.1.6.4
+
+ +
Use this domain for words describing an independent person--someone who does things without other people's help.
+
Classer dans ce champ lexical le vocabulaire associé à la description de quelqu’un d’indépendant : qui fait les choses sans l’aide des autres.
+
+
+ + + +
4.1.6.5
+
+ +
Use this domain for words describing something that is private--something that only concerns you, and for words describing something that is public--something that concerns many people.
+
Classer dans ce champ lexical le vocabulaire qui qualifie ce qui relève du domaine privé : ce qui ne concerne que soi-même ; également le vocabulaire qui sert à qualifier ce qui relève du domaine public : ce qui concerne beaucoup de monde.
+
+
+ + + +
4.1.7
+
+ +
Use this domain for words related to beginning a relationship.
+
Classer dans ce champ lexical le vocabulaire associé au fait de débuter une relation.
+
+
+ + + +
4.1.7.1
+
+ +
Use this domain for words related to ending a relationship.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre fin à une relation.
+
+
+ + + +
4.1.8
+
+ +
Use this domain for words related to showing affection.
+
Classer dans ce champ lexical le vocabulaire associé au fait de montrer de l’affection.
+
+
+ + + +
4.1.9
+
+ +
Use this domain for general words for family relationships, not for specific terms.
+
Classer dans ce champ lexical les termes génériques associés aux relations familiales, et non les termes spécifiques.
+
+
+ + + +
4.1.9.1
+
+ +
Use this domain for words referring to being related by birth--when one of your ancestors and one of someone else's ancestors are the same person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être apparenté par la naissance, d’avoir un ancêtre commun avec quelqu’un d’autre.
+
+
+ + + +
4.1.9.1.1
+
+ +
Use this domain for words referring to grandparents and ancestors.
+
Classer dans ce champ lexical le vocabulaire associé aux grands-parents et aux ancêtres.
+
+
+ + + +
4.1.9.1.2
+
+ +
Use this domain for words related to parents.
+
Classer dans ce champ lexical le vocabulaire associé aux parents.
+
+
+ + + +
4.1.9.1.3
+
+ +
Use this domain for words related to siblings.
+
Classer dans ce champ lexical le vocabulaire associé aux frères et sœurs.
+
+
+ + + +
4.1.9.1.4
+
+ +
Use this domain for words referring to your children.
+
Classer dans ce champ lexical le vocabulaire associé à vos enfants.
+
+
+ + + +
4.1.9.1.5
+
+ +
Use this domain for words referring to your grandchildren.
+
Classer dans ce champ lexical le vocabulaire qui désigne les petits-enfants.
+
+
+ + + +
4.1.9.1.6
+
+ +
Use this domain for words related to your uncles and aunts.
+
Classer dans ce champ lexical le vocabulaire associé aux oncles et tantes.
+
+
+ + + +
4.1.9.1.7
+
+ +
Use this domain for words referring to your cousins.
+
Classer dans ce champ lexical le vocabulaire qui désigne vos cousins.
+
+
+ + + +
4.1.9.1.8
+
+ +
Use this domain for words referring to your nephews and nieces.
+
Classer dans ce champ lexical le vocabulaire qui désigne vos neveux et nièces.
+
+
+ + + +
4.1.9.1.9
+
+ +
Use this domain for words related to birth order.
+
Classer dans ce champ lexical le vocabulaire associé au rang de naissance
+
+
+ + + +
4.1.9.2
+
+ +
Use this domain for words referring to being related by marriage.
+
Classer dans ce champ lexical le vocabulaire qui désigne la parenté par alliance.
+
+
+ + + +
4.1.9.2.1
+
+ +
Use this domain for words related to your spouse.
+
Classer dans ce champ lexical le vocabulaire qui désigne son conjoint.
+
+
+ + + +
4.1.9.2.2
+
+ +
Use this domain for words referring to being related by marriage.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être apparenté par alliance.
+
+
+ + + +
4.1.9.3
+
+ +
Use this domain for words referring to widows and widowers. Some languages also have words for a parent who has lost a child, someone who has lost a brother or sister, or a general word for someone who has lost a relative.
+
Classer dans ce champ lexical le vocabulaire associé aux veufs et aux veuves. Certaines langues ont également des mots pour un père ou une mère qui a perdu un enfant, quelqu’un qui a perdu un frère ou une sœur, ou un terme générique pour quelqu’un qui a perdu un membre de sa famille.
+
+
+ + + +
4.1.9.4
+
+ +
Use this domain for words referring to orphans.
+
Classer dans ce champ lexical le vocabulaire associé aux orphelins.
+
+
+ + + +
4.1.9.5
+
+ +
Use this domain for words referring to an illegitimate child.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un enfant illégitime.
+
+
+ + + +
4.1.9.6
+
+ +
Use this domain for words related to adopting a child.
+
Classer dans ce champ lexical le vocabulaire associé à l’adoption d’un enfant.
+
+
+ + + +
4.1.9.7
+
+ +
Use this domain for words that refer to people who are not related by blood or marriage.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des gens qui ne sont apparentés ni par le sang, ni par alliance.
+
+
+ + + +
4.1.9.8
+
+ +
Use this domain for words that refer to social groups composed of related people.
+
Classer dans ce champ lexical le vocabulaire associé aux groupes sociaux composés de membres apparentés.
+
+
+ + + +
4.1.9.9
+
+ +
Use this domain for words referring to different races of people--the large groups of people in the world that are different in color and appearance.
+
Classer dans ce champ lexical le vocabulaire associé aux différentes races humaines : les grandes catégories mondiales de personnes dont la couleur de peau et le physique diffèrent.
+
+
+ + + +
4.2
+
+ +
Use this domain for general words referring to social activities.
+
Classer dans ce champ lexical le vocabulaire associé aux activités sociales.
+
+
+ + + +
4.2.1
+
+ +
Use this domain for words referring to coming together to form a group.
+
Classer dans ce champ lexical le vocabulaire associé à au fait de se rencontrer, de former un groupe.
+
+
+ + + +
4.2.1.1
+
+ +
Use this domain for words referring to inviting people to meet together--to say something to someone because you want to meet with them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’inviter des gens à se réunir, de leur dire quelque chose parce qu’on veut les rencontrer.
+
+
+ + + +
4.2.1.2
+
+ +
Use this domain for words referring to encountering someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rencontrer quelqu’un.
+
+
+ + + +
4.2.1.3
+
+ +
Use this domain for words related to meeting together.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se réunir.
+
+
+ + + +
4.2.1.4
+
+ +
Use this domain for words related to visiting someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rendre visite à quelqu’un.
+
+
+ + + +
4.2.1.4.1
+
+ +
Use this domain for words related to welcoming a visitor.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’accueillir un visiteur.
+
+
+ + + +
4.2.1.4.2
+
+ +
Use this domain for words related to showing hospitality to a visitor.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’exercer l’hospitalité envers un visiteur.
+
+
+ + + +
4.2.1.5
+
+ +
Use this domain for words referring to a meeting.
+
Classer dans ce champ lexical le vocabulaire associé à une réunion.
+
+
+ + + +
4.2.1.6
+
+ +
Use this domain for words related to participating in a group--to do things with a group.
+
Classer dans ce champ lexical le vocabulaire associé au fait de participer à un groupe : faire des choses avec un groupe.
+
+
+ + + +
4.2.1.7
+
+ +
Use this domain for words referring to a crowd or group of people.
+
Classer dans ce champ lexical le vocabulaire associé à une foule ou à un groupe de personne.
+
+
+ + + +
4.2.1.8
+
+ +
Use this domain for words referring to an organization.
+
Classer dans ce champ lexical le vocabulaire associé à une organisation.
+
+
+ + + +
4.2.1.8.1
+
+ +
Use this domain for words related to joining an organization.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se joindre à une organisation.
+
+
+ + + +
4.2.1.8.2
+
+ +
Use this domain for words related to leaving an organization.
+
Classer dans ce champ lexical le vocabulaire associé au fait de quitter une organisation.
+
+
+ + + +
4.2.1.8.3
+
+ +
Use this domain for words related to belonging to an organization.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire partie d’une organisation.
+
+
+ + + +
4.2.1.9
+
+ +
Use this domain for words referring to an organization.
+
Classer dans ce champ lexical le vocabulaire associé à une organisation.
+
+
+ + + +
4.2.2
+
+ +
Use this domain for words referring to a social event.
+
Classer dans ce champ lexical le vocabulaire associé à une rencontre sociale.
+
+
+ + + +
4.2.2.1
+
+ +
Use this domain for words referring to a ceremony.
+
Classer dans ce champ lexical le vocabulaire associé à une cérémonie.
+
+
+ + + +
4.2.2.2
+
+ +
Use this domain for words referring to a festival or show--a large social event during which some people entertain other people.
+
Classer dans ce champ lexical le vocabulaire associé à un festival ou à un spectacle, un grand rassemblement durant lequel des personnes en divertissent d’autres.
+
+
+ + + +
4.2.2.3
+
+ +
Use this domain for words related to celebrating.
+
Classer dans ce champ lexical le vocabulaire associé au fait de célébrer quelque chose.
+
+
+ + + +
4.2.3
+
+ +
Use this domain for words related to music.
+
Classer dans ce champ lexical le vocabulaire associé à la musique.
+
+
+ + + +
4.2.3.1
+
+ +
Use this domain for words related to composing music.
+
Classer dans ce champ lexical le vocabulaire associé à l’écriture de la musique.
+
+
+ + + +
4.2.3.2
+
+ +
Use this domain for words related to playing music.
+
Classer dans ce champ lexical le vocabulaire associé à jouer de la musique.
+
+
+ + + +
4.2.3.3
+
+ +
Use this domain for words related to singing.
+
Classer dans ce champ lexical le vocabulaire associé au chant.
+
+
+ + + +
4.2.3.4
+
+ +
Use this domain for words related to a musician.
+
Classer dans ce champ lexical le vocabulaire associé à un musicien.
+
+
+ + + +
4.2.3.5
+
+ +
Use this domain for words referring to musical instruments and people who play a particular instrument.
+
Classer dans ce champ lexical le vocabulaire associé à des instruments de musique et à ceux qui jouent d’un instrument particulier.
+
+
+ + + +
4.2.4
+
+ +
Use this domain for words related to dancing.
+
Classer dans ce champ lexical le vocabulaire associé à la danse.
+
+
+ + + +
4.2.5
+
+ +
Use this domain for words related to drama.
+
Classer dans ce champ lexical le vocabulaire associé au théâtre.
+
+
+ + + +
4.2.6
+
+ +
Use this domain for words related to entertainment and recreation.
+
Classer dans ce champ lexical le vocabulaire associé au divertissement et à la récréation.
+
+
+ + + +
4.2.6.1
+
+ +
Use this domain for words referring to games. Some languages do not make a distinction between "Games" and "Sports."
+
Classer dans ce champ lexical le vocabulaire associé aux jeux. Dans certaines langues, il n’y a pas de distinction entre jeu et sport.
+
+
+ + + +
4.2.6.1.1
+
+ +
Use this domain for words related to a particular game. The example words are from the card games. If you do not play card games in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.
+
Classer dans ce champ lexical le vocabulaire associé à un jeu particulier. Les mots ou expressions cités en exemple proviennent de jeux de cartes. Si dans votre culture, on ne joue pas aux cartes, vous pouvez renommer ce champ lexical et l’utiliser pour un de vos jeux. Vous ajouterez un champ lexical par jeu.
+
+
+ + + +
4.2.6.1.2
+
+ +
Use this domain for words related to a particular game. The example words are from the game of chess. If you do not play chess in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.
+
Classer dans ce champ lexical le vocabulaire associé à un jeu précis. Ici, nous avons pris comme exemple le jeu d’échec. Vous donnerez à ce champ lexical celui du nom d’un jeu auquel on joue dans votre culture et répondrez pour ce jeu à chacune des questions posées. Vous étudierez le champ lexical de chacun des principaux jeux de votre culture.
+
+
+ + + +
4.2.6.2
+
+ +
Use this domain for words related to sports.
+
Classer dans ce champ lexical le vocabulaire associé au sport.
+
+
+ + + +
4.2.6.2.1
+
+ +
Use this domain for words related to a particular sport. The example words are from the sport of football (also called soccer). If you do not play football in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.
+
Classer dans ce champ lexical le vocabulaire associé à un sport particulier. Ici on a pris pour exemple le football. Il se peut qu’on ne pratique pas ce sport dans votre culture ; il vous faudra alors énumérer le vocabulaire pour l’un des sports qu’on y pratique. Vous renommerez alors ce champ lexical et l’adapterez au sport choisi. Vous créerez des champs lexicaux pour chacun des sports de votre culture.
+
+
+ + + +
4.2.6.2.2
+
+ +
Use this domain for words related to a particular sport. The example words are from the sport of basketball. If you do not play basketball in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.
+
Classer dans ce champ lexical le vocabulaire associé au basketball. Si dans votre culture on ne le pratique pas, il faudra remplacer ce champ lexical par celui d’un sport pratiqué dans votre région.
+
+
+ + + +
4.2.6.3
+
+ +
Use this domain for words related to exercise.
+
Classer dans ce champ lexical le vocabulaire associé aux exercices physiques.
+
+
+ + + +
4.2.6.4
+
+ +
Use this domain for words related to gambling.
+
Classer dans ce champ lexical le vocabulaire associé au fait de parier.
+
+
+ + + +
4.2.7
+
+ +
Use this domain for words related to playing and fun.
+
Classer dans ce champ lexical le vocabulaire associé au fait de s’amuser.
+
+
+ + + +
4.2.8
+
+ +
Use this domain for words related to humor.
+
Classer dans ce champ lexical le vocabulaire associé à l’humour.
+
+
+ + + +
4.2.8.1
+
+ +
Use this domain for words related to being serious--not laughing or joking.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être sérieux, de ne pas rire ou plaisanter.
+
+
+ + + +
4.2.9
+
+ +
Use this domain for words related to a holiday.
+
Classer dans ce champ lexical le vocabulaire associé aux vacances.
+
+
+ + + +
4.2.9.1
+
+ +
Use this domain for words related to a holiday.
+
Classer dans ce champ lexical le vocabulaire associé aux vacances.
+
+
+ + + +
4.3
+
+ +
Use this domain for general words referring to a person's behavior.
+
Classer dans ce champ lexical le vocabulaire associé au comportement de quelqu’un.
+
+
+ + + +
4.3.1
+
+ +
Use this domain for words related to being good or moral in behavior.
+
Classer dans ce champ lexical le vocabulaire associé au fait de bien se comporter ou d’avoir un comportement moral.
+
+
+ + + +
4.3.1.1
+
+ +
Use this domain for words related to being bad or immoral in behavior, and for words describing a bad person.
+
Classer dans ce champ lexical le vocabulaire associé à un comportement mauvais ou immoral et le vocabulaire pour décrire quelqu’un de mauvais.
+
+
+ + + +
4.3.1.2
+
+ +
Use this domain for words related to meeting a standard.
+
Classer dans ce champ lexical le vocabulaire associé au fait de respecter la norme sociale.
+
+
+ + + +
4.3.1.2.1
+
+ +
Use this domain for words related to behaving below a standard.
+
Classer dans ce champ lexical le vocabulaire associé à un comportement qui ne respecte pas les normes sociales.
+
+
+ + + +
4.3.1.3
+
+ +
Use this domain for words related to acting maturely--to act like an adult rather than a child.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’agir avec maturité, d’agir comme un adulte et non comme un enfant.
+
+
+ + + +
4.3.1.3.1
+
+ +
Use this domain for words related to behaving in an immature way--for either a child or an adult to act like a child.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se comporter de manière immature, de se comporter comme un enfant qu’on soit adulte ou enfant.
+
+
+ + + +
4.3.1.3.2
+
+ +
Use this domain for words related to being sensible--to think about what you do.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être sensé, de réfléchir à ce qu’on fait.
+
+
+ + + +
4.3.1.4
+
+ +
Use this domain for words related to having a good reputation--when most people think well of someone because he does good things and doesn't do bad things.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir une bonne réputation ; une majorité de personnes ont une bonne opinion de quelqu’un car il fait de bonnes choses et non de mauvaises.
+
+
+ + + +
4.3.1.5
+
+ +
Use this domain for words related to being patient--if you are patient, you don't get angry or do anything bad even though something bad happens to you for a long time.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être patient. Lorsqu’on est patient on ne se met pas en colère, on ne fait rien de mal, même si on doit supporter longtemps une situation désagréable.
+
+
+ + + +
4.3.1.5.1
+
+ +
Use this domain for words related to being impatient--if you are impatient, you get angry or do something bad when something bad happens to you for a long time.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être impatient, de se mettre en colère ou de faire quelque chose de mal lorsqu’un évènement désagréable se produit et dure longtemps.
+
+
+ + + +
4.3.1.5.2
+
+ +
Use this domain for words related to being bad-tempered--to behave in an angry, unfriendly way.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir mauvais caractère, de se comporter de manière grincheuse, peu sympathique.
+
+
+ + + +
4.3.2
+
+ +
Use this domain for words related to admiring someone--to feel good about someone because you think that he is a good person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’admirer quelqu’un, de l’apprécier car on pense que c’est quelqu’un de bien.
+
+
+ + + +
4.3.2.1
+
+ +
Use this domain for words related to despising someone--to feel bad about someone because you think they are not as good as you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mépriser quelqu’un, de considérer qu’il est plus mauvais que soi.
+
+
+ + + +
4.3.2.2
+
+ +
Use this domain for words related to being humble--to not think that you are better than other people, or to not think that you are better than you really are, and to not talk or act as if you were better than other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être humble ; de ne pas penser que l’on est mieux que les autres ou que l’on est mieux que ce que l’on est vraiment ; de ne pas parler, ni agir comme si on était mieux que les autres.
+
+
+ + + +
4.3.2.3
+
+ +
Use this domain for words referring to being proud--to think that something or someone is very good and to feel very good about them, especially to think and feel very good about yourself--to think that you are better than others, to think that you are better than you really are, or to talk and act as if you were better than other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fier, de penser que quelqu’un ou quelque chose est très bien et d’être content de soi à cause de ces choses ou de ces personnes ; notamment de se trouver mieux que les autres, de se trouver mieux qu’on ne l’est en réalité ou de parler et d’agir comme si on était mieux que les autres.
+
+
+ + + +
4.3.2.4
+
+ +
Use this domain for words referring to showing off--to behave in a way that attracts people's attention because you want them to admire you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de frimer : se conduire d’une manière qui attire l’attention des autres parce qu’on veut être admiré.
+
+
+ + + +
4.3.3
+
+ +
Use this domain for words related to loving someone--to feel good about someone, want good things to happen to them, and want to do good things for them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aimer quelqu’un, de se sentir bien auprès de quelqu’un, de vouloir que de bonnes choses lui arrivent et de vouloir lui faire du bien.
+
+
+ + + +
4.3.3.1
+
+ +
Use this domain for words referring to hating someone--to want something bad to happen to someone, or to want to do something bad to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de détester quelqu’un : vouloir lui faire du mal ou que quelque chose de mal lui arrive.
+
+
+ + + +
4.3.3.2
+
+ +
Use this domain for words related to not caring about someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être indifférent aux autres.
+
+
+ + + +
4.3.3.3
+
+ +
Use this domain for words related to abandoning someone or something--to leave and not return to them.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’abandonner quelqu’un ou quelque chose : le quitter et ne pas revenir auprès de lui.
+
+
+ + + +
4.3.4
+
+ +
Use this domain for words referring to doing good to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire du bien à quelqu’un.
+
+
+ + + +
4.3.4.1
+
+ +
Use this domain for words related to doing evil to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire du mal à quelqu’un.
+
+
+ + + +
4.3.4.2
+
+ +
Use this domain for words related to helping someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aider quelqu’un.
+
+
+ + + +
4.3.4.2.1
+
+ +
Use this domain for words related to hindering someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’empêcher quelqu’un de faire quelque chose.
+
+
+ + + +
4.3.4.3
+
+ +
Use this domain for words related to cooperating with someone to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de collaborer avec quelqu’un pour faire quelque chose.
+
+
+ + + +
4.3.4.3.1
+
+ +
Use this domain for words related to competing with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être en concurrence avec quelqu’un.
+
+
+ + + +
4.3.4.4
+
+ +
Use this domain for words describing a person who acts in an altruistic, selfless manner--to act out of concern for the welfare of others without concern for your own welfare.
+
Classer dans ce champ lexical le vocabulaire associé à la description d’une personne qui agit de manière altruiste, non égoïste ; qui agit en se souciant du bien des autres sans se préoccuper de son propre bien-être.
+
+
+ + + +
4.3.4.4.1
+
+ +
Use this domain for words related to being selfish.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être égoïste.
+
+
+ + + +
4.3.4.4.2
+
+ +
Use this domain for words related to using someone for your own purpose or gain without helping them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se servir de quelqu’un pour arriver à ses propres fins ou pour gagner sans l’aider.
+
+
+ + + +
4.3.4.5
+
+ +
Use this domain for words related to sharing with other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait de partager avec d’autres.
+
+
+ + + +
4.3.4.5.1
+
+ +
Use this domain for words referring to providing someone with what they need to live each day, such as providing for an elderly parent who can no longer earn what they need.
+
Classer dans ce champ lexical le vocabulaire associé au fait de donner à quelqu’un ce dont il a besoin pour vivre chaque jour ; par exemple, pourvoir aux besoins de ses parents âgés quand ils ne peuvent plus gagner suffisamment d’argent pour vivre.
+
+
+ + + +
4.3.4.5.2
+
+ +
Use this domain for words related to caring for someone--to do something good for someone, because they need something and cannot do it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prendre soin de quelqu’un, de faire ce qui est bon pour lui, parce qu’il a besoin de quelque chose et ne peut pas le faire.
+
+
+ + + +
4.3.4.5.3
+
+ +
Use this domain for words related to entrusting something to the care of someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de confier la garde de quelque chose à quelqu’un.
+
+
+ + + +
4.3.4.6
+
+ +
Use this domain for words referring to meddling--involving oneself in something that does not concern oneself, such as someone else's business or affairs, or a fight between other people.
+
Classer dans ce champ lexical le vocabulaire associé au fait que quelqu’un se mêle de quelque chose qui ne le regarde pas, s’occupe de choses qui ne le concernent pas ; par exemple des affaires de quelqu’un d’autre, de la vie sentimentale des autres ou d’une dispute qui ne le concerne pas.
+
+
+ + + +
4.3.4.6.1
+
+ +
Use this domain for words referring to spoiling something that is happening, such as an event, work, relationship, or feeling, by doing something that makes it less attractive, less enjoyable, or less effective--to do something bad to something that is happening, so that people can't do what they were doing or don't enjoy it as much.
+
Utiliser ce domaine pour des mots faisant référence au fait de gâcher quelque chose qui est en train de se passer, comme un événement, un travail, une relation, un sentiment en faisant en sorte qu’il soit moins attractif, moins agréable, ou moins efficace : faire quelque chose de mal afin que ce qui se passe ne soit plus possible ou ne procure plus autant de plaisir.
+
+
+ + + +
4.3.4.7
+
+ +
Use this domain for words related to entering a place, such as a house, by force.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’entrer de force dans un lieu, par exemple une maison.
+
+
+ + + +
4.3.4.8
+
+ +
Use this domain for words related to kidnapping someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de kidnapper quelqu’un.
+
+
+ + + +
4.3.4.9
+
+ +
Use this domain for words related to being cruel.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être cruel.
+
+
+ + + +
4.3.5
+
+ +
Use this domain for words related to being honest--words describing someone who does not cheat, steal, or break the law.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être honnête : qui qualifie quelqu’un qui ne triche pas, ne vole pas ou n’enfreint pas la loi.
+
+
+ + + +
4.3.5.1
+
+ +
Use this domain for words related to being dishonest.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être malhonnête.
+
+
+ + + +
4.3.5.2
+
+ +
Use this domain for words related to being faithful--to continue to love and do good to someone so that they can always trust you.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fidèle : aimer continuellement et toujours faire du bien à quelqu’un afin qu’il puisse faire toujours confiance.
+
+
+ + + +
4.3.5.3
+
+ +
Use this domain for words related to being reliable--words describe a person who can be relied on to do what he is supposed to.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être fiable, digne de confiance ; des mots qui décrivent quelqu’un sur qui on peut compter pour faire ce qu’il est censé faire.
+
+
+ + + +
4.3.5.4
+
+ +
Use this domain for words related to being unreliable.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas être digne de confiance ?
+
+
+ + + +
4.3.5.5
+
+ +
Use this domain for words related to deceiving someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tromper quelqu’un.
+
+
+ + + +
4.3.5.6
+
+ +
Use this domain for words related to being a hypocrite.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être hypocrite.
+
+
+ + + +
4.3.6
+
+ +
Use this domain for words referring to self-control--deciding not to do something that you want to do, because you think it would be bad to do it; or deciding to do something, because you know it is good.
+
Classer dans ce champ lexical le vocabulaire associé à la maîtrise de soi ; au fait de décider de ne pas faire quelque chose qu’on souhaiterait faire parce qu’on pense que c’est mal, ou de décider de faire quelque chose parce qu’on sait que c’est bien.
+
+
+ + + +
4.3.6.1
+
+ +
Use this domain for words related to a lack of self-control.
+
Classer dans ce champ lexical le vocabulaire associé au fait de manquer de maîtrise de soi.
+
+
+ + + +
4.3.6.2
+
+ +
Use this domain for words referring to being tidy in your habits, such as keeping your belongings neat and organized,.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être ordonné, de garder ses affaires propres et rangées.
+
+
+ + + +
4.3.6.3
+
+ +
Use this domain for words related to being untidy--to not keep your things tidy and orderly.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être désordonné, de ne pas laisser les choses en ordre.
+
+
+ + + +
4.3.6.4
+
+ +
Use this domain for words referring to mistakes--something bad that someone does by accident.
+
Classer dans ce champ lexical le vocabulaire associé aux erreurs, à ce qu’on fait par accident et qui n’est pas juste.
+
+
+ + + +
4.3.7
+
+ +
Use this domain for words related to social refinement.
+
Classer dans ce champ lexical le vocabulaire associé à la bonne éducation.
+
+
+ + + +
4.3.7.1
+
+ +
Use this domain for words related to being impolite.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être impoli.
+
+
+ + + +
4.3.7.2
+
+ +
Use this domain for words related to being crazy--to act stupid or strange.
+
Classer dans ce champ lexical le vocabulaire associé à la folie, au fait d’agir de manière idiote ou bizarre.
+
+
+ + + +
4.3.8
+
+ +
Use this domain for words related to changing your behavior either for the better or for the worse.
+
Classer dans ce champ lexical le vocabulaire associé au fait de changer de comportement, que ce soit en mieux ou en pire.
+
+
+ + + +
4.3.8.1
+
+ +
Use this domain for words related to conforming to the behavior of others--to try to behave the same way as other people, or to try to behave the way other people want you to act.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se conformer au comportement des autres: essayer de se comporter comme les autres ou de faire ce qu’ils attendent.
+
+
+ + + +
4.3.9
+
+ +
Use this domain for general words referring to culture--the way a group of people (such as a tribe) behaves that is different from other groups.
+
Classer dans ce champ lexical les termes génériques associés à la culture : la manière dont un groupe de personnes (une tribu par exemple) se comporte et qui est différente de celle d’autres groupes.
+
+
+ + + +
4.3.9.1
+
+ +
Use this domain for words referring to customs--a particular practice of a cultural group.
+
Classer dans ce champ lexical le vocabulaire associé aux coutumes, aux pratiques propres à un groupe culturel.
+
+
+ + + +
4.3.9.2
+
+ +
Use this domain for words referring to a habit--a pattern of behavior of a person; something a person does frequently or regularly.
+
Classer dans ce champ lexical le vocabulaire associé à l’habitude : au comportement habituel de quelqu’un, à quelque chose que quelqu’un fait souvent ou régulièrement.
+
+
+ + + +
4.4
+
+ +
Use this domain for general words referring to prosperity and trouble
+
Classer dans ce champ lexical les termes génériques faisant référence à la prospérité ou à l’adversité.
+
+
+ + + +
4.4.1
+
+ +
Use this domain for words related to prosperity--when good things are happening.
+
Classer dans ce champ lexical le vocabulaire associé à la prospérité : les moments où des événements agréables se produisent.
+
+
+ + + +
4.4.2
+
+ +
Use this domain for words referring to bad things that happen in life.
+
Classer dans ce champ lexical le vocabulaire en relation avec les événements désagréables qui arrivent dans la vie.
+
+
+ + + +
4.4.2.1
+
+ +
Use this domain for words related to problems.
+
Classer dans ce champ lexical le vocabulaire associé aux problèmes.
+
+
+ + + +
4.4.2.2
+
+ +
Use this domain for words referring to danger--things and events that threaten to inflict damage, pain, or death.
+
Classer dans ce champ lexical le vocabulaire faisant référence au danger : choses et événements qui menacent de causer du dommage, de la douleur, ou la mort.
+
+
+ + + +
4.4.2.3
+
+ +
Use this domain for words related to accidents--something bad that happens without anyone wanting it to happen or doing anything to cause it to happen.
+
Classer dans ce champ lexical le vocabulaire associé aux accidents : événements désagréables qui surviennent de manière involontaire.
+
+
+ + + +
4.4.2.4
+
+ +
Use this domain for words related to a disaster.
+
Classer dans ce champ lexical le vocabulaire associé à une catastrophe.
+
+
+ + + +
4.4.2.5
+
+ +
Use this domain for words referring to a person being separate or alone.
+
Classer dans ce champ lexical le vocabulaire faisant référence à une personne séparée ou seule.
+
+
+ + + +
4.4.2.6
+
+ +
Use this domain for words related to suffering--to feel very bad because of something very bad that has happened to you.
+
Classer dans ce champ lexical le vocabulaire associé à la souffrance : se sentir très mal à la suite d’un événement très désagréable.
+
+
+ + + +
4.4.3
+
+ +
Use this domain for words related to responding to trouble.
+
Classer dans ce champ lexical le vocabulaire signifiant surmonter l’adversité.
+
+
+ + + +
4.4.3.1
+
+ +
Use this domain for words describing someone who is brave--not afraid to do something dangerous.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un de courageux, qui n’a pas peur de faire quelque chose de dangereux.
+
+
+ + + +
4.4.3.2
+
+ +
Use this domain for words related to feeling cowardly--to be afraid to do something because you think something bad might happen to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se comporter en lâche : avoir peur de faire quelque chose par appréhension des conséquences néfastes.
+
+
+ + + +
4.4.3.3
+
+ +
Use this domain for words related to avoiding something bad, such as trouble or someone you don't want to meet.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’éviter les ennuis, comme un malheur ou quelqu’un qu’on ne veut pas rencontrer.
+
+
+ + + +
4.4.3.4
+
+ +
Use this domain for words related to being cautious.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être prudent.
+
+
+ + + +
4.4.3.5
+
+ +
Use this domain for words related to solving a problem.
+
Classer dans ce champ lexical le vocabulaire associé à la résolution d’un problème.
+
+
+ + + +
4.4.3.6
+
+ +
Use this domain for words related to enduring a problem.
+
Classer dans ce champ lexical le vocabulaire associé au fait de devoir endurer un problème.
+
+
+ + + +
4.4.3.7
+
+ +
Use this domain for words referring to surviving--to live through a time of danger.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de survivre : continuer à vivre malgré le danger.
+
+
+ + + +
4.4.4
+
+ +
Use this domain for words related to responding to someone in trouble.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aider quelqu’un qui est dans l’adversité.
+
+
+ + + +
4.4.4.1
+
+ +
Use this domain for words related to having mercy on someone who has done something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir de la miséricorde pour un coupable.
+
+
+ + + +
4.4.4.2
+
+ +
Use this domain for words related to showing sympathy and support to someone in trouble.
+
Classer dans ce champ lexical le vocabulaire signifiant montrer de la sympathie et soutenir quelqu’un dans l’adversité.
+
+
+ + + +
4.4.4.3
+
+ +
Use this domain for words related to being gentle.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être bon.
+
+
+ + + +
4.4.4.4
+
+ +
Use this domain for words related to saving someone or something from trouble (something bad is happening) or danger (something bad will happen).
+
Classer dans ce champ lexical le vocabulaire associé à l'action de tirer quelqu'un d'un mauvais pas (présent) ou de le protéger d'un danger (futur).
+
+
+ + + +
4.4.4.5
+
+ +
Use this domain for words related to protecting someone from danger or being hurt.
+
Classer dans ce champ lexical le vocabulaire associé au fait de protéger quelqu'un d'un danger ou d’une blessure.
+
+
+ + + +
4.4.4.6
+
+ +
Use this domain for words related to freeing someone from bondage.
+
Classer dans ce champ lexical le vocabulaire associé à l'action de libérer quelqu'un de liens.
+
+
+ + + +
4.4.4.7
+
+ +
Use this domain for words related to relief.
+
Classer dans ce champ lexical le vocabulaire associé au secours.
+
+
+ + + +
4.4.4.8
+
+ +
Use this domain for words referring to risk--exposing oneself or something to danger.
+
Classer dans ce champ lexical le vocabulaire associé au risque ; se mettre soi-même ou mettre quelque chose en danger.
+
+
+ + + +
4.4.5
+
+ +
Use this domain for words related to chance--when something happens that no one intended.
+
Classer dans ce champ lexical le vocabulaire associé à la chance : quelque chose arrive sans que ce soit voulu.
+
+
+ + + +
4.4.5.1
+
+ +
Use this domain for words related to being lucky.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir de la chance.
+
+
+ + + +
4.4.5.2
+
+ +
Use this domain for words related to being unlucky.
+
Classer dans ce champ lexical le vocabulaire associé à la malchance.
+
+
+ + + +
4.5
+
+ +
Use this domain for words related to authority.
+
Classer dans ce champ lexical le vocabulaire associé à l'autorité.
+
+
+ + + +
4.5.1
+
+ +
Use this domain for words related to a person in authority.
+
Classer dans ce champ lexical le vocabulaire associé à une personne en position d'autorité.
+
+
+ + + +
4.5.2
+
+ +
Use this domain for words related to having authority.
+
Classer dans ce champ lexical le vocabulaire signifiant être en position d'autorité.
+
+
+ + + +
4.5.3
+
+ +
Use this domain for words related to exercising authority.
+
Classer dans ce champ lexical le vocabulaire associé à l'exercice de l'autorité.
+
+
+ + + +
4.5.3.1
+
+ +
Use this domain for words referring to one person leading or controlling other people because they have authority over them.
+
Classer dans ce champ lexical le vocabulaire associé à une personne qui mène ou dirige d'autres personnes parce qu'elle a autorité sur elles.
+
+
+ + + +
4.5.3.2
+
+ +
Use this domain for words related to commanding someone to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de commander à quelqu'un de faire quelque chose.
+
+
+ + + +
4.5.3.3
+
+ +
Use this domain for words related to disciplining someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de discipliner quelqu'un.
+
+
+ + + +
4.5.3.4
+
+ +
Use this domain for words related to appointing someone to a position of authority, or delegating authority to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de nommer quelqu'un à un poste d'autorité ou de déléguer l'autorité à quelqu'un.
+
+
+ + + +
4.5.4
+
+ +
Use this domain for words related to submitting to authority.
+
Classer dans ce champ lexical le vocabulaire associé à la soumission à l'autorité.
+
+
+ + + +
4.5.4.1
+
+ +
Use this domain for words related to obeying someone.
+
Classer dans ce champ lexical le vocabulaire associé à l'obéissance.
+
+
+ + + +
4.5.4.2
+
+ +
Use this domain for words related to disobeying someone.
+
Classer dans ce champ lexical le vocabulaire associé à la désobéissance.
+
+
+ + + +
4.5.4.3
+
+ +
Use this domain for words related to serving someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de servir quelqu'un.
+
+
+ + + +
4.5.4.4
+
+ +
Use this domain for words referring to a slave--a person owned by another and obligated to work without wages.
+
Classer dans ce champ lexical les termes désignant un esclave : quelqu’un qui appartient à quelqu’un d’autre et qui est obligé de travailler sans salaire.
+
+
+ + + +
4.5.4.5
+
+ +
Use this domain for words related to being a disciple of someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être le disciple de quelqu'un.
+
+
+ + + +
4.5.4.6
+
+ +
Use this domain for words related to rebelling against authority.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se rebeller contre l'autorité.
+
+
+ + + +
4.5.4.7
+
+ +
Use this domain for words related to being independent.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être indépendant.
+
+
+ + + +
4.5.5
+
+ +
Use this domain for words related to honoring someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’honorer quelqu’un.
+
+
+ + + +
4.5.5.1
+
+ +
Use this domain for words related to a title of honor.
+
Classer dans ce champ lexical le vocabulaire associé à un titre honorifique.
+
+
+ + + +
4.5.5.2
+
+ +
Use this domain for words related to lacking respect.
+
Classer dans ce champ lexical le vocabulaire associé au manque de respect.
+
+
+ + + +
4.5.6
+
+ +
Use this domain for words related to a person's social status.
+
Classer dans ce champ lexical le vocabulaire associé à la position sociale de quelqu’un.
+
+
+ + + +
4.5.6.1
+
+ +
Use this domain for words related to high social status.
+
Classer dans ce champ lexical le vocabulaire associé à une position sociale supérieure.
+
+
+ + + +
4.5.6.2
+
+ +
Use this domain for words related to low social status.
+
Classer dans ce champ lexical le vocabulaire associé à une position sociale inférieure.
+
+
+ + + +
4.6
+
+ +
Use this domain for words related to government.
+
Classer dans ce champ lexical le vocabulaire associé au gouvernement.
+
+
+ + + +
4.6.1
+
+ +
Use this domain for words related to the ruler of a country.
+
Classer dans ce champ lexical le vocabulaire associé au dirigeant d’un pays.
+
+
+ + + +
4.6.1.1
+
+ +
Use this domain for words related to the king's family.
+
Classer dans ce champ lexical le vocabulaire associé à la famille royale.
+
+
+ + + +
4.6.1.2
+
+ +
Use this domain for words related to a government official.
+
Classer dans ce champ lexical le vocabulaire associé aux représentants de l’État.
+
+
+ + + +
4.6.2
+
+ +
Use this domain for words related to a citizen of a country.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être citoyen d’un pays.
+
+
+ + + +
4.6.2.1
+
+ +
Use this domain for words related to a foreigner--a person who visits or lives in a country but is not a citizen.
+
Classer dans ce champ lexical le vocabulaire associé à un étranger, à une personne qui visite ou vit dans un pays, mais n’en est pas citoyen.
+
+
+ + + +
4.6.3
+
+ +
Use this domain for words related to a government organization.
+
Classer dans ce champ lexical le vocabulaire associé aux corps d’État et aux organisations gouvernementales.
+
+
+ + + +
4.6.3.1
+
+ +
Use this domain for words related to a governing body--an organization within the government.
+
Classer dans ce champ lexical le vocabulaire associé aux instances dirigeantes, organisations au sein du gouvernement.
+
+
+ + + +
4.6.4
+
+ +
Use this domain for words related to ruling.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de gouverner.
+
+
+ + + +
4.6.5
+
+ +
Use this domain for words related to a person subjugating someone to their authority.
+
Classer dans ce champ lexical le vocabulaire associé à une personne soumettant quelqu’un à son autorité.
+
+
+ + + +
4.6.6
+
+ +
Use this domain for words related to government functions--the things a government does.
+
Classer dans ce champ lexical le vocabulaire associé aux fonctions d’un gouvernement : ce que fait un gouvernement.
+
+
+ + + +
4.6.6.1
+
+ +
Use this domain for words related to the police.
+
Classer dans ce champ lexical le vocabulaire associé à la police.
+
+
+ + + +
4.6.6.1.1
+
+ +
Use this domain for words related to arresting a criminal.
+
Classer dans ce champ lexical le vocabulaire qui signifie arrêter un suspect.
+
+
+ + + +
4.6.6.1.2
+
+ +
Use this domain for words related to informal justice--punishing someone when you are not in a position of authority, as when a mob catches and kills a criminal.
+
Classer dans ce champ lexical le vocabulaire associé à la justice populaire : punir quelqu’un alors qu’on n’en a pas le droit, par exemple lorsqu’ une foule attrape un criminel et le tue.
+
+
+ + + +
4.6.6.2
+
+ +
Use this domain for words related to diplomacy between nations.
+
Classer dans ce champ lexical le vocabulaire associé à la diplomatie entre les pays.
+
+
+ + + +
4.6.6.3
+
+ +
Use this domain for words related to representing another person.
+
Classer dans ce champ lexical le vocabulaire associé au fait de représenter quelqu’un d’autre.
+
+
+ + + +
4.6.6.4
+
+ +
Use this domain for words related to an election.
+
Classer dans ce champ lexical le vocabulaire associé aux élections.
+
+
+ + + +
4.6.6.5
+
+ +
Use this domain for words related to politics--the activities of politicians and political parties.
+
Classer dans ce champ lexical le vocabulaire associé à la politique : activités des politiciens et des partis politiques.
+
+
+ + + +
4.6.7
+
+ +
Use this domain for words referring to a region--a part of a country, or a part of the earth.
+
Classer dans ce champ lexical le vocabulaire qui désigne une région, une partie d’un pays ou de la Terre.
+
+
+ + + +
4.6.7.1
+
+ +
Use this domain for words related to a country.
+
Classer dans ce champ lexical le vocabulaire associé à un pays.
+
+
+ + + +
4.6.7.2
+
+ +
Use this domain for words related to a city.
+
Classer dans ce champ lexical le vocabulaire associé à une localité.
+
+
+ + + +
4.6.7.3
+
+ +
Use this domain for words related to the countryside--the area away from a city
+
Classer dans ce champ lexical le vocabulaire associé à la campagne, à une région loin d’une ville.
+
+
+ + + +
4.6.7.4
+
+ +
Use this domain for words related to a community.
+
Classer dans ce champ lexical le vocabulaire associé à une communauté.
+
+
+ + + +
4.7
+
+ +
Use this domain for words related to the law.
+
Classer dans ce champ lexical le vocabulaire associé à la loi.
+
+
+ + + +
4.7.1
+
+ +
Use this domain for words referring to a specific law or set of laws.
+
Classer dans ce champ lexical le vocabulaire associé à une loi ou un ensemble de lois.
+
+
+ + + +
4.7.2
+
+ +
Use this domain for words related to passing a law.
+
Classer dans ce champ lexical le vocabulaire associé au vote d’une loi.
+
+
+ + + +
4.7.3
+
+ +
Use this domain for words related to breaking the law.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’enfreindre la loi.
+
+
+ + + +
4.7.4
+
+ +
Use this domain for words related to a court of law.
+
Classer dans ce champ lexical le vocabulaire associé au tribunal.
+
+
+ + + +
4.7.4.1
+
+ +
Use this domain for words related to legal personnel.
+
Classer dans ce champ lexical le vocabulaire associé au personnel judiciaire.
+
+
+ + + +
4.7.5
+
+ +
Use this domain for words related to the legal process.
+
Classer dans ce champ lexical le vocabulaire associé à une procédure judiciaire.
+
+
+ + + +
4.7.5.1
+
+ +
Use this domain for words referring to investigating a crime, accident, or criminal--to try to learn something about something bad that has happened because you want to know who did it, or to try to learn something about someone because you think they did something bad.
+
Classer dans ce champ lexical le vocabulaire associé à l’enquête : sur un crime, un accident, un criminel ; ou pour essayer d’obtenir des informations sur une infraction commise et des renseignements sur quelqu’un susceptible d’avoir perpétré un acte répréhensible.
+
+
+ + + +
4.7.5.2
+
+ +
Use this domain for words related to suspecting someone--to think that someone might have done something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait de soupçonner quelqu’un : penser que quelqu’un pourrait avoir commis un délit.
+
+
+ + + +
4.7.5.3
+
+ +
Use this domain for words related to accusing someone of doing something bad.
+
Classer dans ce champ lexical le vocabulaire qui signifie accuser quelqu’un de faire quelque chose de mal.
+
+
+ + + +
4.7.5.4
+
+ +
Use this domain for words related to defending someone who has been accused of breaking a law.
+
Classer dans ce champ lexical le vocabulaire associé à la défense de quelqu’un qui a été accusé d’enfreindre une loi.
+
+
+ + + +
4.7.5.5
+
+ +
Use this domain for words related to testifying in a court of law.
+
Classer dans ce champ lexical le vocabulaire associé au fait de témoigner devant un tribunal.
+
+
+ + + +
4.7.5.6
+
+ +
Use this domain for words related to dropping legal charges against someone.
+
Classer dans ce champ lexical le vocabulaire qui signifie retirer un chef d’inculpation.
+
+
+ + + +
4.7.5.7
+
+ +
Use this domain for words related to taking an oath.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prêter serment.
+
+
+ + + +
4.7.5.8
+
+ +
Use this domain for words referring to vindicating someone--to prove that someone is innocent of an accusation made against them.
+
Classer dans ce champ lexical le vocabulaire qui signifie innocenter quelqu’un, prouver qu’il était accusé à tort.
+
+
+ + + +
4.7.6
+
+ +
Use this domain for words related to judging someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de juger quelqu’un.
+
+
+ + + +
4.7.6.1
+
+ +
Use this domain for words related to acquitting a person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’acquitter quelqu’un.
+
+
+ + + +
4.7.6.2
+
+ +
Use this domain for words related to condemning someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de condamner quelqu’un.
+
+
+ + + +
4.7.6.3
+
+ +
Use this domain for words related to something being someone's fault.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui est de la faute de quelqu’un.
+
+
+ + + +
4.7.7
+
+ +
Use this domain for words related to punishing someone.
+
Classer dans ce champ lexical le vocabulaire associé à la punition de quelqu’un.
+
+
+ + + +
4.7.7.1
+
+ +
Use this domain for words related to rewarding someone.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de récompenser quelqu’un.
+
+
+ + + +
4.7.7.2
+
+ +
Use this domain for words referring to a fine--a payment (usually of money) made to a victim or the government for a crime committed against them.
+
Classer dans ce champ lexical le vocabulaire associé au versement d’une amende : un paiement (en général en argent) à une victime ou à l’État.
+
+
+ + + +
4.7.7.3
+
+ +
Use this domain for words related to imprisoning someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’emprisonner quelqu’un.
+
+
+ + + +
4.7.7.4
+
+ +
Use this domain for words related to executing someone for a crime.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’exécuter quelqu’un pour un crime.
+
+
+ + + +
4.7.7.5
+
+ +
Use this domain for words referring to ostracizing someone--excluding someone from society as punishment for some wrong.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de bannir quelqu’un, de l’exclure d’une société pour le punir d’un méfait.
+
+
+ + + +
4.7.7.6
+
+ +
Use this domain for words related to pardoning someone who has been found guilty of a crime.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de pardonner à quelqu’un qui est coupable d’un crime.
+
+
+ + + +
4.7.7.7
+
+ +
Use this domain for words referring to atoning for a past sin--doing something to make up for something bad you did, or giving something to pay for something bad you did.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’expier un péché passé : faire quelque chose pour réparer un tort, se racheter d’une mauvaise action.
+
+
+ + + +
4.7.8
+
+ +
Use this domain for words related to a legal contract.
+
Classer dans ce champ lexical le vocabulaire associé à un contrat ?
+
+
+ + + +
4.7.8.1
+
+ +
Use this domain for words related to a covenant between two people or groups of people.
+
Classer dans ce champ lexical le vocabulaire associé à une alliance entre deux personnes ou groupes de personnes.
+
+
+ + + +
4.7.8.2
+
+ +
Use this domain for words related to breaking a contract.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de rompre un contrat.
+
+
+ + + +
4.7.9
+
+ +
Use this domain for words related to justice.
+
Classer dans ce champ lexical le vocabulaire associé à la justice.
+
+
+ + + +
4.7.9.1
+
+ +
Use this domain for words related to being impartial.
+
Classer dans ce champ lexical le vocabulaire associé à l’impartialité.
+
+
+ + + +
4.7.9.2
+
+ +
Use this domain for words related to being unfair.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être injuste.
+
+
+ + + +
4.7.9.3
+
+ +
Use this domain for words related to deserving something--if you do something, either good or bad, something can happen to you as a result of what you did. For instance you can receive a reward for doing good, or a punishment for doing wrong. If what happened to you is like what you did, people can think it is right that this thing happened to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mériter quelque chose : lorsqu’on agit, bien ou mal, il en résulte quelque chose. Par exemple, si on fait le bien, on reçoit une récompense ; si on fait le mal, on reçoit une punition. Si ce qui arrive est de la même nature que ce qu’on a fait, les autres pensent que ce qui arrive est juste.
+
+
+ + + +
4.7.9.4
+
+ +
Use this domain for words related to being unfair to someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être injuste envers quelqu’un.
+
+
+ + + +
4.7.9.5
+
+ +
Use this domain for words related to acting harshly.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’agir durement.
+
+
+ + + +
4.7.9.6
+
+ +
Use this domain for words related to oppressing someone or a particular group of people--when a person uses his power or authority to harm others who are innocent.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’opprimer quelqu’un ou un groupe de personnes : quelqu’un utilise la force ou son autorité pour faire du mal à des innocents.
+
+
+ + + +
4.8
+
+ +
Use this domain for general words referring to conflict between people, including quarreling, fighting, and war. The words in this domain should be very general, rather than referring to specific kinds of conflict.
+
Classer dans ce champ lexical le vocabulaire générique associé à un conflit entre plusieurs personnes, y compris querelle, combat et guerre. Les mots de ce champ lexical doivent être très génériques plutôt qu’être relatifs à des genres particuliers de conflits.
+
+
+ + + +
4.8.1
+
+ +
The words in this domain describe a situation in which people disagree about something so strongly that they might start fighting. But these words imply that they have not started fighting yet.
+
Les mots de ce champ lexical décrivent une situation dans laquelle des personnes sont si profondément en désaccord qu’elles sont sur le point de se battre. Mais ces mots indiquent qu’elles n’ont pas encore commencé à se battre.
+
+
+ + + +
4.8.1.1
+
+ +
Use this domain for words referring to opposing something that you think is wrong.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être opposé à quelque chose qu’on estime mauvais.
+
+
+ + + +
4.8.2
+
+ +
Use this domain for words referring to fighting someone. The words in this domain describe a situation in which two people or groups of people fight each other over something or in order to reach some goal. A fight can use words, various kinds of weapons, or other actions. For fights that only use words use the domain +'Quarrel'.
+
Classer dans ce champ lexical le vocabulaire associé au fait de combattre quelqu’un. Les mots de ce champ lexical décrivent une situation dans laquelle deux personnes ou groupes de personnes se combattent pour obtenir quelque chose ou pour atteindre un but. Dans un combat on emploie des mots ou diverses sortes d’armes ou bien l’on agit. Si on utilise seulement des mots, on les classera dans le champ « querelle ».
+
+
+ + + +
4.8.2.1
+
+ +
Use this domain for words referring to fighting for something good.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se battre pour une bonne cause.
+
+
+ + + +
4.8.2.2
+
+ +
Use this domain for words referring to fighting against something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se battre contre quelque chose de mal.
+
+
+ + + +
4.8.2.3
+
+ +
Use this domain for words referring to attacking someone--to begin fighting someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attaquer quelqu’un : se mettre à se battre contre lui.
+
+
+ + + +
4.8.2.3.1
+
+ +
Use this domain for words related to ambushing someone--to attacking someone without warning.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tendre une embuscade à quelqu’un : l’attaquer sans le prévenir.
+
+
+ + + +
4.8.2.4
+
+ +
Use this domain for words related to defending someone from attack.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se défendre ou défendre quelqu’un lors d’une attaque.
+
+
+ + + +
4.8.2.5
+
+ +
Use this domain for words related to revenge--to do something bad to someone because they did something bad to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se venger de quelqu’un dont on a été victime : rendre le mal pour le mal.
+
+
+ + + +
4.8.2.6
+
+ +
Use this domain for words related to a riot--when lots of people are fighting and breaking the law.
+
Classer dans ce champ lexical le vocabulaire associé à une émeute : de nombreuses personnes se battent et passent outre la loi.
+
+
+ + + +
4.8.2.7
+
+ +
Use this domain for words related to betraying someone.
+
Classer dans ce domaine le vocabulaire en rapport avec le fait de trahir quelqu’un.
+
+
+ + + +
4.8.2.8
+
+ +
Use this domain for words related to being violent--a word describing someone who is likely to attack and injure or kill people.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être violent : un mot qui décrit quelqu’un qui est susceptible d’attaquer, blesser ou tuer des personnes.
+
+
+ + + +
4.8.2.9
+
+ +
Use this domain for words related to an enemy--someone you are fighting against.
+
Classer dans ce champ lexical le vocabulaire associé à un ennemi : quelqu’un qu’on combat.
+
+
+ + + +
4.8.3
+
+ +
Use this domain for words related to war--fighting between countries.
+
Classer dans ce champ lexical le vocabulaire associé à la guerre : bataille entre deux pays.
+
+
+ + + +
4.8.3.1
+
+ +
Use this domain for words related to defeating someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de vaincre quelqu’un.
+
+
+ + + +
4.8.3.2
+
+ +
Use this domain for words related to winning a victory.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remporter une victoire.
+
+
+ + + +
4.8.3.3
+
+ +
Use this domain for words related to losing a fight.
+
Classer dans ce champ lexical le vocabulaire associé au fait de perdre une bataille.
+
+
+ + + +
4.8.3.4
+
+ +
Use this domain for words related to surrendering to an enemy.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se rendre à l’ennemi.
+
+
+ + + +
4.8.3.5
+
+ +
Use this domain for words related to a prisoner of war.
+
Classer dans ce champ lexical le vocabulaire associé aux prisonniers de guerre.
+
+
+ + + +
4.8.3.6
+
+ +
Use this domain for words related to military organizations.
+
Classer dans ce champ lexical le vocabulaire associé à une organisation militaire.
+
+
+ + + +
4.8.3.6.1
+
+ +
Use this domain for words related to the army.
+
Classer dans ce champ lexical les mots relatifs à l’armée.
+
+
+ + + +
4.8.3.6.2
+
+ +
Use this domain for words related to the navy.
+
Classer dans ce champ lexical les mots relatifs à la marine.
+
+
+ + + +
4.8.3.6.3
+
+ +
Use this domain for words related to the air force.
+
Classer dans ce champ lexical les mots relatifs à l’aviation.
+
+
+ + + +
4.8.3.6.4
+
+ +
Use this domain for words related to a soldier.
+
Classer dans ce champ lexical le vocabulaire associé au soldat.
+
+
+ + + +
4.8.3.6.5
+
+ +
Use this domain for words related to a spy.
+
Classer dans ce champ lexical le vocabulaire associé à un espion.
+
+
+ + + +
4.8.3.6.6
+
+ +
Use this domain for words related to a fort.
+
Classer dans ce champ lexical le vocabulaire associé à un fort.
+
+
+ + + +
4.8.3.7
+
+ +
Use this domain for words related to a weapon and using a weapon.
+
Classer dans ce champ lexical le vocabulaire associé à une arme et à son usage.
+
+
+ + + +
4.8.3.8
+
+ +
Use this domain for words related to plundering--stealing something from an enemy during a war.
+
Classer dans ce champ lexical le vocabulaire associé au pillage : s’emparer de quelque chose appartenant à l’ennemi en temps de guerre.
+
+
+ + + +
4.8.4
+
+ +
Use this domain for words related to peace--when people or countries are not fighting.
+
Classer dans ce champ lexical le vocabulaire associé à la paix : période où des personnes ou bien des pays ne sont pas en conflit.
+
+
+ + + +
4.8.4.1
+
+ +
Use this domain for words related to rebuking someone--to tell someone that he has done something wrong.
+
Classer dans ce champ lexical le vocabulaire associé au fait de réprimander quelqu’un : lui dire que ce qu’il a fait est mal.
+
+
+ + + +
4.8.4.2
+
+ +
Use this domain for words related to making an appeal.
+
Classer dans ce champ lexical le vocabulaire associé au fait de lancer un appel.
+
+
+ + + +
4.8.4.3
+
+ +
Use this domain for words related to appeasing someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’apaiser quelqu’un.
+
+
+ + + +
4.8.4.4
+
+ +
Use this domain for words related to negotiating with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de négocier avec quelqu’un.
+
+
+ + + +
4.8.4.5
+
+ +
Use this domain for words related to renouncing a claim.
+
Classer dans ce champ lexical le vocabulaire associé au fait de renoncer à une revendication.
+
+
+ + + +
4.8.4.6
+
+ +
Use this domain for words related to repenting.
+
Classer dans ce champ lexical le vocabulaire associé à la repentance, au regret.
+
+
+ + + +
4.8.4.6.1
+
+ +
Use this domain for words related to asking for forgiveness.
+
Classer dans ce champ lexical le vocabulaire associé au fait de demander pardon.
+
+
+ + + +
4.8.4.7
+
+ +
Use this domain for words related to forgiving someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de pardonner à quelqu’un.
+
+
+ + + +
4.8.4.8
+
+ +
Use this domain for words related to making peace--to try to prevent or end a war.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire la paix : essayer de prévenir la guerre ou y mettre fin.
+
+
+ + + +
4.8.4.8.1
+
+ +
Use this domain for words related to stopping fighting.
+
Classer dans ce champ lexical le vocabulaire associé au fait de cesser les hostilités.
+
+
+ + + +
4.8.4.9
+
+ +
Use this domain for words related to reconciling with someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se réconcilier avec quelqu’un.
+
+
+ + + +
4.9
+
+ +
Use this domain for general words referring to religion and the supernatural.
+
Classer dans ce champ lexical le vocabulaire générique associé à la religion et au surnaturel.
+
+
+ + + +
4.9.1
+
+ +
Use this domain for words related to God--the supreme being in the universe. Each theological system will have different beliefs concerning the existence and nature of God. Our purpose here is to collect and define the terms used to refer to the supreme deity. If there is no such person in the theological system, then use this domain for other terms for the pantheon of gods, ultimate reality, nirvana, and similar concepts. However most theological systems, even atheism, have the concept of a supreme God and use words to refer to him.
+
Classer dans ce champ lexical le vocabulaire associé à Dieu, l’être suprême de l’univers. Chaque système théologique aura des croyances différentes sur l’existence et la nature de Dieu. Notre but ici est de recueillir des termes qui font référence à la divinité suprême et les définir. S’il n’y a personne de tel dans le système théologique, on utilisera alors ce champ lexical pour le panthéon des dieux, la réalité ultime, le nirvana et autres notions similaires. Cependant, la plupart des systèmes théologiques, y compris l’athéisme, ont la notion d’un Dieu suprême et ont des mots pour le désigner.
+
+
+ + + +
4.9.2
+
+ +
Use this domain for words referring to supernatural beings--gods, spirits, other types of beings, which normally cannot be seen and do not belong to this world. Some people accept the existence of certain supernatural beings and not others. Mythological beings are those that were believed in during previous times but that are no longer believed in. Fictional beings are those that no one has ever believed in. An indication of whether most people believe in the supernatural being should be put in the definition.
+
Classer dans ce champ lexical le vocabulaire associé à des êtres surnaturels, dieux, esprits, autres types d’êtres, qu’on ne peut pas voir normalement et n’appartiennent pas à ce monde. Certains acceptent l’existence de certains êtres surnaturels, d’autres non. Les êtres mythologiques sont ceux auxquels les gens ont cru autrefois, mais auxquels personne ne croit plus. Les êtres imaginaires sont ceux auxquels personne n’a jamais cru. On devra indiquer dans la définition d’un être spirituel si la plupart des gens y croient ou non.
+
+
+ + + +
4.9.3
+
+ +
Use this domain for words related to theology--the study of God and what people believe about God.
+
Classer dans ce champ lexical le vocabulaire associé à la théologie : l’étude de Dieu et ce que les personnes croient au sujet de Dieu.
+
+
+ + + +
4.9.3.1
+
+ +
Use this domain for words related to sacred writings. Examples are only given for the Christian sacred writings. However you should include words referring to the holy books of all religions .
+
Classer dans ce champ lexical le vocabulaire associé aux textes sacrés. Ici, les exemples ne concerneront que les textes sacrés chrétiens. Cependant, vous devrez ajouter les mots relatifs aux livres saints de toutes les religions.
+
+
+ + + +
4.9.4
+
+ +
Use this domain for words related to miracles--the use of supernatural power to do something good.
+
Classer dans ce champ lexical le vocabulaire associé aux miracles : utilisation d’un pouvoir surnaturel pour faire du bien.
+
+
+ + + +
4.9.4.1
+
+ +
Use this domain for words related to sorcery--the use of supernatural power to do something bad.
+
Classer dans ce champ lexical le vocabulaire associé à la sorcellerie : l’utilisation d’un pouvoir surnaturel pour faire du mal.
+
+
+ + + +
4.9.4.2
+
+ +
Use this domain for words referring to demon possession--when a demon or spirit influences or controls the behavior of a person. Use this domain for all words related to the relationship between spirits and people, including communication between people and spirits. Also use this domain for words referring to casting out demons--causing a demon to stop influencing or controlling a person.
+
Classer dans ce champ lexical le vocabulaire associé à la possession démoniaque : lorsqu’un démon ou un esprit contrôle le comportement de quelqu’un. Classer dans ce champ lexical les mots associés à la relation entre les esprits et les personnes, y inclus la communication entre les esprits et les personnes. Utiliser aussi ce champ pour l’exorcisme : faire cesser le pouvoir qu’a un démon d’influencer ou de contrôler une personne.
+
+
+ + + +
4.9.4.3
+
+ +
Use this domain for words related to blessing someone--saying something that causes something good to happen, or requests God to do something good to someone.
+
Classer dans ce champ lexical le vocabulaire qui signifie bénir quelqu’un : dire ce qui entraînera un évènement heureux ou demander à Dieu de faire du bien à quelqu’un.
+
+
+ + + +
4.9.4.4
+
+ +
Use this domain for words related to cursing someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de maudire quelqu’un.
+
+
+ + + +
4.9.4.5
+
+ +
Use this domain for words related to destiny--decisions and actions by God, spirits, or by impersonal forces that determine or influence what happens to a person.
+
Classer dans ce champ lexical le vocabulaire associé à la destinée : décisions et actions de Dieu, des esprits ou d’une force impersonnelle, qui déterminent ou influencent ce qui arrive à une personne.
+
+
+ + + +
4.9.4.6
+
+ +
Use this domain for words referring to speaking for God, including foretelling the future through divine knowledge.
+
Classer dans ce champ lexical le vocabulaire associé au fait de parler de la part de Dieu, y compris de prédire l’avenir grâce à une connaissance divine.
+
+
+ + + +
4.9.4.7
+
+ +
Use this domain for words related to supernatural knowledge.
+
Classer dans ce champ lexical le vocabulaire associé aux présages ou à la divination : avoir une connaissance surnaturelle de secrets et d’événements futurs, y compris les méthodes pour apprendre à connaître ces choses.
+
+
+ + + +
4.9.5
+
+ +
Use this domain for words related to practicing religion.
+
Classer dans ce champ lexical le vocabulaire associé à la pratique religieuse.
+
+
+ + + +
4.9.5.1
+
+ +
Use this domain for words related to being devout.
+
Classer dans ce champ lexical le vocabulaire associé à la piété.
+
+
+ + + +
4.9.5.2
+
+ +
Use this domain for words related to praying--talking to God.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prier : parler à Dieu.
+
+
+ + + +
4.9.5.3
+
+ +
Use this domain for personal expressions of devotion to God, in whatever ways the religion defines and expresses it.
+
Classer dans ce champ lexical le vocabulaire associé à l’expression individuelle de la dévotion qu’on porte à Dieu, de quelques manières qu’une religion la définisse et l’exprime.
+
+
+ + + +
4.9.5.4
+
+ +
Use this domain for words related to religious ceremonies.
+
Classer dans ce champ lexical le vocabulaire associé aux cérémonies religieuses.
+
+
+ + + +
4.9.5.5
+
+ +
Use this domain for words related to offering a sacrifice.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’offrir un sacrifice.
+
+
+ + + +
4.9.5.6
+
+ +
Use this domain for words related to religious purification.
+
Classer dans ce champ lexical le vocabulaire associé à la purification religieuse.
+
+
+ + + +
4.9.5.6.1
+
+ +
Use this domain for words referring to things that are taboo--something to be avoided; a religious, social, or cultural restriction on behavior, as opposed to a government law.
+
Classer dans ce champ lexical le vocabulaire associé à des choses qui sont taboues : ce qu’on doit éviter, une restriction culturelle, sociale ou religieuse, par rapport à un comportement (pas une loi nationale).
+
+
+ + + +
4.9.5.7
+
+ +
Use this domain for the primary goal or goals of a religion, for instance in Christianity salvation from sin, death and Hell. Each religion has different beliefs about salvation. Our purpose here is not to preach or argue, but to list those words that people use to talk about this topic.
+
Classer dans ce champ lexical le vocabulaire associé aux objectifs principaux d’une religion, par exemple, dans le christianisme, être sauvé du péché, de la mort éternelle et de l’enfer. Chaque religion a des croyances différentes en matière de salut. Le but ici n’est pas de prêcher ou d’argumenter, mais d’énumérer les mots utilises pour parler de ce sujet.
+
+
+ + + +
4.9.5.8
+
+ +
Use this domain for words related to dedicating someone or something to religious use.
+
Classer dans ce champ lexical le vocabulaire signifiant mettre à part quelqu’un ou quelque chose pour un service religieux.
+
+
+ + + +
4.9.5.9
+
+ +
Use this domain for words related to fasting--to not eat for a period of time.
+
Classer dans ce champ lexical le vocabulaire associé au jeûne : ne pas manger pendant un temps déterminé.
+
+
+ + + +
4.9.6
+
+ +
Use this domain for words related to heaven and hell--the place where people go after they die.
+
Classer dans ce champ lexical le vocabulaire associé au ciel et à l’enfer : lieu où l’on va après la mort.
+
+
+ + + +
4.9.6.1
+
+ +
Use this domain for words related to resurrection--life after death, or living again after dying.
+
Classer dans ce champ lexical le vocabulaire associé à la résurrection : la vie après la mort ou revivre après la mort.
+
+
+ + + +
4.9.7
+
+ +
Use this domain for words referring to official religions, groups within a religion, and religious meetings. Each religion will have different names for its groups. Answer each question for each religion.
+
Classer dans ce champ lexical le vocabulaire associé aux grandes religions, aux groupes religieux et aux réunions religieuses. Chaque religion aura des noms différents pour ses groupes. Répondre à chaque question pour chaque religion.
+
+
+ + + +
4.9.7.1
+
+ +
Use this domain for words referring to religious practitioners--people who practice a religion, who are members of the religion, believe in the religion, leaders of the religion, and followers of the religion. Each religion has its own terms for religious practitioners. List these terms separately for each religion. The examples given below are for the Christian religion.
+
Classer dans ce champ lexical le vocabulaire associé aux pratiquants d’une religion, à des personnes qui la mettent en pratique, qui font partie d’une religion, qui croient en une religion, qui sont des responsables religieux ou qui sont des adeptes de cette religion. Chaque religion a son propre vocabulaire pour désigner ses pratiquants. Vous les énumérerez séparément pour chaque religion. Les exemples donnés ici se réfèrent au christianisme.
+
+
+ + + +
4.9.7.2
+
+ +
Use this domain for words used in Christianity.
+
Classer dans ce champ lexical le vocabulaire associé au christianisme.
+
+
+ + + +
4.9.7.3
+
+ +
Use this domain for words used in Islam.
+
Classer dans ce champ lexical le vocabulaire associé à l’islam.
+
+
+ + + +
4.9.7.4
+
+ +
Use this domain for words used in Hinduism.
+
Classer dans ce champ lexical le vocabulaire associé à l’hindouisme.
+
+
+ + + +
4.9.7.5
+
+ +
Use this domain for words used in Buddhism.
+
Classer dans ce champ lexical le vocabulaire associé au bouddhisme.
+
+
+ + + +
4.9.7.6
+
+ +
Use this domain for words used in Judaism.
+
Classer dans ce champ lexical le vocabulaire associé au judaïsme.
+
+
+ + + +
4.9.7.7
+
+ +
Use this domain for words used in Animism--the belief in spirits.
+
Classer dans ce champ lexical le vocabulaire associé à l’animisme : la croyance aux esprits.
+
+
+ + + +
4.9.8
+
+ +
Use this domain for words related to a religious object.
+
Classer dans ce champ lexical le vocabulaire associé à un objet religieux.
+
+
+ + + +
4.9.8.1
+
+ +
Use this domain for words related to idols and their use.
+
Classer dans ce champ lexical le vocabulaire associé aux idoles et à leur usage.
+
+
+ + + +
4.9.8.2
+
+ +
Use this domain for words related to places of worship. Each religion has different types of places of worship. These questions must be answered according to the practices of each religion and for each separate type of place.
+
Classer dans ce champ lexical le vocabulaire associé aux lieux de culte. Chaque religion a différents types de lieu de culte. Il faut donc répondre à ces questions pour chaque religion et pour chaque type de lieu.
+
+
+ + + +
4.9.9
+
+ +
Use this domain for words related to thinking and acting against God or religion.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être contre Dieu ou la religion.
+
+
+ + + +
5
+
+ +
Use this domain for words related to daily life at home.
+
Classer dans ce champ lexical le vocabulaire associé à la vie quotidienne dans une maison
+
+
+ + + +
5.1
+
+ +
Use this domain for words related to household equipment and tools.
+
Classer dans ce champ lexical les mots ou expressions associés aux équipements de la maison et aux appareils.
+
+
+ + + +
5.1.1
+
+ +
Use this domain for words related to furniture.
+
Classer dans ce champ lexical le vocabulaire associé au mobilier.
+
+
+ + + +
5.1.1.1
+
+ +
Use this domain for words related to a table.
+
Classer dans ce champ lexical le vocabulaire associé à une table.
+
+
+ + + +
5.1.1.2
+
+ +
Use this domain for words related to a chair.
+
Classer dans ce champ lexical le vocabulaire associé à un siège.
+
+
+ + + +
5.1.1.3
+
+ +
Use this domain for words related to a bed.
+
Classer dans ce champ lexical le vocabulaire associé à un lit.
+
+
+ + + +
5.1.1.4
+
+ +
Use this domain for words related to a cabinet.
+
Classer dans ce champ lexical le vocabulaire associé aux meubles de rangement.
+
+
+ + + +
5.1.2
+
+ +
Use this domain for words related to household decorations.
+
Classer dans ce champ lexical le vocabulaire associé à la décoration d’une maison.
+
+
+ + + +
5.2
+
+ +
Use this domain for general words referring to food.
+
Classer dans ce champ lexical les termes génériques associés à la nourriture.
+
+
+ + + +
5.2.1
+
+ +
Use this domain for words related to food preparation.
+
Classer dans ce champ lexical le vocabulaire associé à la préparation de la nourriture.
+
+
+ + + +
5.2.1.1
+
+ +
Use this domain for words referring to various ways of cooking food. It is necessary to think through different kinds of food and how they are cooked. An example is given below for cooking eggs.
+
Classer dans ce champ lexical le vocabulaire associé aux différentes manières de préparer la nourriture. Il faut penser aux différentes sortes d’aliment et à leur préparation. Un exemple est donné ci-après pour les œufs.
+
+
+ + + +
5.2.1.2
+
+ +
Use this domain for words related to the steps in food preparation. One way to find the words in this domain is to describe how each type of food is prepared.
+
Classer dans ce champ lexical le vocabulaire associé aux étapes pour préparer la nourriture. Pour trouver les mots dans ce champ lexical on peut décrire comment chaque type de nourriture est préparé.
+
+
+ + + +
5.2.1.2.1
+
+ +
Use this domain for words related to removing the shell or skin from food.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’ôter la coquille ou la peau d’un aliment.
+
+
+ + + +
5.2.1.2.2
+
+ +
Use this domain for words related to pounding food in a mortar.
+
Classer dans ce champ lexical le vocabulaire qui signifie piler des aliments dans un mortier.
+
+
+ + + +
5.2.1.2.3
+
+ +
Use this domain for words related to grinding flour.
+
Classer dans ce champ lexical le vocabulaire associé à la fabrication de la farine.
+
+
+ + + +
5.2.1.3
+
+ +
Use this domain for words related to cooking utensils.
+
Classer dans ce champ lexical le vocabulaire associé aux ustensiles de cuisine.
+
+
+ + + +
5.2.1.4
+
+ +
Use this domain for words referring to food preservation and storage.
+
Classer dans ce champ lexical les termes associés à la conservation et au stockage de la nourriture.
+
+
+ + + +
5.2.1.5
+
+ +
Use this domain for words related to serving food.
+
Classer dans ce champ lexical le vocabulaire associé au service de la nourriture.
+
+
+ + + +
5.2.2
+
+ +
Use this domain for words related to eating.
+
Classer dans ce champ lexical le vocabulaire associé à la prise de nourriture.
+
+
+ + + +
5.2.2.1
+
+ +
Use this domain for words referring to biting and chewing with the teeth.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mordre ou de mâcher.
+
+
+ + + +
5.2.2.2
+
+ +
Use this domain for words related to a meal.
+
Classer dans ce champ lexical le vocabulaire associé au repas.
+
+
+ + + +
5.2.2.3
+
+ +
Use this domain for words related to a feast.
+
Classer dans ce champ lexical le vocabulaire associé au banquet.
+
+
+ + + +
5.2.2.4
+
+ +
Use this domain for words describing the manner in which a person eats.
+
Classer dans ce champ lexical le vocabulaire décrivant la manière dont les gens mangent.
+
+
+ + + +
5.2.2.5
+
+ +
Use this domain for words related to being hungry or thirsty.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir faim ou soif.
+
+
+ + + +
5.2.2.6
+
+ +
Use this domain for words related to being full of food.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être rassasié.
+
+
+ + + +
5.2.2.7
+
+ +
Use this domain for words related to drinking.
+
Classer dans ce champ lexical le vocabulaire associé au fait de boire.
+
+
+ + + +
5.2.2.8
+
+ +
Use this domain for words related to eating utensils.
+
Classer dans ce champ lexical le vocabulaire associé au couvert.
+
+
+ + + +
5.2.2.9
+
+ +
Use this domain for words related to fasting--to not eat for a period of time.
+
Classer dans ce champ lexical les mots ou expressions associés au jeûne ; au fait de ne pas manger pendant un certain temps.
+
+
+ + + +
5.2.3
+
+ +
Use this domain for words related to types of food.
+
Classer dans ce champ lexical les mots ou expressions désignant différents types d’aliments.
+
+
+ + + +
5.2.3.1
+
+ +
Use this domain for words related to food from plants.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture d’origine végétale.
+
+
+ + + +
5.2.3.1.1
+
+ +
Use this domain for words related to food from seeds.
+
Classer dans ce champ lexical le vocabulaire associé aux aliments provenant de graines.
+
+
+ + + +
5.2.3.1.2
+
+ +
Use this domain for words related to food from fruit.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de fruits.
+
+
+ + + +
5.2.3.1.3
+
+ +
Use this domain for words related to food from vegetables.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de légumes.
+
+
+ + + +
5.2.3.1.4
+
+ +
Use this domain for words referring to food from leaves and stems.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de feuilles et de tiges.
+
+
+ + + +
5.2.3.1.5
+
+ +
Use this domain for words referring to food from roots.
+
Classer dans ce champ lexical le vocabulaire associé à la nourriture provenant de racines.
+
+
+ + + +
5.2.3.2
+
+ +
Use this domain for words referring to eating meat and to types of animals that are eaten. Only include those animals that are commonly eaten, especially those that are domesticated.
+
Classer dans ce champ lexical le vocabulaire faisant référence à la consommation de viande et aux espèces animales mangées. Ne mentionner que les animaux couramment consommés, surtout ceux qui sont domestiqués.
+
+
+ + + +
5.2.3.2.1
+
+ +
Use this domain for words referring to meat and types of animals that are eaten. Only include those animals that are commonly eaten.
+
Classer dans ce champ lexical le vocabulaire faisant référence à la viande et aux espèces d’animaux consommés. Ne mettre que les animaux qui sont couramment consommés.
+
+
+ + + +
5.2.3.2.2
+
+ +
Use this domain for words related to milk products.
+
Classer dans ce champ lexical le vocabulaire associé aux produits laitiers.
+
+
+ + + +
5.2.3.2.3
+
+ +
Use this domain for words related to food made from eggs.
+
Classer dans ce champ lexical le vocabulaire associé aux plats préparés à base d’œufs.
+
+
+ + + +
5.2.3.3
+
+ +
Use this domain for general words referring to ingredients--the things that are added together when preparing food.
+
Classer dans ce champ lexical les termes génériques qui décrivent des ingrédients : éléments ajoutés les uns aux autres lors de la préparation d’un plat.
+
+
+ + + +
5.2.3.3.1
+
+ +
Use this domain for words related to sugar.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au sucre.
+
+
+ + + +
5.2.3.3.2
+
+ +
Use this domain for words related to salt.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au sel.
+
+
+ + + +
5.2.3.3.3
+
+ +
Use this domain for spices--things that are added to food to make them taste better.
+
Classer dans ce champ lexical les mots ou expressions qui désignent les épices : ce qu’on ajoute à un plat pour lui donner meilleur goût.
+
+
+ + + +
5.2.3.3.4
+
+ +
Use this domain for leaven--things that are added to food to make them ferment.
+
Classer dans ce champ lexical les mots ou expressions relatives au levain : ce qu’on ajoute à une préparation pour qu’elle fermente.
+
+
+ + + +
5.2.3.3.5
+
+ +
Use this domain for words related to cooking oil.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à l’huile de cuisine.
+
+
+ + + +
5.2.3.4
+
+ +
Use this domain for words referring to prepared food. Cultures vary widely in the number and types of foods they prepare, and in how they classify them. For instance the English distinction between main dish and side dish is not found in the classification system of other languages. If your language has well-recognized subcategories, you can set up a separate subdomain for each. The questions below are based on the main ingredient in the dish.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à un plat. Les cultures diffèrent les unes des autres dans le nombre et le type de plats qu’elles préparent, ainsi que dans la façon de les classer. Par exemple, le Français fait une distinction entre plat principal et accompagnement, qui n’existe pas dans d’autres langues. Si votre langue a des sous-catégories distinctes, vous pouvez créer un sous-champ lexical séparé pour chacune d’elles. Les questions ci-dessous sont basées sur le composant principal du plat.
+
+
+ + + +
5.2.3.5
+
+ +
Use this domain for words that describe food that is prohibited by the culture or religion. Do not list the foods that are prohibited.
+
Classer dans ce champ lexical les mots ou expressions qui désignent les aliments qui sont interdits par la culture ou la religion. Vous n'énumérerez pas les aliments interdits.
+
+
+ + + +
5.2.3.6
+
+ +
Use this domain for words referring to things people drink.
+
Classer dans ce champ lexical les mots ou expressions qui désignent ce qui se boit.
+
+
+ + + +
5.2.3.7
+
+ +
Use this domain for types of beverages containing alcohol.
+
Classer dans ce champ lexical les différents types de boissons contenant de l’alcool.
+
+
+ + + +
5.2.3.7.1
+
+ +
Use this domain for words related to making alcoholic beverages.
+
Classer dans ce champ lexical les mots ou expressions relatifs à la fabrication de boissons alcoolisées.
+
+
+ + + +
5.2.3.7.2
+
+ +
Use this domain for words related to drinking alcohol and the effect it has on a person.
+
Classer dans ce champ lexical les mots ou expressions décrivant l’ingestion d’alcool et les effets que cela peut avoir sur quelqu’un.
+
+
+ + + +
5.2.4
+
+ +
Use this domain for words related to using tobacco.
+
Classer dans ce champ lexical les mots ou expressions relatifs à la consommation de tabac.
+
+
+ + + +
5.2.5
+
+ +
Use this domain for words related to narcotics and drugs that are not used as medicine but as stimulants. Narcotics are often addicting and harmful to a person's health.
+
Classer dans ce champ lexical les mots ou expressions relatifs aux drogues. Les narcotiques conduisent souvent à une dépendance et sont néfastes pour la santé.
+
+
+ + + +
5.2.6
+
+ +
Use this domain for words related to stimulants--substances that are drunk, eaten, or chewed to make a person more alert or give him more energy.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les stimulants (substances bues, mangées ou mâchées qui rendent quelqu’un plus vif ou lui donnent plus d’énergie).
+
+
+ + + +
5.3
+
+ +
Use this domain for words related to clothing.
+
Classer dans ce champ lexical les mots ou expressions relatifs à l’habillement.
+
+
+ + + +
5.3.1
+
+ +
Use this domain for words related to men's clothing.
+
Classer dans ce champ lexical les mots ou expressions relatifs aux vêtements pour hommes.
+
+
+ + + +
5.3.2
+
+ +
Use this domain for words related to women's clothing.
+
Classer dans ce champ lexical les mots ou expressions relatifs aux vêtements pour femmes.
+
+
+ + + +
5.3.3
+
+ +
Use this domain for words related to traditional clothing.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à l’habillement traditionnel.
+
+
+ + + +
5.3.4
+
+ +
Use this domain for words referring to special clothes worn on special occasions. It is necessary to think through all the various special occasions in the culture and think of any special clothes worn on those occasions. Two examples are given below for work and graduation, but there are many others.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à des vêtements portés en certaines occasions. Il faut penser aux diverses occasions spéciales au niveau culturel, et aux différents vêtements portés en ces occasions. Deux exemples sont donnés ci-dessous pour le travail ou une remise de diplôme, mais il en existe bien d’autres.
+
+
+ + + +
5.3.5
+
+ +
Use this domain for special clothes worn by special people. It is necessary to think through all the various special types of people in the culture and think of any special clothes worn by them. Several examples are given below, but there are many others.
+
Classer dans ce champ lexical les vêtements portés par certaines personnes dans l’exercice de leur fonction. Il faut penser aux différents types de personnes de la culture et penser à leurs vêtements professionnels. En voici plusieurs exemples, mais il en existe bien d’autres.
+
+
+ + + +
5.3.6
+
+ +
Use this domain for words related to parts of clothing.
+
Classer dans ce champ lexical les mots ou expressions en relation avec les différentes parties d’un vêtement.
+
+
+ + + +
5.3.7
+
+ +
Use this domain for words related to wearing clothing.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le port de vêtements.
+
+
+ + + +
5.3.8
+
+ +
Use this domain for words related to being naked--not wearing any clothes, and for words referring to how a person feels about being naked. It is a part of universal human experience that people do not want to be naked. So there are words that refer to feeling bad if one does not have enough clothes on (shame). Other words refer to wanting to have enough clothes (modest). Other words refer to how people feel about other people who do not wear enough clothes +(indecent).
+
Classer dans ce champ lexical les mots ou expressions désignant la nudité (fait de ne porter aucun vêtement) et le sentiment qu’une personne peut avoir en étant nue. Il peut arriver, dans l’espèce humaine tout entière, que certaines personnes ne veuillent pas être nues. Il existe donc certains mots décrivant le malaise ressenti de ne pas avoir assez de vêtements sur soi (honte). D’autres mots décriront la volonté d’avoir assez de vêtements (pudeur). D’autres mots, encore, décriront ce que certaines personnes ressentent lorsque d’autres personnes ne portent pas assez de vêtements (indécence).
+
+
+ + + +
5.3.9
+
+ +
Use this domain for words related to clothing styles.
+
Classer dans ce champ lexical les mots en rapport avec les styles vestimentaires.
+
+
+ + + +
5.4
+
+ +
Use this domain for words related to adornment.
+
Classer dans ce champ lexical le vocabulaire associé à la parure.
+
+
+ + + +
5.4.1
+
+ +
Use this domain for objects such as jewelry that are put on or attached to the body or to the clothes as decoration.
+
Classer dans ce champ lexical des objets décoratifs (tels que des bijoux) qu’une personne porte sur son corps ou sur ses vêtements.
+
+
+ + + +
5.4.2
+
+ +
Use this domain for words related to cosmetics--things you put on your skin to make yourself beautiful in appearance.
+
Classer dans ce champ lexical le vocabulaire associé aux cosmétiques : ce que l’on met sur sa peau pour se rendre plus beau.
+
+
+ + + +
5.4.3
+
+ +
Use this domain for words related to caring for your hair.
+
Classer dans ce champ lexical le vocabulaire associé aux soins des cheveux.
+
+
+ + + +
5.4.3.1
+
+ +
Use this domain for words related to combing your hair.
+
Classer dans ce champ lexical le vocabulaire associé au fait de se coiffer.
+
+
+ + + +
5.4.3.2
+
+ +
Use this domain for words related to plaiting your hair.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tresser les cheveux.
+
+
+ + + +
5.4.3.3
+
+ +
Use this domain for words related to dying your hair.
+
Classer dans ce champ lexical le vocabulaire associé à la coloration des cheveux.
+
+
+ + + +
5.4.3.4
+
+ +
Use this domain for words related to hairstyles.
+
Classer dans ce champ lexical le vocabulaire associé aux coiffures.
+
+
+ + + +
5.4.3.5
+
+ +
Use this domain for words related to cutting hair.
+
Classer dans ce champ lexical le vocabulaire associé à la coupe des cheveux.
+
+
+ + + +
5.4.3.6
+
+ +
Use this domain for words related to shaving.
+
Classer dans ce champ lexical le vocabulaire associé au rasage.
+
+
+ + + +
5.4.4
+
+ +
Use this domain for words related to caring for your teeth.
+
Classer dans ce champ lexical le vocabulaire associé aux soins dentaires.
+
+
+ + + +
5.4.5
+
+ +
Use this domain for words related to anointing the body.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’oindre son corps.
+
+
+ + + +
5.4.6
+
+ +
Use this domain for words related to ritual scarring.
+
Classer dans ce champ lexical le vocabulaire associé aux incisions et aux tatouages rituels.
+
+
+ + + +
5.4.6.1
+
+ +
Use this domain for words related to circumcision.
+
Classer dans ce champ lexical le vocabulaire associé à la circoncision.
+
+
+ + + +
5.4.7
+
+ +
Use this domain for words related to caring for the fingernails.
+
Classer dans ce champ lexical le vocabulaire associé aux soins des ongles.
+
+
+ + + +
5.5
+
+ +
Use this domain for general words that refer to fire and for words referring to types of fire. These words may be specific for what is being burned (forest fire 'a fire burning a forest'), the size of the fire (inferno 'a very large hot fire'), or the place where the fire burns (hellfire 'the fire in hell').
+
Classer dans ce champ lexical les termes génériques qui font référence au feu et aux types de feu. Ces mots peuvent être spécifiques à ce qui est brûlé (feu de forêt : un feu qui brûle une forêt), à la dimension du feu (enfer : un très grand feu), ou au lieu où brûle le feu (feu de l’enfer : le feu en enfer).
+
+
+ + + +
5.5.1
+
+ +
Use this domain for words related to lighting a fire.
+
Classer dans ce champ lexical le vocabulaire associé à l’allumage d’un feu.
+
+
+ + + +
5.5.2
+
+ +
Use this domain for words that refer to tending a fire--to keep a fire burning so that it burns well and does not go out.
+
Mettre dans ce champ lexical les mots qui font référence à l’entretien d’un feu, pour le garder allumé afin qu’il brûle bien et ne s’éteigne pas.
+
+
+ + + +
5.5.3
+
+ +
Use this domain for all the ways a person can stop a fire.
+
Classer dans ce champ lexical les façons de faire cesser un feu.
+
+
+ + + +
5.5.4
+
+ +
Use this domain for verbs that are used of fire: "The fire is ____." In some languages there are verbs for what is happening to the thing that is burning: "The house is ____."
+
Classer dans ce champ lexical des verbes qui sont utilisés pour le feu, tel que : « Le feu est en train de ____. » Dans certaines langues il y a des verbes pour ce qui arrive à la chose qui est en train de brûler, tel que : « La maison est en train de ___. »
+
+
+ + + +
5.5.5
+
+ +
Use this domain for words related to the things that fires produce.
+
Classer dans ce champ lexical le vocabulaire associé à ce que les feux produisent.
+
+
+ + + +
5.5.6
+
+ +
Use this domain for types of fuel and for words used in making, collecting, storing, or using fuel. This domain includes the scenario of collecting firewood.
+
Classer dans ce champ lexical les sortes de combustible et le vocabulaire utilisé pour fabriquer, ramasser, entreposer ou utiliser du combustible. Ce champ lexical inclut la séquence d’actions pour ramasser du bois de chauffage.
+
+
+ + + +
5.5.7
+
+ +
Use this domain for any place where fires are normally burned.
+
Classer dans ce champ lexical tout emplacement où brûle normalement un feu.
+
+
+ + + +
5.6
+
+ +
Use this domain for general words related to cleaning things.
+
Classer dans ce champ lexical les termes génériques associés au nettoyage des choses.
+
+
+ + + +
5.6.1
+
+ +
Use this domain for words describing whether something is clean or dirty.
+
Classer dans ce champ lexical le vocabulaire indiquant si quelque chose est propre ou sale.
+
+
+ + + +
5.6.2
+
+ +
Use this domain for words related to bathing.
+
Classer dans ce champ lexical le vocabulaire associé au bain.
+
+
+ + + +
5.6.3
+
+ +
Use this domain for words related to washing dishes.
+
Classer dans ce champ lexical le vocabulaire associé au lavage de la vaisselle.
+
+
+ + + +
5.6.4
+
+ +
Use this domain for words related to washing clothes.
+
Classer dans ce champ lexical le vocabulaire associé à l’entretien du linge.
+
+
+ + + +
5.6.5
+
+ +
Use this domain for words related to cleaning the floor or ground.
+
Classer dans ce champ lexical le vocabulaire associé au nettoyage du plancher ou du sol.
+
+
+ + + +
5.6.6
+
+ +
Use this domain for words related to wiping dirt off of things.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’enlever la saleté sur des objets.
+
+
+ + + +
5.7
+
+ +
Use this domain for words related to sleeping.
+
Classer dans ce champ lexical le vocabulaire associé au sommeil.
+
+
+ + + +
5.7.1
+
+ +
Use this domain for words related to going to bed and going to sleep.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aller au lit et de s’endormir.
+
+
+ + + +
5.7.2
+
+ +
Use this domain for words related to dreaming.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rêver.
+
+
+ + + +
5.7.3
+
+ +
Use this domain for words related to waking up from sleep.
+
Classer dans ce champ lexical le vocabulaire associé au réveil après le sommeil.
+
+
+ + + +
5.8
+
+ +
Use this domain for words related to managing a house.
+
Classer dans ce champ lexical le vocabulaire associé au fait de s’occuper d’une maison.
+
+
+ + + +
5.9
+
+ +
Use this domain for words related to living in a place.
+
Classer dans ce champ lexical le vocabulaire associé au fait de vivre quelque part.
+
+
+ + + +
6
+
+ +
Use this domain for general words related to working.
+
Classer dans ce champ lexical les termes génériques associés au travail.
+
+
+ + + +
6.1
+
+ +
Use this domain for words related to working.
+
Classer dans ce champ lexical les termes associés au travail.
+
+
+ + + +
6.1.1
+
+ +
Use this domain for words related to a worker.
+
Classer dans ce champ lexical les termes qui désignent un travailleur.
+
+
+ + + +
6.1.1.1
+
+ +
Use this domain for words related to being an expert--someone who can do something well.
+
Classer dans ce champ lexical les termes associés au fait d’être un spécialiste, quelqu’un qui est excellent dans un domaine.
+
+
+ + + +
6.1.2
+
+ +
Use this domain for words related to the method of doing something.
+
Classer dans ce champ lexical les termes associés à la façon de faire quelque chose.
+
+
+ + + +
6.1.2.1
+
+ +
Use this domain for words indicating that someone is trying to do something.
+
Classer dans ce champ lexical les termes associés au fait d’essayer de faire quelque chose.
+
+
+ + + +
6.1.2.2
+
+ +
Use this domain for words related to using something to do something.
+
Classer dans ce champ lexical les termes associés au fait d‘utiliser quelque chose dans une intention précise.
+
+
+ + + +
6.1.2.2.1
+
+ +
Use this domain for words related to being useful--words describing something that can be used to do something.
+
Classer dans ce champ lexical les termes associés au fait d’être utile : mots qui décrivent quelque chose qu’on peut utiliser à une fin précise.
+
+
+ + + +
6.1.2.2.2
+
+ +
Use this domain for words related to being useless--words describing something that cannot be used to do anything.
+
Classer dans ce champ lexical les termes associés au fait d’être inutile : mots qui décrivent quelque chose qui ne sert à rien.
+
+
+ + + +
6.1.2.2.3
+
+ +
Use this domain for words related to something being available to use.
+
Classer dans ce champ lexical les termes associés à quelque chose dont on dispose.
+
+
+ + + +
6.1.2.2.4
+
+ +
Use this domain for words related to using something up.
+
Classer dans ce champ lexical les termes associés au fait d’utiliser complètement quelque chose.
+
+
+ + + +
6.1.2.2.5
+
+ +
Use this domain for words related to taking care of something.
+
Classer dans ce champ lexical les termes associés au fait de prendre soin de quelque chose.
+
+
+ + + +
6.1.2.2.6
+
+ +
Use this domain for words related to wasting something.
+
Classer dans ce champ lexical les termes associés au gaspillage.
+
+
+ + + +
6.1.2.3
+
+ +
Use this domain for words related to working well.
+
Classer dans ce champ lexical les termes associés au fait de bien travailler.
+
+
+ + + +
6.1.2.3.1
+
+ +
Use this domain for words related to being careful.
+
Classer dans ce champ lexical les termes associés au fait d’être soigneux.
+
+
+ + + +
6.1.2.3.2
+
+ +
Use this domain for words related to working hard.
+
Classer dans ce champ lexical les termes associés au fait de travailler dur.
+
+
+ + + +
6.1.2.3.3
+
+ +
Use this domain for words related to being busy.
+
Classer dans ce champ lexical les termes associés au fait d’être très occupé.
+
+
+ + + +
6.1.2.3.4
+
+ +
Use this domain for words related to the power used to do something.
+
Classer dans ce champ lexical les termes associés à la force utilisée pour faire quelque chose.
+
+
+ + + +
6.1.2.3.5
+
+ +
Use this domain for words related to completing a task.
+
Classer dans ce champ lexical les termes associés au fait de terminer une tâche.
+
+
+ + + +
6.1.2.3.6
+
+ +
Use this domain for words related to being ambitious.
+
Classer dans ce champ lexical les termes associés au fait d’être ambitieux.
+
+
+ + + +
6.1.2.4
+
+ +
Use this domain for words related to working poorly.
+
Classer dans ce champ lexical les termes associés au fait de mal travailler.
+
+
+ + + +
6.1.2.4.1
+
+ +
Use this domain for words related to being careless.
+
Classer dans ce champ lexical les termes associés au fait d’être négligent.
+
+
+ + + +
6.1.2.4.2
+
+ +
Use this domain for words related to being lazy.
+
Classer dans ce champ lexical les termes associés au fait d’être paresseux.
+
+
+ + + +
6.1.2.4.3
+
+ +
Use this domain for words related to giving up.
+
Classer dans ce champ lexical les termes associés au fait d’abandonner.
+
+
+ + + +
6.1.2.5
+
+ +
Use this domain for words related to planning.
+
Classer dans ce champ lexical les termes associés au fait d’organiser quelque chose.
+
+
+ + + +
6.1.2.5.1
+
+ +
Use this domain for words related to arranging an event, such as a meeting.
+
Classer dans ce champ lexical les termes associés à l’organisation d’une manifestation, telle qu’un congrès.
+
+
+ + + +
6.1.2.5.2
+
+ +
Use this domain for words related to canceling a plan, decision, or event.
+
Classer dans ce champ lexical les termes associés au fait d’annuler un projet, une décision ou une manifestation.
+
+
+ + + +
6.1.2.6
+
+ +
Use this domain for words related to preparing to do something.
+
Classer dans ce champ lexical les termes associés au fait de préparer quelque chose.
+
+
+ + + +
6.1.2.6.1
+
+ +
Use this domain for words related to preparing something so that it can be used for some purpose.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’action de faire des préparatifs dans tel ou tel but.
+
+
+ + + +
6.1.2.7
+
+ +
Use this domain for words related to being effective.
+
Classer dans ce champ lexical les termes associés au fait d’être efficace.
+
+
+ + + +
6.1.2.8
+
+ +
Use this domain for words related to being efficient.
+
Classer dans ce champ lexical les termes associés à l’occasion de faire quelque chose.
+
+
+ + + +
6.1.2.9
+
+ +
Use this domain for words related to an opportunity to do something.
+
+
+ + + +
6.1.3
+
+ +
Use this domain for words describing something that is difficult or impossible to do.
+
Classer dans ce champ lexical les termes qui décrivent quelque chose qui est difficile ou impossible à faire.
+
+
+ + + +
6.1.3.1
+
+ +
Use this domain for words describing something that is easy or possible to do.
+
Classer dans ce champ lexical les termes qui décrivent quelque chose qui est facile à faire ou qu’il est possible de réaliser.
+
+
+ + + +
6.1.3.2
+
+ +
Use this domain for words related to succeeding in doing something.
+
Classer dans ce champ lexical les termes signifiant réussir à faire quelque chose.
+
+
+ + + +
6.1.3.3
+
+ +
Use this domain for words related to failing to do something.
+
Classer dans ce champ lexical les termes signifiant échouer à faire quelque chose.
+
+
+ + + +
6.1.3.4
+
+ +
Use this domain for words related to having an advantage--something that helps you succeed that other people don't have.
+
Classer dans ce champ lexical le vocabulaire concernant le fait d’avoir un avantage, quelque chose qui aide à réussir et que les autres n’ont pas.
+
+
+ + + +
6.1.4
+
+ +
Use this domain for words related to being satisfied with your job.
+
Classer dans ce champ lexical les termes signifiant être satisfait de son travail.
+
+
+ + + +
6.1.5
+
+ +
Use this domain for words related to being unemployed.
+
Classer dans ce champ lexical les termes signifiant ne pas avoir de travail.
+
+
+ + + +
6.1.6
+
+ +
Use this domain for words describing something made by hand instead of by a machine.
+
Classer dans ce champ lexical les termes qui font référence à des produits faits à la main.
+
+
+ + + +
6.1.7
+
+ +
Use this domain for words describing something that is artificial--something that is made by people.
+
Classer dans ce champ lexical les termes qui font référence à quelque chose qui est artificiel : qui est fabriqué par l’homme.
+
+
+ + + +
6.1.8
+
+ +
Use this domain for words related to being experienced at doing something.
+
Classer dans ce champ lexical les termes signifiant être expérimenté.
+
+
+ + + +
6.1.8.1
+
+ +
Use this domain for words related to being accustomed to something.
+
Classer dans ce champ lexical les termes signifiant être habitué à quelque chose.
+
+
+ + + +
6.2
+
+ +
Use this domain for words related to agriculture--working with plants.
+
Classer dans ce champ lexical les termes associés à l’agriculture : la culture des végétaux.
+
+
+ + + +
6.2.1
+
+ +
Use this domain for general words related to growing crops. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it.
+
Classer dans ce champ lexical les termes génériques associés à la culture des champs. Si une culture est très répandue et si les mots qui s’y rapportent sont nombreux, on prévoit un champ lexical distinct pour celle-ci.
+
+
+ + + +
6.2.1.1
+
+ +
Use this domain for general words related to growing grain crops such as barley, maize (corn), millet, oats, rice, rye, sesame, sorghum, and wheat. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for rice, wheat, and maize, since they are so common around the world.
+
Classer dans ce champ lexical les termes génériques associés à la culture des céréales, telles que l’orge, le maïs, l’avoine, le millet, le riz, le blé, le sésame, le sorgho, le seigle, le mil… Si une culture est très répandue et que les mots qui s’y rapportent sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour le riz, le blé et le maïs, car la culture de ces céréales est très répandue dans le monde.
+
+
+ + + +
6.2.1.1.1
+
+ +
Use this domain for words related to growing rice.
+
Classer dans ce champ lexical les termes associés à la culture du riz.
+
+
+ + + +
6.2.1.1.2
+
+ +
Use this domain for words related to growing wheat.
+
Classer dans ce champ lexical les termes associés à la culture du blé.
+
+
+ + + +
6.2.1.1.3
+
+ +
Use this domain for words related to growing maize.
+
Classer dans ce champ lexical les termes associés à la culture du maïs.
+
+
+ + + +
6.2.1.2
+
+ +
Use this domain for words related to growing root crops such as beets, carrots, cassava, garlic, ginger, leeks, manioc, onions, peanuts, potatoes, radishes, rutabagas, taro, turnips, and yams. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for potatoes and cassava, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture de tubercules, tels que la betterave, les carottes, le manioc, le gingembre, l’ail, le poireau, l’igname, les oignons, les cacahuètes, les pommes de terre, les radis, les rutabagas, le taro ou le navet, les patates douces. Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour les pommes de terre et le manioc, car la culture de ces tubercules est très répandue dans le monde.
+
+
+ + + +
6.2.1.2.1
+
+ +
Use this domain for words related to growing potatoes.
+
Classer dans ce champ lexical les termes associés à la culture des pommes de terre.
+
+
+ + + +
6.2.1.2.2
+
+ +
Use this domain for words related to growing cassava.
+
Classer dans ce champ lexical les termes associés à la culture du manioc.
+
+
+ + + +
6.2.1.3
+
+ +
Use this domain for words related to growing vegetables, such as asparagus, beans, broccoli, cabbage, celery, chard, cucumbers, eggplant, melons, peas, peppers, pumpkins, spinach, squash, tomatoes, and watermelons. If one type of vegetable is cultivated extensively and there are many words related to it, set up a separate domain for it.
+
Classer dans ce champ lexical les termes associés aux légumes, tels que les asperges, haricots, brocolis, choux, céleris, blettes, concombres, aubergines, pois, piments, courges, épinards, courgettes, tomates. Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci.
+
+
+ + + +
6.2.1.4
+
+ +
Use this domain for words related to growing fruit, such as berries, cranberries, grapes, raspberries, and strawberries. If one type of fruit is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for grapes and bananas, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture des fruits tels que les melons, pastèques, baies, raisins, airelles, framboises, fraises, myrtilles, canneberges, pommes, poires, abricots, pêches, oranges, citrons… Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour le raisin et les bananes, car la culture de ces fruits est très répandue dans le monde.
+
+
+ + + +
6.2.1.4.1
+
+ +
Use this domain for words related to growing grapes.
+
Classer dans ce champ lexical les termes associés à la culture de la vigne.
+
+
+ + + +
6.2.1.4.2
+
+ +
Use this domain for words related to growing bananas.
+
Classer dans ce champ lexical les termes associés à la culture des bananes.
+
+
+ + + +
6.2.1.5
+
+ +
Use this domain for words related to growing grass, such as sod, hay, alfalfa, bamboo, papyrus, sugarcane, and tobacco. If one type of grass is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for sugarcane and tobacco, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture des herbes, telles que le gazon, le trèfle, le foin, la luzerne, le bambou, le papyrus, la canne à sucre ou le tabac. Si une culture est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour la canne à sucre et le tabac, car leur culture est très répandue dans le monde.
+
+
+ + + +
6.2.1.5.1
+
+ +
Use this domain for words related to growing sugarcane.
+
Classer dans ce champ lexical les termes associés à la culture de la canne à sucre.
+
+
+ + + +
6.2.1.5.2
+
+ +
Use this domain for words related to growing tobacco.
+
Classer dans ce champ lexical les termes associés à la culture du tabac.
+
+
+ + + +
6.2.1.6
+
+ +
Use this domain for words related to growing flowers. If one type of flower is cultivated extensively and there are many words related to it, set up a separate domain for it.
+
Classer dans ce champ lexical les termes associés à la culture des fleurs. Si la culture d’une espèce de fleur est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci.
+
+
+ + + +
6.2.1.7
+
+ +
Use this domain for words related to growing trees. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for coconuts and coffee, since they are so common around the world.
+
Classer dans ce champ lexical les termes associés à la culture des arbres. Si la culture d’une espèce d’arbre est très répandue et que les mots s’y rapportant sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour les cocotiers et les caféiers, car leur culture est très répandue dans le monde.
+
+
+ + + +
6.2.1.7.1
+
+ +
Use this domain for words related to growing coconuts.
+
Classer dans ce champ lexical les termes associés à la culture des cocotiers.
+
+
+ + + +
6.2.1.7.2
+
+ +
Use this domain for words related to growing coffee.
+
Classer dans ce champ lexical les termes associés à la culture du café.
+
+
+ + + +
6.2.2
+
+ +
Use this domain for words related to preparing land for planting crops.
+
Classer dans ce champ lexical les termes associés à la préparation d’un champ avant la culture.
+
+
+ + + +
6.2.2.1
+
+ +
Use this domain for words related to clearing a field.
+
Classer dans ce champ lexical les termes associés au débroussaillage.
+
+
+ + + +
6.2.2.2
+
+ +
Use this domain for words related to plowing a field.
+
Classer dans ce champ lexical les termes associés au fait de labourer un champ.
+
+
+ + + +
6.2.2.3
+
+ +
Use this domain for words related to fertilizing a field.
+
Classer dans ce champ lexical les termes associés au fait de mettre de l’engrais dans un champ.
+
+
+ + + +
6.2.3
+
+ +
Use this domain for words related to planting a field.
+
Classer dans ce champ lexical les termes associés au fait de planter un champ.
+
+
+ + + +
6.2.4
+
+ +
Use this domain for words related to tending a field.
+
Classer dans ce champ lexical les termes associés au fait d’entretenir un champ.
+
+
+ + + +
6.2.4.1
+
+ +
Use this domain for words related to cutting grass.
+
Classer dans ce champ lexical les termes associés au fait de couper l’herbe.
+
+
+ + + +
6.2.4.2
+
+ +
Use this domain for words related to uprooting plants.
+
Classer dans ce champ lexical le vocabulaire lié à l’action d’arracher des plantes.
+
+
+ + + +
6.2.4.3
+
+ +
Use this domain for words related to irrigating a field.
+
Classer dans ce champ lexical les termes associés au fait d’arroser un champ.
+
+
+ + + +
6.2.4.4
+
+ +
Use this domain for words related to trimming plants.
+
Classer dans ce champ lexical les termes associés au fait de tailler des plantes.
+
+
+ + + +
6.2.4.5
+
+ +
Use this domain for words related to neglecting plants.
+
Classer dans ce champ lexical les termes associés au fait de négliger des plantes.
+
+
+ + + +
6.2.5
+
+ +
Use this domain for words related to harvesting crops. If there is an important crop and there are a lot of words that refer to harvesting it, set up a special domain for it, such as 'Harvest rice' or 'Harvest coconuts'. If there is more than one such crop, set up a separate domain for each of them.
+
Classer dans ce champ lexical les termes associés au fait de faire une récolte. Si une récolte est très répandue et si les mots qui s’y rapportent sont nombreux, on prévoit un champ lexical distinct pour celle-ci. C’est ce qui a déjà été fait pour « Récolte du riz » ou « récolte des noix de coco ». S’il y en a plusieurs, on prévoit un champ lexical pour chacune.
+
+
+ + + +
6.2.5.1
+
+ +
Use this domain for words referring to the first fruits or crops to be harvested.
+
Classer dans ce champ lexical les termes associés aux premiers fruits ou productions récoltés.
+
+
+ + + +
6.2.5.2
+
+ +
Use this domain for words related to crop failure.
+
Classer dans ce champ lexical les termes associés au fait d’avoir une mauvaise récolte.
+
+
+ + + +
6.2.5.3
+
+ +
Use this domain for words related to gathering wild plants. In a hunter-gatherer culture this domain might need to be extensively developed.
+
Classer dans ce champ lexical les termes associés à la cueillette de plantes sauvages. Dans les cultures de chasseurs cueilleurs, il est possible que ce champ lexical soit très riche.
+
+
+ + + +
6.2.5.4
+
+ +
Use this domain for words referring to materials and substances that are taken from plants and used for various purposes. It is necessary to think through various types of plants to think of what materials are taken from each.
+
Classer dans ce champ lexical les termes associés aux matières premières et aux substances tirées des végétaux et employées à diverses fins. Il faut penser aux différents types de végétaux et à ce qu’on en tire.
+
+
+ + + +
6.2.6
+
+ +
Use this domain for words related to processing the harvest.
+
Classer dans ce champ lexical les termes associés à la récolte.
+
+
+ + + +
6.2.6.1
+
+ +
Use this domain for words related to winnowing grain--to separate the chaff from the grain.
+
Classer dans ce champ lexical les termes associés au fait de battre du grain.
+
+
+ + + +
6.2.6.2
+
+ +
Use this domain for words related to milling grain.
+
Classer dans ce champ lexical les termes associés à l’action de vanner le grain : séparer la balle du grain.
+
+
+ + + +
6.2.6.3
+
+ +
Use this domain for words related to threshing grain.
+
Classer dans ce champ lexical les termes associés au fait de moudre le grain.
+
+
+ + + +
6.2.6.4
+
+ +
Use this domain for words related to storing the harvest.
+
Classer dans ce champ lexical les termes associés au stockage de la récolte.
+
+
+ + + +
6.2.7
+
+ +
Use this domain for words related to farm workers.
+
Classer dans ce champ lexical les termes associés au personnel agricole.
+
+
+ + + +
6.2.8
+
+ +
Use this domain for words related to agricultural tools.
+
Classer dans ce champ lexical les termes désignant des outils agricoles.
+
+
+ + + +
6.2.9
+
+ +
Use this domain for words related to farmland.
+
Classer dans ce champ lexical les termes associés aux terres agricoles.
+
+
+ + + +
6.3
+
+ +
Use this domain for words related to animal husbandry--working with animals.
+
Classer dans ce champ lexical les termes associés à l’élevage : utilisation des animaux pour le travail.
+
+
+ + + +
6.3.1
+
+ +
Use this domain for words related to domesticated animals. Add extra domains for specific domesticated animals in your culture such as elephants in east Asia, camels in the Middle East, and llamas in South America.
+
Classer dans ce champ lexical les termes associés aux animaux domestiques. Vous ajouterez d’autres champs lexicaux pour les animaux domestiques propres à votre culture tels que les éléphants en Asie, les chameaux au Moyen-Orient ou les lamas en Amérique du Sud.
+
+
+ + + +
6.3.1.1
+
+ +
Use this domain for words related to cattle and the care of cattle.
+
Classer dans ce champ lexical les termes associés au gros bétail et à son élevage.
+
+
+ + + +
6.3.1.2
+
+ +
Use this domain for words related to sheep.
+
Classer dans ce champ lexical les termes associés aux moutons.
+
+
+ + + +
6.3.1.3
+
+ +
Use this domain for words related to goats.
+
Classer dans ce champ lexical les termes associés aux chèvres.
+
+
+ + + +
6.3.1.4
+
+ +
Use this domain for words related to pigs.
+
Classer dans ce champ lexical les termes associés aux porcs.
+
+
+ + + +
6.3.1.5
+
+ +
Use this domain for words related to dogs.
+
Classer dans ce champ lexical les termes associés aux chiens.
+
+
+ + + +
6.3.1.6
+
+ +
Use this domain for words related to cats.
+
Classer dans ce champ lexical les termes associés aux chats.
+
+
+ + + +
6.3.1.7
+
+ +
Use this domain for words related to animals that are used as a beast of burden--either to ride, to carry loads, or to pull vehicles. The questions refer to horses, but can be applied to any animal.
+
Classer dans ce champ lexical les termes associés aux animaux employés comme bête de somme : soit pour être montée, soit pour transporter un chargement, ou pour tirer un véhicule. Les questions concernent les chevaux, mais peuvent s'appliquer aussi à n'importe quel autre animal.
+
+
+ + + +
6.3.2
+
+ +
Use this domain for words related to tending a herd in the fields.
+
Classer dans ce champ lexical les termes associés au fait de garder un troupeau dans les champs.
+
+
+ + + +
6.3.3
+
+ +
Use this domain for words related to milking an animal.
+
Classer dans ce champ lexical les termes associés à la traite d’un animal.
+
+
+ + + +
6.3.4
+
+ +
Use this domain for words referring to killing animals and cutting them up for food.
+
Classer dans ce champ lexical les termes associés au fait de tuer des animaux et de les découper pour les manger.
+
+
+ + + +
6.3.5
+
+ +
Use this domain for words related to wool production--cutting the hair off of a sheep.
+
Classer dans ce champ lexical les termes associés à la production de laine : couper la toison d’un mouton.
+
+
+ + + +
6.3.6
+
+ +
Use this domain for words related to raising birds.
+
Classer dans ce champ lexical les termes associés à l’élevage de la volaille.
+
+
+ + + +
6.3.6.1
+
+ +
Use this domain for words related to chickens.
+
Classer dans ce champ lexical les termes associés aux poules.
+
+
+ + + +
6.3.7
+
+ +
Use this domain for words related to animal products.
+
Classer dans ce champ lexical les termes associés aux produits venant des animaux.
+
+
+ + + +
6.3.8
+
+ +
Use this domain for words related to treating animal diseases.
+
Classer dans ce champ lexical les termes associés au traitement des maladies des animaux.
+
+
+ + + +
6.3.8.1
+
+ +
Use this domain for words related to animal diseases.
+
Classer dans ce champ lexical les termes associés aux maladies des animaux.
+
+
+ + + +
6.3.8.2
+
+ +
Use this domain for words related to castrating animals. There are sometimes specific terms for castrated animals, such as 'steer--a male cow that has been castrated before maturity'.
+
Classer dans ce champ lexical les termes associés à la castration d’un animal. Il existe parfois des termes spécifiques pour désigner les animaux castrés, tels que « bœuf », pour désigner un bovin castré avant l'âge adulte.
+
+
+ + + +
6.4
+
+ +
Use this domain for words related to hunting and fishing--catching and killing wild animals.
+
Classer dans ce champ lexical les termes associés à la chasse et à la pêche : attraper et tuer des animaux sauvages.
+
+
+ + + +
6.4.1
+
+ +
Use this domain for words related to hunting wild animals.
+
Classer dans ce champ lexical les termes associés à la chasse d’animaux sauvages.
+
+
+ + + +
6.4.1.1
+
+ +
Use this domain for words related to tracking an animal.
+
Classer dans ce champ lexical les termes associés au fait de suivre un animal.
+
+
+ + + +
6.4.2
+
+ +
Use this domain for words related to trapping an animal.
+
Classer dans ce champ lexical les termes associés au fait de piéger un animal.
+
+
+ + + +
6.4.3
+
+ +
Use this domain for words related to hunting birds.
+
Classer dans ce champ lexical les termes associés à la chasse aux oiseaux.
+
+
+ + + +
6.4.4
+
+ +
Use this domain for words related to keeping bees.
+
Classer dans ce champ lexical les termes associés à l’apiculture.
+
+
+ + + +
6.4.5
+
+ +
Use this domain for words related to catching fish.
+
Classer dans ce champ lexical les termes associés à la pêche.
+
+
+ + + +
6.4.5.1
+
+ +
Use this domain for words related to fishing with a net.
+
Classer dans ce champ lexical les termes associés à la pêche au filet.
+
+
+ + + +
6.4.5.2
+
+ +
Use this domain for words related to fishing with a hook and line.
+
Classer dans ce champ lexical les termes associés à la pêche à la ligne.
+
+
+ + + +
6.4.5.3
+
+ +
Use this domain for words related to fishing equipment.
+
Classer dans ce champ lexical les termes associés au matériel de pêche.
+
+
+ + + +
6.4.6
+
+ +
Use this domain for words related to things done to animals.
+
Classer dans ce champ lexical les termes associés à ce que l'on peut faire aux animaux.
+
+
+ + + +
6.5
+
+ +
Use this domain for words related to working with buildings.
+
Classer dans ce champ lexical les termes associés au travail dans le bâtiment.
+
+
+ + + +
6.5.1
+
+ +
Use this domain for words related to buildings and other large structures that people build.
+
Classer dans ce champ lexical les termes associés aux bâtiments et autres grandes structures que les gens construisent.
+
+
+ + + +
6.5.1.1
+
+ +
Use this domain for general words referring to a house where people live.
+
Classer dans ce champ lexical les termes génériques faisant référence à une maison où des gens vivent.
+
+
+ + + +
6.5.1.2
+
+ +
Use this domain for words referring to types of houses.
+
Classer dans ce champ lexical les termes désignant les différents types de maison.
+
+
+ + + +
6.5.1.3
+
+ +
Use this domain for words related to land that a person owns or the land on which a house is built.
+
Classer dans ce champ lexical le vocabulaire associé au terrain qu’une personne possède ou le terrain sur lequel une maison est construite.
+
+
+ + + +
6.5.1.4
+
+ +
Use this domain for words referring to the outside of a house, the area around a house, a barrier separating one house from another, and the entryway to the area around a house.
+
Classer dans ce champ lexical le vocabulaire désignant l’extérieur d’une maison, le terrain qui l’entoure, une séparation entre les maisons et l’accès à la propriété.
+
+
+ + + +
6.5.1.5
+
+ +
Use this domain for words referring to a fence, wall, hedge, or other barrier separating one house from another, and a gate or entryway through a fence or wall.
+
Classer dans ce champ lexical le vocabulaire qui désigne une clôture, un mur, une haie, ou autre barrière séparant une maison d’une autre ainsi que le portail ou le passage que cette séparation peut comporter.
+
+
+ + + +
6.5.2
+
+ +
Use this domain for words referring to the parts and areas of a building.
+
Classer dans ce champ lexical les termes associés aux différentes parties d’un bâtiment.
+
+
+ + + +
6.5.2.1
+
+ +
Use this domain for words related to walls.
+
Classer dans ce champ lexical les termes associés aux murs.
+
+
+ + + +
6.5.2.2
+
+ +
Use this domain for words related to a roof.
+
Classer dans ce champ lexical les termes associés à la toiture.
+
+
+ + + +
6.5.2.3
+
+ +
Use this domain for words related to a floor.
+
Classer dans ce champ lexical les termes associés au sol.
+
+
+ + + +
6.5.2.4
+
+ +
Use this domain for words related to a door.
+
Classer dans ce champ lexical les termes associés à une porte.
+
+
+ + + +
6.5.2.5
+
+ +
Use this domain for words related to a window.
+
Classer dans ce champ lexical les termes associés à une fenêtre.
+
+
+ + + +
6.5.2.6
+
+ +
Use this domain for words related to the foundation of a building.
+
Classer dans ce champ lexical les termes associés aux fondations d’un bâtiment.
+
+
+ + + +
6.5.2.7
+
+ +
Use this domain for words related to the rooms of a building.
+
Classer dans ce champ lexical les termes associés aux pièces d’un bâtiment.
+
+
+ + + +
6.5.2.8
+
+ +
Use this domain for words related to the levels of a building.
+
Classer dans ce champ lexical les termes associés aux niveaux d’un bâtiment.
+
+
+ + + +
6.5.3
+
+ +
Use this domain for words related to the materials used to make a building.
+
Classer dans ce champ lexical les termes associés aux matériaux de construction.
+
+
+ + + +
6.5.3.1
+
+ +
Use this domain for words referring to the equipment and maintenance of a building.
+
Classer dans ce champ lexical les termes associés au matériel d’entretien et à l’entretien d’un bâtiment.
+
+
+ + + +
6.5.4
+
+ +
Use this domain for words related to infrastructure--the big things people make that many people use, such as roads, electric power lines, and water supply systems.
+
Classer dans ce champ lexical les termes associés aux infrastructures : réalisations importantes que de nombreuses personnes utilisent, telles que les routes, les lignes électriques ou les réseaux d’alimentation en eau.
+
+
+ + + +
6.5.4.1
+
+ +
Use this domain for words related to a road.
+
Classer dans ce champ lexical les termes associés à une route.
+
+
+ + + +
6.5.4.2
+
+ +
Use this domain for words related to the boundary of an area.
+
Classer dans ce champ lexical les termes associés à la délimitation d’une zone.
+
+
+ + + +
6.6
+
+ +
Use this domain for words related to occupations.
+
Classer dans ce champ lexical les termes associés à diverses activités.
+
+
+ + + +
6.6.1
+
+ +
Use this domain for words related to working with cloth.
+
Classer dans ce champ lexical les termes associés au travail du textile.
+
+
+ + + +
6.6.1.1
+
+ +
Use this domain for words related to cloth.
+
Classer dans ce champ lexical les termes associés au tissu.
+
+
+ + + +
6.6.1.2
+
+ +
Use this domain for words related to spinning thread.
+
Classer dans ce champ lexical les termes associés au fait de filer.
+
+
+ + + +
6.6.1.3
+
+ +
Use this domain for words related to knitting.
+
Classer dans ce champ lexical les termes associés au tricotage.
+
+
+ + + +
6.6.1.4
+
+ +
Use this domain for words related to weaving cloth.
+
Classer dans ce champ lexical les termes associés au tissage.
+
+
+ + + +
6.6.2
+
+ +
Use this domain for words related to working with minerals.
+
Classer dans ce champ lexical les termes associés au travail en lien avec les matières minérales.
+
+
+ + + +
6.6.2.1
+
+ +
Use this domain for words related to mining.
+
Classer dans ce champ lexical les termes associés à la mine.
+
+
+ + + +
6.6.2.2
+
+ +
Use this domain for words related to smelting--melting rocks to get metal out of them.
+
Classer dans ce champ lexical les termes associés à la fonderie : fondre des blocs de pierre pour en extraire le métal.
+
+
+ + + +
6.6.2.3
+
+ +
Use this domain for words related to working with metal. Answer each question below for each kind of smith.
+
Classer dans ce champ lexical les termes associés au travail du métal. Vous répondrez aux questions ci-après pour chaque type de métaux.
+
+
+ + + +
6.6.2.4
+
+ +
Use this domain for words related to working with clay.
+
Classer dans ce champ lexical les termes associés au travail de l’argile.
+
+
+ + + +
6.6.2.5
+
+ +
Use this domain for words related to working with glass.
+
Classer dans ce champ lexical les termes associés au travail du verre.
+
+
+ + + +
6.6.2.6
+
+ +
Use this domain for words related to working with oil and gas.
+
Classer dans ce champ lexical les termes associés au travail en lien avec le pétrole et le gaz.
+
+
+ + + +
6.6.2.7
+
+ +
Use this domain for words related to working with stone.
+
Classer dans ce champ lexical les termes associés au travail de la pierre.
+
+
+ + + +
6.6.2.8
+
+ +
Use this domain for words related to working with bricks.
+
Classer dans ce champ lexical les termes associés au travail avec des briques.
+
+
+ + + +
6.6.2.9
+
+ +
Use this domain for words related to working with chemicals.
+
Classer dans ce champ lexical les termes associés au travail avec des produits chimiques.
+
+
+ + + +
6.6.2.9.1
+
+ +
Use this domain for words related to bombs or chemicals exploding.
+
Classer dans ce champ lexical les termes associés aux bombes et aux explosifs.
+
+
+ + + +
6.6.3
+
+ +
Use this domain for words related to working with wood.
+
Classer dans ce champ lexical les termes associés au travail du bois.
+
+
+ + + +
6.6.3.1
+
+ +
Use this domain for words related to lumbering--cutting down trees and cutting them up.
+
Classer dans ce champ lexical les termes associés à la coupe du bois : abattre des arbres et les débiter.
+
+
+ + + +
6.6.3.2
+
+ +
Use this domain for words related to wood.
+
Classer dans ce champ lexical les termes associés au bois.
+
+
+ + + +
6.6.3.3
+
+ +
Use this domain for words related to paper.
+
Classer dans ce champ lexical les termes associés au papier.
+
+
+ + + +
6.6.4
+
+ +
Use this domain for words related to crafts.
+
Classer dans ce champ lexical les termes associés à l’artisanat.
+
+
+ + + +
6.6.4.1
+
+ +
Use this domain for words related to working with cords and ropes.
+
Classer dans ce champ lexical les termes associés au travail des cordes et des ficelles.
+
+
+ + + +
6.6.4.2
+
+ +
Use this domain for words related to weaving baskets, mats, and other things.
+
Classer dans ce champ lexical les termes associés à la vannerie (tressage de paniers, nattes, etc.…).
+
+
+ + + +
6.6.4.3
+
+ +
Use this domain for words related to working with leather.
+
Classer dans ce champ lexical les termes associés au travail du cuir.
+
+
+ + + +
6.6.4.4
+
+ +
Use this domain for words related to working with bone.
+
Classer dans ce champ lexical les termes associés au travail de l’os ou de la corne.
+
+
+ + + +
6.6.5
+
+ +
Use this domain for words related to art.
+
Classer dans ce champ lexical les termes associés à l’art plastique.
+
+
+ + + +
6.6.5.1
+
+ +
Use this domain for words related to drawing and painting pictures.
+
Classer dans ce champ lexical les termes associés à la peinture ou au dessin.
+
+
+ + + +
6.6.5.2
+
+ +
Use this domain for words related to photography.
+
Classer dans ce champ lexical les termes associés à la photographie.
+
+
+ + + +
6.6.5.3
+
+ +
Use this domain for words related to sculpture.
+
Classer dans ce champ lexical les termes associés à la sculpture.
+
+
+ + + +
6.6.6
+
+ +
Use this domain for words related to working with land.
+
Classer dans ce champ lexical les termes associés au travail de la terre.
+
+
+ + + +
6.6.7
+
+ +
Use this domain for words related to working with water.
+
Classer dans ce champ lexical les termes associés au travail se rapportant à l’eau.
+
+
+ + + +
6.6.7.1
+
+ +
Use this domain for words related to working with water pipes.
+
Classer dans ce champ lexical les termes associés au travail sur des canalisations d’eau.
+
+
+ + + +
6.6.7.2
+
+ +
Use this domain for words related to conveying water--moving water from one place to another place.
+
Classer dans ce champ lexical les termes associés au transport de l’eau, au fait d’amener l’eau d’un endroit à l’autre.
+
+
+ + + +
6.6.7.3
+
+ +
Use this domain for words related to controlling the movement of water.
+
Classer dans ce champ lexical les termes associés au contrôle des mouvements de l’eau.
+
+
+ + + +
6.6.7.4
+
+ +
Use this domain for words related to working in the sea.
+
Classer dans ce champ lexical les termes associés au travail en mer.
+
+
+ + + +
6.6.8
+
+ +
Use this domain for words related to working with machines.
+
Classer dans ce champ lexical les termes associés au travail avec des machines.
+
+
+ + + +
6.6.8.1
+
+ +
Use this domain for words related to working with electricity.
+
Classer dans ce champ lexical les termes associés au travail se rapportant à l’électricité.
+
+
+ + + +
6.7
+
+ +
Use this domain for general words for tools and machines. The domains in this section should be used for general tools and machines that are used in a variety of tasks. Specialized tools and machines should be classified under the specific work or activity for which they are used.
+
Classer dans ce champ lexical les termes génériques associés aux outils et aux machines. Ce champ lexical est destiné aux termes génériques pour les outils et les machines qui servent à une multitude de tâches. Le nom des outils et des machines spécialisés doit être classé sous la tâche correspondante.
+
+
+ + + +
6.7.1
+
+ +
Use this domain for words related to cutting tools.
+
Classer dans ce champ lexical le vocabulaire associé aux outils coupants.
+
+
+ + + +
6.7.1.1
+
+ +
Use this domain for words related to poking tools--tools used to make holes in things.
+
Classer dans ce champ lexical le vocabulaire associé aux outils pointus : outils qui servent à faire des trous.
+
+
+ + + +
6.7.1.2
+
+ +
Use this domain for words related to digging tools.
+
Classer dans ce champ lexical le vocabulaire associé aux outils pour creuser.
+
+
+ + + +
6.7.2
+
+ +
Use this domain for words related to pounding tools.
+
Classer dans ce champ lexical le vocabulaire associé aux marteaux et maillets.
+
+
+ + + +
6.7.3
+
+ +
Use this domain for words related to carrying tools.
+
Classer dans ce champ lexical le vocabulaire associé aux valises, sacs et autres.
+
+
+ + + +
6.7.4
+
+ +
Use this domain for words referring to tools used to lift things.
+
Classer dans ce champ lexical le vocabulaire associé aux outils pour soulever une charge.
+
+
+ + + +
6.7.5
+
+ +
Use this domain for words related to fastening tools.
+
Classer dans ce champ lexical le vocabulaire associé à ce qui sert à attacher.
+
+
+ + + +
6.7.6
+
+ +
Use this domain for words related to holding tools--tools used to grip and hold things so that they don't move, and tools used to hold things that you can't hold with your hand, such as very hot things.
+
Classer dans ce champ lexical le vocabulaire associé aux objets qui servent à tenir quelque chose afin qu’elle ne bouge pas ou qu’on ne peut tenir avec la main, si c’est brûlant par exemple.
+
+
+ + + +
6.7.7
+
+ +
Use this domain for words related to containers.
+
Classer dans ce champ lexical le vocabulaire associé à des contenants.
+
+
+ + + +
6.7.7.1
+
+ +
Use this domain for words related to bags.
+
Classer dans ce champ lexical le vocabulaire associé à des sacs.
+
+
+ + + +
6.7.7.2
+
+ +
Use this domain for words related to a sheath--a container for a weapon.
+
Classer dans ce champ lexical le vocabulaire associé à un fourreau : quelque chose qui contient une arme (par exemple).
+
+
+ + + +
6.7.8
+
+ +
Use this domain for words referring to parts of tools and machines. You need to think of different tools and machines, and think of each part.
+
Classer dans ce champ lexical le vocabulaire associé à des composantes d’outils ou de machines. Il faudra réfléchir à tous les outils ou machines et aux éléments qui les constituent.
+
+
+ + + +
6.7.9
+
+ +
Use this domain for words referring to machines.
+
Classer dans ce champ lexical le vocabulaire associé aux machines.
+
+
+ + + +
6.8
+
+ +
Use this domain for words related to finance.
+
Classer dans ce champ lexical le vocabulaire associé à la finance.
+
+
+ + + +
6.8.1
+
+ +
Use this domain for words related to having wealth.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’avoir des richesses.
+
+
+ + + +
6.8.1.1
+
+ +
Use this domain for words related to owning something.
+
Classer dans ce champ lexical le vocabulaire associé à la possession de quelque chose.
+
+
+ + + +
6.8.1.2
+
+ +
Use this domain for words related to being rich.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être riche.
+
+
+ + + +
6.8.1.3
+
+ +
Use this domain for words related to being poor.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être pauvre.
+
+
+ + + +
6.8.1.4
+
+ +
Use this domain for words related to storing wealth.
+
Classer dans ce champ lexical le vocabulaire associé à la mise en réserve de richesses.
+
+
+ + + +
6.8.1.5
+
+ +
Use this domain for words related to property--the things you own.
+
Classer dans ce champ lexical le vocabulaire associé à la propriété, aux choses qu’on possède.
+
+
+ + + +
6.8.2
+
+ +
Use this domain for words related to accumulating wealth.
+
Classer dans ce champ lexical le vocabulaire associé à l’accumulation de richesses.
+
+
+ + + +
6.8.2.1
+
+ +
Use this domain for words related to producing wealth.
+
Classer dans ce champ lexical le vocabulaire associé à la production de richesses.
+
+
+ + + +
6.8.2.2
+
+ +
Use this domain for words related to making a profit.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire des bénéfices.
+
+
+ + + +
6.8.2.3
+
+ +
Use this domain for words related to losing wealth.
+
Classer dans ce champ lexical le vocabulaire associé à la perte de ses richesses.
+
+
+ + + +
6.8.2.4
+
+ +
Use this domain for words related to being frugal--to not spend a lot of money.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être économe : ne pas dépenser beaucoup d’argent.
+
+
+ + + +
6.8.2.5
+
+ +
Use this domain for words related to being greedy.
+
Classer dans ce champ lexical le vocabulaire associé à l’avidité.
+
+
+ + + +
6.8.2.6
+
+ +
Use this domain for words related to collecting things you find interesting. In some cultures people collect rare or valuable things that they think are attractive or interesting, such as art, stamps, coins, books, or antiques.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de collectionner des choses intéressantes. Dans certaines cultures, les gens collectionnent des choses rares ou précieuses qu’ils estiment intéressantes telles que des œuvres d’art, des timbres, des pièces de monnaie, des livres ou des objets anciens.
+
+
+ + + +
6.8.2.7
+
+ +
Use this domain for words related to earning money for work that you do.
+
Classer dans ce champ lexical le vocabulaire associé au fait de gagner de l’argent pour le travail exécuté.
+
+
+ + + +
6.8.3
+
+ +
Use this domain for words related to sharing wealth with others.
+
Classer dans ce champ lexical le vocabulaire associé au partage de ses richesses avec d’autres.
+
+
+ + + +
6.8.3.1
+
+ +
Use this domain for words referring to giving something to someone, in which there is a transference of ownership.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire un don à quelqu’un en lui en transférant la propriété.
+
+
+ + + +
6.8.3.2
+
+ +
Use this domain for words related to being generous.
+
Classer dans ce champ lexical le vocabulaire associé à la générosité.
+
+
+ + + +
6.8.3.3
+
+ +
Use this domain for words related to being stingy.
+
Classer dans ce champ lexical le vocabulaire associé à l’avarice.
+
+
+ + + +
6.8.3.4
+
+ +
Use this domain for words related to begging--for a poor person to ask other people to give them money, food, or other things.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mendier : quelqu’un de pauvre demande à des gens de lui donner de l’argent, de la nourriture, ou autres.
+
+
+ + + +
6.8.4
+
+ +
Use this domain for words related to financial transactions.
+
Classer dans ce champ lexical le vocabulaire associé à des transactions financières.
+
+
+ + + +
6.8.4.1
+
+ +
Use this domain for words related to buying something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’acheter quelque chose.
+
+
+ + + +
6.8.4.2
+
+ +
Use this domain for words related to selling something.
+
Classer dans ce champ lexical le vocabulaire associé à la vente de quelque chose.
+
+
+ + + +
6.8.4.3
+
+ +
Use this domain for words related to the price of something--how much money you have to pay to buy something.
+
Classer dans ce champ lexical le vocabulaire associé au prix de quelque chose : somme à payer pour acheter quelque chose.
+
+
+ + + +
6.8.4.3.1
+
+ +
Use this domain for words related to an expensive price.
+
Classer dans ce champ lexical le vocabulaire associé à un prix élevé.
+
+
+ + + +
6.8.4.3.2
+
+ +
Use this domain for words related to a cheap price.
+
Classer dans ce champ lexical le vocabulaire associé à un prix bon marché.
+
+
+ + + +
6.8.4.3.3
+
+ +
Use this domain for words related to something being free of charge--something you can have without paying for it.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de gratuit : que l’on peut avoir sans rien payer.
+
+
+ + + +
6.8.4.4
+
+ +
Use this domain for words related to bargaining over the price of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de marchander un prix.
+
+
+ + + +
6.8.4.5
+
+ +
Use this domain for words related to paying money for something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de payer.
+
+
+ + + +
6.8.4.6
+
+ +
Use this domain for words related to hiring or renting something--to pay money so that you can use something that belongs to someone else.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de louer quelque chose : payer pour pouvoir utiliser quelque chose qui appartient à quelqu’un d’autre.
+
+
+ + + +
6.8.4.7
+
+ +
Use this domain for words related to spending money.
+
Classer dans ce champ lexical le vocabulaire associé au fait de dépenser de l’argent.
+
+
+ + + +
6.8.4.8
+
+ +
Use this domain for words related to a store or marketplace where things are sold.
+
Classer dans ce champ lexical le vocabulaire associé aux lieux où l’on vend.
+
+
+ + + +
6.8.4.9
+
+ +
Use this domain for words related to exchanging or trading things.
+
Classer dans ce champ lexical le vocabulaire associé au commerce et aux échanges commerciaux.
+
+
+ + + +
6.8.5
+
+ +
Use this domain for words related to borrowing something.
+
Classer dans ce champ lexical le vocabulaire associé à l’emprunt de quelque chose.
+
+
+ + + +
6.8.5.1
+
+ +
Use this domain for words related to lending something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de prêter.
+
+
+ + + +
6.8.5.2
+
+ +
Use this domain for words related to giving a pledge to replay a loan.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de donner quelque chose en gage pour un prêt.
+
+
+ + + +
6.8.5.3
+
+ +
Use this domain for words related to owing money.
+
Classer dans ce champ lexical le vocabulaire associé au fait de devoir de l’argent.
+
+
+ + + +
6.8.5.4
+
+ +
Use this domain for words related to repaying a debt.
+
Classer dans ce champ lexical le vocabulaire associé au remboursement d’une dette.
+
+
+ + + +
6.8.5.5
+
+ +
Use this domain for words referring to credit--when a lending institution, such as a bank, has some of your money, so they owe you something.
+
Classer dans ce champ lexical le vocabulaire associé au crédit : quand l’argent est placé dans un organisme de prêt tel une banque, et qu’il rapporte quelque chose.
+
+
+ + + +
6.8.6
+
+ +
Use this domain for words related to money.
+
Classer dans ce champ lexical le vocabulaire associé à l’argent.
+
+
+ + + +
6.8.6.1
+
+ +
Use this domain for words related to monetary units.
+
Classer dans ce champ lexical le vocabulaire associé aux unités monétaires.
+
+
+ + + +
6.8.7
+
+ +
Use this domain for words related to accounting--to keep records of money.
+
Classer dans ce champ lexical le vocabulaire associé à la comptabilité : fait de garder trace des transactions financières.
+
+
+ + + +
6.8.8
+
+ +
Use this domain for words related to tax.
+
Classer dans ce champ lexical le vocabulaire associé aux impôts.
+
+
+ + + +
6.8.9
+
+ +
Use this domain for words related to dishonest financial practices.
+
Classer dans ce champ lexical le vocabulaire associé à des pratiques financières malhonnêtes.
+
+
+ + + +
6.8.9.1
+
+ +
Use this domain for words related to stealing something--to take something that does not belong to you.
+
Classer dans ce champ lexical le vocabulaire associé au fait de voler, de prendre ce qui appartient à quelqu’un d’autre.
+
+
+ + + +
6.8.9.2
+
+ +
Use this domain for words related to cheating someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de tromper quelqu’un.
+
+
+ + + +
6.8.9.3
+
+ +
Use this domain for words related to extorting money--forcing someone to give you money on a regular basis by threatening them with some harm.
+
Classer dans ce champ lexical le vocabulaire associé à l’extorsion d’argent : forcer quelqu’un à donner régulièrement de l’argent en le menaçant de lui faire du mal.
+
+
+ + + +
6.8.9.4
+
+ +
Use this domain for words related to taking something by force.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prendre quelque chose de force.
+
+
+ + + +
6.8.9.5
+
+ +
Use this domain for money given to a person to do something bad.
+
Classer dans ce champ lexical le vocabulaire associé au fait de donner de l’argent pour corrompre quelqu’un.
+
+
+ + + +
6.8.9.6
+
+ +
Use this domain for words related to smuggling--taking something secretly into a country, something which is illegal or without paying duty.
+
Classer dans ce champ lexical le vocabulaire associé à la contrebande : faire entrer secrètement dans un pays quelque chose qui est illégal ou sans payer les taxes.
+
+
+ + + +
6.9
+
+ +
Use this domain for words related to business organization.
+
Classer dans ce champ lexical le vocabulaire associé aux entreprises.
+
+
+ + + +
6.9.1
+
+ +
Use this domain for words related to managing something.
+
Classer dans ce champ lexical le vocabulaire associé à la gestion.
+
+
+ + + +
6.9.2
+
+ +
Use this domain for words related to working for someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de travailler pour autrui.
+
+
+ + + +
6.9.3
+
+ +
Use this domain for words related to the promotion of trade and sales.
+
Classer dans ce champ lexical le vocabulaire associé à la promotion des ventes.
+
+
+ + + +
6.9.4
+
+ +
Use this domain for words related to commerce--taking something to a place and trying to sell it there.
+
Classer dans ce champ lexical le vocabulaire associé au commerce : au fait d’acheter une chose pour la revendre.
+
+
+ + + +
6.9.5
+
+ +
Use this domain for words related to economics--the study of the money, trade, and industry of a country.
+
Classer dans ce champ lexical le vocabulaire associé à l’économie : l’étude des devises, des marchés, du commerce, des services et de l’industrie d’un pays.
+
+
+ + + +
6.9.6
+
+ +
Use this domain for words related to insurance.
+
Classer dans ce champ lexical le vocabulaire associé aux assurances.
+
+
+ + + +
7
+
+ +
Use this domain for general words for physical actions--moving yourself, moving things, and changing things.
+
Classer dans ce champ lexical les termes génériques pour les activités physiques : se déplacer, déplacer des choses et les changer.
+
+
+ + + +
7.1
+
+ +
Use this domain for general words indicating the posture or stance of a person's body. Use the domains in this section for specific words for postures and for moving parts of the body. Many of these words have two meanings. One meaning is stative, indicating that the body is in a particular posture, but not moving. The other meaning is active, indicating that the person is moving his body into a particular posture. Some of these words can be used of animals or even things, if the things are perceived as being similar in posture to that of a human body.
+
Classer dans ce champ lexical les termes génériques indiquant la posture ou la position du corps de quelqu’un. Classer dans les champs lexicaux de cette partie les mots relatifs aux postures et aux parties mobiles du corps. Un grand nombre de ces mots ont deux sens. Le premier est statique : il indique une position du corps. Le deuxième sens est actif : il indique que quelqu’un fait un mouvement pour se mettre dans une certaine position. On peut utiliser certains de ces mots pour les animaux ou même pour les choses, si celles-ci sont perçues comme ayant la même position qu’un corps humain.
+
+
+ + + +
7.1.1
+
+ +
Use this domain for words related to standing. The words in this domain may include whether the person is standing on one foot or two, whether the person's feet are together or placed apart, whether something is between the person's feet, how fast the person stands up.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être debout. On peut y inclure le vocabulaire désignant une personne qui se tient sur un pied ou deux, à pieds joints ou les jambes écartées, s’il y a quelque chose entre ses pieds, ou la vitesse à laquelle elle se met debout.
+
+
+ + + +
7.1.2
+
+ +
Use this domain for words referring to sitting and squatting.
+
Classer dans ce champ lexical les mots ou expressions qui désignent la position assise ou accroupie.
+
+
+ + + +
7.1.3
+
+ +
Use this domain for words referring to lying down.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la position allongée.
+
+
+ + + +
7.1.4
+
+ +
Use this domain for words referring to kneeling.
+
Classer dans ce champ lexical les mots ou expressions qui expriment le fait de s’agenouiller.
+
+
+ + + +
7.1.5
+
+ +
Use this domain for words referring to bowing to someone--to face someone and lower your head or bend at the waist so that your upper body is lowered. The words in this domain should all be symbolic acts, that is, the culture assigns a meaning and significance to the physical action. Some cultures define it as a greeting, as an act of respect, or as an act of submission. For instance in ancient middle eastern culture bowing was an act of submission done in the presence of the king. Failure to bow was an act of rebellion punishable by death. In far eastern culture it is a greeting. In African culture it is an act of respect or done to welcome a visitor. Cultures define how a person is to bow, for instance how they are to hold their hands. A person may bow while standing, or may kneel, or even prostrate himself flat on his face. Whether both people bow is also significant. The depth of the bow can have significance. In Japan the person of lower social rank must bow deeper. In European culture a performer bows to acknowledge applause.
+
Classer dans ce champ lexical les mots ou expressions faisant référence au fait de se prosterner devant quelqu’un, de faire une courbette ou de courber la tête devant quelqu’un. Les mots de ce champ lexical peuvent désigner des actes symboliques qui, dans une culture, ont une certaine signification. Ainsi, cela peut vouloir dire qu’on salue quelqu’un, qu’on manifeste du respect ou qu’on exprime sa soumission. Par exemple, dans la culture antique du Moyen-Orient, se prosterner était un signe de soumission envers le roi. Ne pas se prosterner était considéré comme un signe de rébellion et était condamnable à mort. En Extrême-Orient, ce geste est une salutation. Dans la culture africaine, c’est un signe de respect ou d’accueil d’un visiteur. Les cultures définissent la manière dont ce geste doit être fait, par exemple quelle doit être la position des mains. Une personne peut se prosterner en étant debout, s’agenouiller, ou même se coucher face contre terre. Le fait que les deux personnes se prosternent a aussi une signification. L’ampleur du geste peut avoir un sens aussi. Au Japon, une personne d’un rang social inférieur doit se prosterner plus bas. En Europe, un artiste s’incline en remerciement des applaudissements.
+
+
+ + + +
7.1.6
+
+ +
Use this domain for words describing a person who is leaning.
+
Classer dans ce champ lexical les mots qui décrivent une personne qui s’appuie.
+
+
+ + + +
7.1.7
+
+ +
Use this domain for words referring to straight posture--holding your body straight, stiff, or erect, rather than relaxed.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de se tenir droit, raide et non d’être détendu.
+
+
+ + + +
7.1.7.1
+
+ +
Use this domain for words describing a relaxed posture.
+
Classer dans ce champ lexical les mots ou expressions qui décrivent une position détendue.
+
+
+ + + +
7.1.8
+
+ +
Use this domain for words referring to bending down--to bend your body so that it is closer to the ground (in order to see something, pick up something, or hide).
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la position penchée : au fait de se courber afin de se rapprocher du sol (pour voir quelque chose, ramasser quelque chose ou se cacher).
+
+
+ + + +
7.1.9
+
+ +
Use this domain for words referring to moving various parts of the body.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au mouvement des diverses parties du corps.
+
+
+ + + +
7.2
+
+ +
Use this domain for intransitive verbs of movement referring to moving your whole body to a different location. There are many components of meaning involved in verbs of movement. They can include a source location (from), a goal location (to), a path (along), manner (walk, run), speed (race, crawl), direction +(forward, back, side, up, down, toward, away from), shape of the path (straight, curve, circle, angle), relationship to some object or objects (on, hang, against, between, across, through, into, out of, onto, off of, around), proximity (near, far), multiple movements (back and forth, return, bounce), inclusion with other objects or parts of objects (join, leave, collect, disperse, unite, separate), volition (go versus drift), intransitive versus transitive (move versus move something). Some verbs of movement do not involve moving from one place to another, but express bodily movement.
+
Classer dans ce champ lexical les verbes intransitifs de mouvement exprimant l’action de se déplacer d’un endroit vers un autre. Les verbes de mouvement comportent un grand nombre de traits sémantiques : le lieu de départ (d’où), la destination (vers), un chemin (le long), la manière (faire la course, ramper), la vitesse (marcher, courir), la direction (en avant, derrière, sur le côté, en haut, en bas, en direction de, loin de), la forme du chemin (droit, en lacet, en rond, angle), la relation à un ou des objets (sur, accrocher, contre, entre, en face, à travers, dans, hors de, sur, de, autour de), la proximité (près de, loin de), des mouvements multiples (aller-retour, revenir ou retourner, rebondir), la relation à d’autres objets ou parties d’objets (assembler, laisser, collectionner, disperser, unir, séparer), la volonté (aller par opposition à dériver), les verbes intransitifs par opposition aux verbes transitifs (bouger par opposition à bouger quelque chose).Certains verbes de mouvement ne comportent pas la notion de déplacement d’un endroit à un autre, mais expriment un mouvement du corps.
+
+
+ + + +
7.2.1
+
+ +
Use this domain for general words referring to the way in which a person moves.
+
Classer dans ce champ lexical le vocabulaire associé à la façon dont quelqu’un se déplace.
+
+
+ + + +
7.2.1.1
+
+ +
Use this domain for words related to walking--moving slowly using your legs.
+
Classer dans ce champ lexical le vocabulaire associé à la marche, à l’action de se déplacer lentement sur ses jambes.
+
+
+ + + +
7.2.1.1.1
+
+ +
Use this domain for words referring to running--moving fast on your legs.
+
Classer dans ce champ lexical le vocabulaire faisant référence à la course : action de se déplacer rapidement
+
+
+ + + +
7.2.1.1.2
+
+ +
Use this domain for words referring to crawling--moving on your hands and knees or on your stomach.
+
Classer dans ce champ lexical le vocabulaire associé à la reptation : se mouvoir sur les mains et les genoux ou sur le ventre.
+
+
+ + + +
7.2.1.1.3
+
+ +
Use this domain for words referring to jumping--moving your body off the ground by pushing hard with your legs.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de sauter : faire décoller son corps du sol en poussant fortement sur ses jambes.
+
+
+ + + +
7.2.1.2
+
+ +
Use this domain for words referring to moving quickly or slowly.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de se déplacer rapidement ou lentement.
+
+
+ + + +
7.2.1.2.1
+
+ +
Use this domain for words referring to moving slowly.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’action de se déplacer lentement.
+
+
+ + + +
7.2.1.3
+
+ +
Use this domain for words referring to wandering--to move slowly without any purpose or goal.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’action d’errer : se déplacer lentement, sans but précis.
+
+
+ + + +
7.2.1.4
+
+ +
Use this domain for words referring to moving in a graceful manner.
+
Classer dans ce champ lexical le vocabulaire qui signifie se déplacer avec grâce.
+
+
+ + + +
7.2.1.4.1
+
+ +
Use this domain for words referring to moving in a clumsy manner.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de se déplacer d’une manière maladroite.
+
+
+ + + +
7.2.1.5
+
+ +
Use this domain for words referring to walking with some difficulty such as stumbling--to miss your step because of hitting an object such as a stone, hole, or mud; staggering--to walk unsteadily because of weakness, illness, or drunkenness; or limping--to walk unevenly or with difficulty because of injury to a foot.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de rencontrer des problèmes en marchant : trébucher à cause d’un obstacle (pierre, trou), glisser à cause de la boue, tituber à cause d’un malaise, d’une maladie, de l’ivresse ou boiter, c’est-à-dire marcher en claudiquant ou difficilement à cause d’une blessure au pied.
+
+
+ + + +
7.2.1.5.1
+
+ +
Use this domain for moving across a smooth or lubricated surface.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de se déplacer sur une surface lisse ou glissante.
+
+
+ + + +
7.2.1.6
+
+ +
Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.
+
Classer dans ce champ lexical le vocabulaire qui sert à qualifier la facilité avec laquelle quelqu’un ou quelque chose se déplace ou est déplacé.
+
+
+ + + +
7.2.1.6.1
+
+ +
Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.
+
Classer dans ce champ lexical le vocabulaire associé au fait de rester en équilibre ou faire tenir quelque chose en équilibre : quelqu’un ou quelque chose peut rester en équilibre ou se déplacer sans tomber.
+
+
+ + + +
7.2.1.7
+
+ +
Use this domain for words referring to making a noise while moving.
+
Classer dans ce champ lexical le vocabulaire désignant le bruit fait en se déplaçant.
+
+
+ + + +
7.2.2
+
+ +
Use the domains in this section for words referring to moving in a direction related to the orientation of the person's body (not in relation to the position of the destination).
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement dans une direction par rapport à son corps (et non par rapport à la destination finale).
+
+
+ + + +
7.2.2.1
+
+ +
Use this domain for words referring to moving in a forward direction--in the same direction the person is facing.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement vers l’avant : dans la direction devant soi.
+
+
+ + + +
7.2.2.2
+
+ +
Use this domain for words referring to moving in a backward direction--the person is facing one direction, but moving toward their back--to move in the opposite direction from the direction the person is facing.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement vers l’arrière : la personne fait face à une direction, mais se déplace dans la direction opposée, dans celle à laquelle elle tourne le dos.
+
+
+ + + +
7.2.2.3
+
+ +
Use this domain for words referring to moving in a sideways direction--the person is facing one direction, but moving toward their side.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement latéral : la personne fait face à une direction, mais se déplace sur le côté.
+
+
+ + + +
7.2.2.4
+
+ +
Use this domain for words referring to moving in an upward direction or to moving to a higher place.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un déplacement vers le haut ou dans un endroit plus haut.
+
+
+ + + +
7.2.2.5
+
+ +
Use this domain for words referring to moving in a downward direction or to moving to a lower place.
+
Classer dans ce champ lexical le vocabulaire en rapport avec un déplacement vers le bas ou vers un niveau inférieur.
+
+
+ + + +
7.2.2.5.1
+
+ +
Use this domain for words referring to something falling--for something to move down under the influence of gravity.
+
Classer dans ce champ lexical le vocabulaire concernant une chute : quelque chose se dirige vers le bas à cause de la gravité.
+
+
+ + + +
7.2.2.6
+
+ +
Use this domain for words referring to turning and changing the direction in which one is moving.
+
Classer dans ce champ lexical le vocabulaire associé à un changement de direction.
+
+
+ + + +
7.2.2.7
+
+ +
Use this domain for words referring to continually changing the direction you are facing in until you are once again facing in the same direction, e.g. moving in a circle, moving around something, or rotating.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire un tour complet pour revenir dans la direction où l’on était (ex : tourner en rond, tourner autour de quelque chose).
+
+
+ + + +
7.2.2.8
+
+ +
Use this domain for words related to moving back and forth.
+
Classer dans ce champ lexical le vocabulaire en relation avec l’action de marcher de long en large.
+
+
+ + + +
7.2.2.9
+
+ +
Use this domain for words referring to moving straight without changing direction.
+
Classer dans ce champ lexical le vocabulaire en rapport avec l’action de se déplacer tout droit, sans changement de direction.
+
+
+ + + +
7.2.3
+
+ +
Use this domain for words referring to moving toward, in the direction of, or near something or some place. The words in this domain should refer to moving in the direction of a place, but should not require that the person actually arrived. Some languages (such as German and Polish) distinguish 'go on foot' from 'go in a vehicle'.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de s’avancer, d’aller dans une direction, ou de s’approcher d’une chose ou d’un lieu. Les mots ou expressions de ce champ lexical doivent désigner un mouvement vers un endroit, mais ne doivent pas impliquer que la personne y arrive. Certaines langues (l’allemand ou le polonais par exemple) distinguent l’action d’aller à pied de celle d’aller au moyen d’un véhicule.
+
+
+ + + +
7.2.3.1
+
+ +
Use this domain for words referring to moving away from a place.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de s’éloigner d’un lieu.
+
+
+ + + +
7.2.3.2
+
+ +
Use this domain for words referring to moving away from the speaker. In Australian languages many movement words are marked for direction toward or away from the speaker.
+
Classer dans ce champ lexical le vocabulaire qui signifie se déplacer loin de la personne qui parle. Dans les langues australiennes, il existe de nombreux mots qui indiquent un déplacement dans la direction de celui qui parle ou à l’opposé.
+
+
+ + + +
7.2.3.2.1
+
+ +
Use this domain for words referring to moving toward the speaker.
+
Classer dans ce champ lexical le vocabulaire qui signifie se rapprocher de la personne qui parle.
+
+
+ + + +
7.2.3.3
+
+ +
Use this domain for words referring to moving away from a place.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de partir d’un lieu.
+
+
+ + + +
7.2.3.3.1
+
+ +
Use this domain for words referring to arriving at a place.
+
Classer dans ce champ lexical le vocabulaire désignant l’arrivée dans un lieu.
+
+
+ + + +
7.2.3.4
+
+ +
Use this domain for words related to moving into something, such as a house or an area.
+
Classer dans ce champ lexical le vocabulaire relatif à l’action d’entrer dans un lieu (une maison, un endroit…).
+
+
+ + + +
7.2.3.4.1
+
+ +
Use this domain for words related to moving out of something, such as a house or area.
+
Classer dans ce champ lexical le vocabulaire relatif à l’action de sortir de quelque part (maison, endroit).
+
+
+ + + +
7.2.3.5
+
+ +
Use this domain for words referring to moving past, over, or through something.
+
Classer dans ce champ lexical le vocabulaire désignant le fait de passer à côté, de passer sur ou au travers de quelque chose.
+
+
+ + + +
7.2.3.6
+
+ +
Use this domain for words referring to returning to a place--to go back to a place you earlier left.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à l’action de revenir à un endroit que l’on avait quitté.
+
+
+ + + +
7.2.4
+
+ +
Use this domain for words referring to traveling--to move a long distance. The words in this domain may imply that the person has to sleep somewhere other than his home.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’action de voyager, de faire un long déplacement. Cela peut vouloir dire que la personne dorme ailleurs que chez elle.
+
+
+ + + +
7.2.4.1
+
+ +
Use this domain for words related to traveling by land.
+
Classer dans ce champ lexical le vocabulaire associé au fait de voyager par voie terrestre.
+
+
+ + + +
7.2.4.1.1
+
+ +
Use this domain for things used to move.
+
Classer dans ce champ lexical le vocabulaire qui désigne des véhicules et autres moyens de locomotion.
+
+
+ + + +
7.2.4.1.2
+
+ +
Use this domain for words related to railroads.
+
Classer dans ce champ lexical le vocabulaire associé aux chemins de fer.
+
+
+ + + +
7.2.4.2
+
+ +
Use this domain for words related to traveling by water.
+
Classer dans ce champ lexical le vocabulaire associé au fait de voyager par voie fluviale ou maritime.
+
+
+ + + +
7.2.4.2.1
+
+ +
Use this domain for words related to a boat.
+
Classer dans ce champ lexical le vocabulaire associé aux bateaux.
+
+
+ + + +
7.2.4.2.2
+
+ +
Use this domain for words related to swimming.
+
Classer dans ce champ lexical le vocabulaire associé à la nage.
+
+
+ + + +
7.2.4.2.3
+
+ +
Use this domain for words referring to moving under the water.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de se déplacer sous l’eau.
+
+
+ + + +
7.2.4.3
+
+ +
Use this domain for words related to traveling by air.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de voyager en avion ou en hélicoptère.
+
+
+ + + +
7.2.4.4
+
+ +
Use this domain for words related to traveling in space.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de voyager dans l’espace.
+
+
+ + + +
7.2.4.5
+
+ +
Use this domain for words related to permanently leaving your home or country, and for words related to migrating--moving every year to the same places because of the weather and food supplies.
+
Classer dans ce champ lexical le vocabulaire associé au fait de quitter définitivement son domicile ou son pays, et le vocabulaire associé à l’action de transhumer : se déplacer chaque année aux mêmes endroits en fonction des saisons et des sources de nourriture.
+
+
+ + + +
7.2.4.6
+
+ +
Use this domain for words related to the way or route that you take to go somewhere.
+
Classer dans ce champ lexical le vocabulaire concernant une route ou un itinéraire pris pour se rendre quelque part.
+
+
+ + + +
7.2.4.7
+
+ +
Use this domain for words related to losing your way.
+
Classer dans ce champ lexical le vocabulaire associé au fait de perdre son chemin.
+
+
+ + + +
7.2.4.8
+
+ +
Use this domain for words related to a map--a drawing of the world or part of the world.
+
Classer dans ce champ lexical le vocabulaire associé à une carte, un dessin représentant le monde ou une partie du monde.
+
+
+ + + +
7.2.5
+
+ +
Use this domain for words referring to moving with someone.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de se déplacer avec quelqu’un.
+
+
+ + + +
7.2.5.1
+
+ +
Use this domain for words related to going first or going ahead of someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’aller en premier ou devant quelqu’un.
+
+
+ + + +
7.2.5.2
+
+ +
Use this domain for words related to following someone.
+
Classer dans ce champ lexical le vocabulaire associé au fait de suivre quelqu’un.
+
+
+ + + +
7.2.5.3
+
+ +
Use this domain for words related to guiding someone--to show someone where to go by going ahead of them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de guider quelqu’un, de montrer à quelqu’un où aller en allant devant lui.
+
+
+ + + +
7.2.5.4
+
+ +
Use this domain for words referring to more than one thing moving together.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à plusieurs éléments qui se déplacent ensemble.
+
+
+ + + +
7.2.6
+
+ +
Use this domain for words related to pursuing someone--to follow someone in order to catch them.
+
Classer dans ce champ lexical le vocabulaire associé au fait de poursuivre quelqu’un : le suivre dans le but de l’attraper.
+
+
+ + + +
7.2.6.1
+
+ +
Use this domain for words related to catching someone who is trying to escape.
+
Classer dans ce champ lexical le vocabulaire concernant le fait d’attraper quelqu’un qui tente de s’échapper.
+
+
+ + + +
7.2.6.2
+
+ +
Use this domain for words referring to preventing someone or something from moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’empêcher quelqu’un de bouger.
+
+
+ + + +
7.2.6.3
+
+ +
Use this domain for words related to escaping from danger.
+
Classez dans ce champ lexical le vocabulaire concernant le fait d’échapper au danger.
+
+
+ + + +
7.2.6.4
+
+ +
Use this domain for words related to setting someone free.
+
Classer dans ce champ lexical le vocabulaire en rapport avec la libération de quelqu’un.
+
+
+ + + +
7.2.7
+
+ +
Use this domain for words referring to not moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas bouger.
+
+
+ + + +
7.2.7.1
+
+ +
Use this domain for words referring to stopping moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait de cesser de bouger.
+
+
+ + + +
7.2.7.2
+
+ +
Use this domain for words referring to not moving.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne plus bouger.
+
+
+ + + +
7.2.7.3
+
+ +
Use this domain for words referring to waiting in a place, waiting to do something, or waiting for something to happen. The basic idea of waiting is for someone to not do anything for a period of time, because he expects something to happen that will cause him to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attendre quelque part, d’attendre quelque chose ou d’attendre que quelque chose se passe. L’idée principale de la notion d’attente est que quelqu’un ne fait rien pendant un certain temps parce qu’il attend que quelque chose se passe et entraîne une action de sa part.
+
+
+ + + +
7.2.8
+
+ +
Use this domain for words related to causing someone to go somewhere.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’envoyer quelqu’un quelque part.
+
+
+ + + +
7.3
+
+ +
Use this domain for general words referring to moving something or someone.
+
Classer dans ce champ lexical les termes génériques associés au déplacement de quelque chose.
+
+
+ + + +
7.3.1
+
+ +
Use this domain for words referring to carrying something--to pick something up and hold it while moving oneself.
+
Classer dans ce champ lexical le vocabulaire associé au fait de transporter quelque chose, de prendre quelque chose et de le tenir en se déplaçant.
+
+
+ + + +
7.3.1.1
+
+ +
Use this domain for words referring to throwing something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de lancer quelque chose.
+
+
+ + + +
7.3.1.2
+
+ +
Use this domain for verbs for catching something that is thrown or dropped
+
Classer dans ce champ lexical les verbes qui expriment l’action d’attraper quelque chose qu’on a lancé ou qui est tombé.
+
+
+ + + +
7.3.1.3
+
+ +
Use this domain for words referring to moving something back and forth.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de bouger quelque chose d’avant en arrière.
+
+
+ + + +
7.3.1.4
+
+ +
Use this domain for words referring to knocking something over so that it falls, and for knocking a container over so that it spills its contents.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire tomber quelque chose ou de heurter une chose dont le contenu se répand.
+
+
+ + + +
7.3.1.5
+
+ +
Use this domain for words related to setting something upright.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre quelque chose d’aplomb.
+
+
+ + + +
7.3.2
+
+ +
Use this domain for general words related to moving something in a direction.
+
Classer dans ce champ lexical les termes génériques relatifs à l’action de déplacer quelque chose dans une direction.
+
+
+ + + +
7.3.2.1
+
+ +
Use this domain for words referring to putting something in front of you or in front of something else.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre devant soi ou devant autre chose.
+
+
+ + + +
7.3.2.2
+
+ +
Use this domain for words referring to putting something in back of you or in back of something else.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre quelque chose derrière soi ou derrière quelque chose d’autre.
+
+
+ + + +
7.3.2.3
+
+ +
Use this domain for words referring to putting something to the side of you.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre quelque chose à côté de soi.
+
+
+ + + +
7.3.2.4
+
+ +
Use this domain for words referring to putting something above you or above something else, putting something on top of something else, or moving something higher than it was.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre quelque chose au-dessus de soi ou de quelque chose d’autre, dessus quelque chose ou de le mettre plus haut.
+
+
+ + + +
7.3.2.4.1
+
+ +
Use this domain for words referring to hanging something, and for words describing something that has been hung.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de suspendre ou de pendre quelque chose.
+
+
+ + + +
7.3.2.5
+
+ +
Use this domain for words referring to putting something lower than you or lower than something else, putting something under something else, or moving something lower than it was.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre quelque chose plus bas que soi ou que quelque chose d’autre, de mettre quelque chose sous quelque chose d’autre ou de mettre quelque chose plus bas.
+
+
+ + + +
7.3.2.6
+
+ +
Use this domain for words referring to putting something inside something else.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mettre quelque chose dans autre chose.
+
+
+ + + +
7.3.2.7
+
+ +
Use this domain for words referring to taking something out of something else.
+
Classer dans ce champ lexical le vocabulaire associé au fait de retirer quelque chose d’autre chose.
+
+
+ + + +
7.3.2.8
+
+ +
Use this domain for words related to pulling--causing something to move toward you.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de tirer : déplacer quelque chose vers soi.
+
+
+ + + +
7.3.2.9
+
+ +
Use this domain for when someone or something causes something to move away from him.
+
Classer dans ce champ lexical le vocabulaire employé lorsque quelqu’un, ou quelque chose, provoque l’éloignement de quelque chose.
+
+
+ + + +
7.3.3
+
+ +
Use this domain for words referring to taking something or someone somewhere.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’amener quelque chose ou quelqu’un quelque part.
+
+
+ + + +
7.3.3.1
+
+ +
Use this domain for words referring to taking something or someone from its place.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’emmener quelque chose de quelque part.
+
+
+ + + +
7.3.3.2
+
+ +
Use this domain for words referring to moving something back to an original place or person. (Something is in a place, someone (or something) moves it, then someone moves it back to the first place.)
+
Classer dans ce champ lexical le vocabulaire associé à l’action de ramener quelque chose à sa place première ou à quelqu’un. Quelque chose est à un endroit, quelqu’un (ou quelque chose) le déplace, puis quelqu’un le remet là où cela était.
+
+
+ + + +
7.3.3.3
+
+ +
Use this domain for words related to sending something--to cause someone to take something somewhere.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’envoyer quelque chose : faire en sorte que quelqu’un prenne quelque chose quelque part.
+
+
+ + + +
7.3.3.4
+
+ +
Use this domain for words related to chasing or driving people and animals--to cause someone (or an animal) to move.
+
Classer dans ce champ lexical le vocabulaire associé au fait de chasser ou conduire des personnes et des animaux : les faire se déplacer.
+
+
+ + + +
7.3.3.5
+
+ +
Use this domain for words related to driving people and animals--to cause someone (or an animal) to move with you.
+
Classer dans ce champ lexical le vocabulaire relatif au fait de conduire des personnes et des animaux : les faire se déplacer avec soi.
+
+
+ + + +
7.3.4
+
+ +
Use this domain for general words for using the hands to move something.
+
Classer dans ce champ lexical les termes génériques qui font référence à l’usage des mains pour bouger quelque chose.
+
+
+ + + +
7.3.4.1
+
+ +
Use this domain for words referring to touching something with your hand without moving the thing.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de toucher une chose de la main sans la déplacer.
+
+
+ + + +
7.3.4.2
+
+ +
Use this domain for words related to picking something up.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de ramasser quelque chose.
+
+
+ + + +
7.3.4.3
+
+ +
Use this domain for words related to putting something down.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de poser quelque chose.
+
+
+ + + +
7.3.4.4
+
+ +
Use this domain for holding something in the hand.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de tenir quelque chose à la main.
+
+
+ + + +
7.3.4.5
+
+ +
Use this domain for the functions and actions of the hand.
+
Classer dans ce champ lexical le vocabulaire associé aux fonctions et aux mouvements de la main.
+
+
+ + + +
7.3.4.6
+
+ +
Use this domain for words related to keeping something from falling.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’empêcher quelque chose de tomber.
+
+
+ + + +
7.3.4.7
+
+ +
Use this domain for words related to extending something--to move something so that it covers a greater distance or area.
+
Classer dans ce champ lexical le vocabulaire associé à l’extension de quelque chose, au fait d’étendre ou d’étirer une chose pour qu’elle couvre une plus grande zone ou parcoure une plus grande distance.
+
+
+ + + +
7.3.5
+
+ +
Use this domain for turning something--to cause something to change direction, or to cause something to revolve or move in a circle.
+
Classer dans ce champ lexical le vocabulaire associé au fait de faire tourner quelque chose ; le faire changer de direction, le faire tourner autour de quelque chose ou lui faire former un cercle.
+
+
+ + + +
7.3.6
+
+ +
Use this domain for words related to opening something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’ouvrir quelque chose.
+
+
+ + + +
7.3.6.1
+
+ +
Use this domain for words related to shutting something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de fermer quelque chose.
+
+
+ + + +
7.3.6.2
+
+ +
Use this domain for words referring to preventing someone or something from moving
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’empêcher quelqu’un ou quelque chose de se déplacer.
+
+
+ + + +
7.3.6.3
+
+ +
Use this domain for words referring to a limit beyond which something may or should not go, and for words referring to imposing a limit.
+
Classer dans ce champ lexical le vocabulaire associé à la limite au-delà de laquelle on ne doit pas ou on ne peut pas aller, et aux mots qui signifient imposer cette limite.
+
+
+ + + +
7.3.7
+
+ +
Use this domain for words related to covering something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de couvrir quelque chose.
+
+
+ + + +
7.3.7.1
+
+ +
Use this domain for words related to uncovering something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de découvrir quelque chose.
+
+
+ + + +
7.3.7.2
+
+ +
Use this domain for words related to wrapping something--to cover something on all sides with something like leaves, cloth, or paper.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’envelopper quelque chose ; le couvrir de tous les côtés avec quelque chose de fin et de souple, avec par exemple des feuilles, du tissu ou du papier.
+
+
+ + + +
7.3.7.3
+
+ +
Use this domain for words related to spreading something--to cover something on all sides with something liquid or sticky like paint or mud.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’étendre quelque chose pour couvrir quelque chose de tous les côtés avec un liquide ou quelque chose de collant tel que de la peinture ou de la boue.
+
+
+ + + +
7.3.8
+
+ +
Use this domain for words referring to moving something in a vehicle.
+
Classer dans ce champ lexical les termes génériques qui signifient déplacer quelque chose dans un véhicule.
+
+
+ + + +
7.4
+
+ +
Use this domain for words related to having something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de posséder quelque chose.
+
+
+ + + +
7.4.1
+
+ +
Use this domain for words referring to giving something to someone, in which there is no transaction of ownership, merely the movement of the thing from one person to another.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de donner quelque chose à quelqu’un, sans transfert de propriété ; il ne s’agit que du passage d’une chose d’une personne à une autre.
+
+
+ + + +
7.4.2
+
+ +
Use this domain for words related to receiving something from someone.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de recevoir quelque chose de quelqu’un.
+
+
+ + + +
7.4.3
+
+ +
Use this domain for words referring to getting something.
+
Classer dans ce champ lexical le vocabulaire associé à l’obtention de quelque chose.
+
+
+ + + +
7.4.4
+
+ +
Use this domain for words related to distributing things to several people.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de distribuer des choses à plusieurs personnes.
+
+
+ + + +
7.4.5
+
+ +
Use this domain for words related to keeping something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de garder quelque chose.
+
+
+ + + +
7.4.5.1
+
+ +
Use this domain for words referring to leaving something or someone in a place and going away.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de laisser quelque chose ou quelqu’un quelque part et de s’en aller.
+
+
+ + + +
7.4.5.2
+
+ +
Use this domain for throwing away something that you no longer want.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de jeter ce qu’on ne veut plus.
+
+
+ + + +
7.4.6
+
+ +
Use this domain for words related to having something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de ne pas avoir.
+
+
+ + + +
7.5
+
+ +
Use this domain for words referring to arranging things--to physically move a group of things or people and put them in a pattern.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’arranger les choses, de déplacer plusieurs choses ou personnes pour les disposer selon une certaine disposition.
+
+
+ + + +
7.5.1
+
+ +
Use this domain for words referring to gathering things into a group. The basic idea of this domain involves a situation in which two or more things are not together, and someone moves them so that they are together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de réunir des choses. L’idée principale, dans ce champ lexical, est celle où deux choses, ou plus, ne sont pas ensemble et où quelqu’un les déplace afin de les réunir.
+
+
+ + + +
7.5.1.1
+
+ +
Use this domain for words referring to separating things into groups, and scattering things. The basic idea of this domain involves a situation in which two or more things are together, and someone moves them so that they are no longer together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de séparer les choses en groupes, de les disperser. L’idée principale de ce champ lexical est le cas où deux choses, ou plus, sont réunies et quelqu’un les déplace de façon à ce qu’elles ne soient plus ensemble.
+
+
+ + + +
7.5.1.2
+
+ +
Use this domain for words related to including something in a group.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’inclure quelque chose dans un groupe.
+
+
+ + + +
7.5.1.3
+
+ +
Use this domain for words that describe a member of a group that is different or special.
+
Classer dans ce champ lexical le vocabulaire associé au fait de qualifier un membre d’un groupe qui est différent ou particulier.
+
+
+ + + +
7.5.2
+
+ +
Use this domain for words related to joining two or more things together.
+
Classer dans ce champ lexical le vocabulaire associé au fait de réunir deux choses ou plus.
+
+
+ + + +
7.5.2.1
+
+ +
Use this domain for words related to a linking or connecting things together--to put something like a road, pipe, or wire between things so that people or things can move between them.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de relier ou de connecter des choses, par exemple des routes, des tuyaux, des fils électriques, afin que la circulation entre elles puisse se faire.
+
+
+ + + +
7.5.2.2
+
+ +
Use this domain for words referring to two or more things cohering or sticking together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de coller ou de faire adhérer deux choses ou plus.
+
+
+ + + +
7.5.2.3
+
+ +
Use this domain for words related to adding something to another thing.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’ajouter une chose à une autre.
+
+
+ + + +
7.5.2.4
+
+ +
Use this domain for words related to removing part of something, taking something apart, and things coming apart.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’enlever des parties de quelque chose, de démonter quelque chose, ainsi qu’aux choses séparables.
+
+
+ + + +
7.5.3
+
+ +
Use this domain for words related to mixing things together--to put two or more different kinds of substances, like liquids or cooking ingredients, together.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de mélanger des choses : mettre ensemble plusieurs types de substances différentes (liquides, ingrédients…).
+
+
+ + + +
7.5.3.1
+
+ +
Use this domain for words related to being pure--words describing something (like water, food, or air) that does not have anything bad in it; or unmixed--words describing something that is only one thing and has not been mixed with something else.
+
Classer dans ce champ lexical le vocabulaire associé à la pureté [mots décrivant quelque chose (eau, nourriture, air…) qui ne contient rien de mauvais], ou à l’absence de mélange (mots décrivant quelque chose qui n’est fait que d’un seul élément et n’est pas mélangé à autre chose).
+
+
+ + + +
7.5.4
+
+ +
Use this domain for words related to tying things together.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’attacher des choses ensemble.
+
+
+ + + +
7.5.4.1
+
+ +
Use this domain for words referring to rope, string, and other things used to tie things together.
+
Classer dans ce champ lexical le vocabulaire faisant référence à une corde, une ficelle, et à d’autres moyens utilisés pour attacher des choses ensemble.
+
+
+ + + +
7.5.4.2
+
+ +
Use this domain for words related to becoming tangled--when something long and thin, such as rope, string, thread, hair, grass, or vines, becomes disorganized, twisted, or knotted, so that it is hard to separate it.
+
Classer dans ce champ lexical le vocabulaire associé au fait de s’enchevêtrer : lorsque quelque chose de long et fin, tel que corde, ficelle, fils, cheveux, herbe, ou plantes grimpantes, se désorganise, s’entortille, ou se noue, si bien, qu’il est difficile d’en séparer les éléments.
+
+
+ + + +
7.5.5
+
+ +
Use this domain for words referring to organizing things, people, events, and ideas--to think about and decide on the pattern a group of things should be arranged in, and then doing whatever is necessary to arrange them so that they can be used for some purpose. This domain is like the domain 'Arrange' except that 'Arrange' emphasizes physically moving the things, and the domain 'Organize' emphasizes the logical system. 'Organize' does not require that the things be moved, only that the logical pattern is specified.
+
Classer dans ce champ lexical le vocabulaire faisant référence à l’organisation de choses, de personnes, d’événements, et d’idées : dans le but de décider, après réflexion, sous quelle forme organiser un ensemble afin de pouvoir ensuite lui donner telle ou telle utilisation. Ce champ lexical est semblable au champ lexical « Arranger » sauf que celui-ci met l’accent sur le déplacement physique des choses, tandis que le champ « Organiser » met l’accent sur la méthode logique. « Organiser » ne requiert pas que les choses soient déplacées, mais que seule la structure logique soit spécifiée.
+
+
+ + + +
7.5.5.1
+
+ +
Use this domain for words related to things becoming disorganized.
+
Classer dans ce champ lexical le vocabulaire associé aux choses qui se désorganisent.
+
+
+ + + +
7.5.6
+
+ +
Use this domain for words referring to substituting something for something else--to move something and put something else in its place.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de déplacer quelque chose pour lui substituer quelque chose d’autre.
+
+
+ + + +
7.5.7
+
+ +
Use this domain for words referring to multiple things moving.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au déplacement de choses multiples.
+
+
+ + + +
7.5.8
+
+ +
Use this domain for words related to being simple or complicated--words describing the organization of a group of things.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être simple ou compliqué : des mots ou expressions qui décrivent l’organisation d’un ensemble de choses.
+
+
+ + + +
7.5.9
+
+ +
Use this domain for words related to putting something somewhere.
+
Classer dans ce champ lexical le vocabulaire associé au fait de poser quelque chose quelque part.
+
+
+ + + +
7.5.9.1
+
+ +
Use this domain for words related to putting lots of things on something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de mettre beaucoup de choses sur quelque chose.
+
+
+ + + +
7.5.9.2
+
+ +
Use this domain for words related to filling a container or covering an area with something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de remplir quelque chose ou de recouvrir une surface avec quelque chose.
+
+
+ + + +
7.6
+
+ +
Use this domain for words related to hiding things so that they cannot be seen or found, and for hiding oneself.
+
Classer dans ce champ lexical le vocabulaire associé au fait de cacher des choses de sorte qu’elles ne puissent pas être vues ou trouvées, et au fait de se cacher soi-même.
+
+
+ + + +
7.6.1
+
+ +
Use this domain for words related to searching for something that has been hidden or lost.
+
Classer dans ce champ lexical le vocabulaire associé au fait de chercher quelque chose qui a été caché ou perdu.
+
+
+ + + +
7.6.2
+
+ +
Use this domain for words related to finding something that has been hidden or lost.
+
Classer dans ce champ lexical le vocabulaire associé au fait de trouver quelque chose qui a été caché ou perdu.
+
+
+ + + +
7.6.3
+
+ +
Use this domain for words referring to putting something in a place and not being able to find it again, or for when someone else moves something without your knowledge so that you cannot find it.
+
Classer dans ce champ lexical le vocabulaire faisant référence au fait de mettre quelque chose dans un lieu et ne pas être capable de le retrouver, ou au fait que quelqu’un d’autre déplace quelque chose sans que vous le sachiez si bien que vous ne pouvez pas le retrouver.
+
+
+ + + +
7.7
+
+ +
Use this domain for general words referring to making a physical impact on something, including the words for the action itself and the result of the action.
+
Classer dans ce champ lexical les termes génériques qui font référence au fait de produire un impact physique sur quelque chose, y compris les mots ou expressions pour l’action elle-même et le résultat de l’action.
+
+
+ + + +
7.7.1
+
+ +
Use this domain for words related to hitting something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de frapper ou heurter quelque chose.
+
+
+ + + +
7.7.2
+
+ +
Use this domain for words referring to aiming at a target, and for hitting or missing the target.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait de viser une cible, et de frapper ou de rater la cible.
+
+
+ + + +
7.7.3
+
+ +
Use this domain for words referring to kicking--to hit something with your foot. The words in this domain may be distinguished by the way in which the foot moves, either in a swinging motion, or by first bending the leg and then quickly straightening it. They may also be distinguished by whether the foot moves horizontally or vertically, whether the effect is to move something or damage it, or how hard the person kicks.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de donner un coup de pied, de frapper quelque chose avec le pied. La langue peut opérer une distinction selon la manière avec laquelle le pied se déplace, que ce soit avec un mouvement de balancier, ou que ce soit en pliant la jambe, puis en la tendant rapidement. Elle peut aussi faire une distinction dans la manière dont le pied se déplace, horizontalement ou verticalement ou encore selon le but du geste, qu’il soit de déplacer quelque chose ou de l’endommager. Le vocabulaire peut aussi exprimer la force du coup de pied.
+
+
+ + + +
7.7.4
+
+ +
Use this domain for words referring to pressing something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de presser quelque chose.
+
+
+ + + +
7.7.5
+
+ +
Use this domain for words referring to rubbing--to move something smooth against something else, in order to make it smooth or clean.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de frotter : déplacer doucement quelque chose contre autre chose, afin de le rendre lisse, doux ou propre.
+
+
+ + + +
7.7.6
+
+ +
Use this domain for words referring to grinding--to rub something rough against something else, while applying force, in order to break it or remove its surface.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de moudre, concasser, broyer : frotter quelque chose avec force contre autre chose afin de le casser.
+
+
+ + + +
7.7.7
+
+ +
Use this domain for words related to making a mark on something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire une marque sur quelque chose.
+
+
+ + + +
7.8
+
+ +
Use this domain for words referring to dividing something into parts or pieces, perhaps with the added idea of using care, or into a certain number of parts.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de diviser quelque chose en morceaux ou en pièces, éventuellement avec l’idée de le faire avec soin ou en un certain nombre de pièces.
+
+
+ + + +
7.8.1
+
+ +
Use this domain for words referring breaking something into pieces, perhaps with the added idea of doing it accidentally or without being careful.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de briser quelque chose en plusieurs morceaux, éventuellement avec l’idée de l’avoir fait accidentellement ou sans faire attention.
+
+
+ + + +
7.8.2
+
+ +
Use this domain for words referring to a crack--a partial break in something that does not entirely divide it in pieces.
+
Classer dans ce champ lexical le vocabulaire associé à une fissure : quelque chose dont la cassure n’est pas complète, dont les morceaux ne se détachent pas.
+
+
+ + + +
7.8.3
+
+ +
Use this domain for words related to cutting something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de couper quelque chose.
+
+
+ + + +
7.8.4
+
+ +
Use this domain for words related to tearing or ripping something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de déchirer ou d’arracher quelque chose.
+
+
+ + + +
7.8.5
+
+ +
Use this domain for words related to making a hole or opening in something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire un trou ou une ouverture dans quelque chose.
+
+
+ + + +
7.8.6
+
+ +
Use this domain for words related to digging in the ground.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de creuser dans le sol.
+
+
+ + + +
7.9
+
+ +
Use this domain for words related to something breaking or wearing out, especially for things that people make and use.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de casser ou d’user quelque chose, notamment des objets fabriqués dont on se sert.
+
+
+ + + +
7.9.1
+
+ +
Use this domain for words referring to damaging something--to do something bad to something, but not completely ruin it so that it can't be used any more.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’endommager quelque chose : l’abîmer sans le détruire totalement de sorte qu’il peut encore servir.
+
+
+ + + +
7.9.2
+
+ +
Use this domain for words referring to tearing down buildings and other structures.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de démolir des bâtiments ou autres structures
+
+
+ + + +
7.9.3
+
+ +
Use this domain for words referring to destroying something--to damage something so that it is beyond repair and cannot be used.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de détruire quelque chose : l’endommager de sorte que cela ne soit plus réparable et ne puisse plus être utilisé.
+
+
+ + + +
7.9.4
+
+ +
Use this domain for words related to repairing something.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de réparer quelque chose.
+
+
+ + + +
8
+
+ +
Use this domain for general words refer to the state or condition of something.
+
Classer dans ce champ lexical les termes génériques en rapport avec l’état ou la condition de quelque chose.
+
+
+ + + +
8.1
+
+ +
Use this domain for general words referring to the amount or quantity of something.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le montant ou la quantité de quelque chose.
+
+
+ + + +
8.1.1
+
+ +
Use this domain for words related to numbers. Every language has a word for 'one', and a word for 'two'. These two numbers often have special words. So we have included a separate domain for 'one' and 'two'. In addition the numbers form a series (one, two, three...). Most languages have more than one series of numbers (first, second, third...). So we have also included a domain for each series of numbers that most languages have. Your language may have other series of numbers. Put them in the domain 'Number series'.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les nombres. Toutes les langues ont des mots pour « un » et pour « deux ». Ces deux chiffres sont souvent désignés par des termes spéciaux. C’est pourquoi nous avons inclus un champ lexical séparé pour « un » et « deux ». En outre, les nombres forment une suite (un, deux, trois...). La plupart des langues ont plusieurs suites de nombres (premier, second, troisième...). C’est pourquoi nous avons aussi inclus un champ lexical pour chacune de celles qui existent dans la plupart des langues. Votre langue peut avoir d’autres suites de nombres. Vous les mettrez dans le champ lexical « Autres mots indiquant des nombres ».
+
+
+ + + +
8.1.1.1
+
+ +
Use this domain for words related to the cardinal numbers (one, two, three)--the numbers used to count.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les nombres cardinaux (un, deux, trois), les nombres qui servent à compter.
+
+
+ + + +
8.1.1.1.1
+
+ +
Use this domain for words related to the number one. It appears that every language has a word for 'one' and 'two', but not every language has a word for the numbers higher than two. Many languages have several words that mean 'one'.
+
Classer dans ce champ lexical le vocabulaire associé au chiffre un. Il semble que toutes les langues ont un mot pour « un » et « deux », mais toutes n’ont pas de terme pour les nombres supérieurs à deux. Par contre, beaucoup de langues ont plusieurs mots qui signifient « un ».
+
+
+ + + +
8.1.1.1.2
+
+ +
Use this domain for words related to the number two.
+
Classer dans ce champ lexical le vocabulaire associé au nombre deux.
+
+
+ + + +
8.1.1.2
+
+ +
Use this domain for words related to the ordinal numbers (first, second, third)--the numbers used to indicate the order of something in a series, such as "the first child".
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les nombres ordinaux (premier, second, troisième), les nombres utilisés pour indiquer l’ordre de quelque chose dans une série, tel que « le premier enfant ».
+
+
+ + + +
8.1.1.3
+
+ +
Use this domain for numbers that refer to the number of times something happens or is done. These numbers may be adverbs as in English (twice) or in some languages they may be verbs (to do something two times).
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le nombre de fois où quelque chose se produit ou est fait. Ces nombres peuvent être des adverbes comme en anglais (twice), ou, dans d’autres langues, des verbes (faire quelque chose deux fois).
+
+
+ + + +
8.1.1.4
+
+ +
Use this domain for words related to multiples of something (single, double, triple).
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les multiples de quelque chose (unique, double, triple).
+
+
+ + + +
8.1.1.5
+
+ +
Use this domain for words related to a group of a particular number of things or people (solo, duo, trio; alone, in threes).
+
Classer dans ce champ lexical les mots ou expressions en rapport avec un groupe constitué d’un nombre spécifique de choses ou de personnes (solo, duo, trio ; seul, par trois).
+
+
+ + + +
8.1.1.6
+
+ +
Use this domain for the numbers that refer to a fraction of something.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec une fraction de quelque chose.
+
+
+ + + +
8.1.1.7
+
+ +
Use this domain for other series of numbers that are different from those in the previous domains.
+
Classer dans ce champ lexical le vocabulaire associé à des mots indiquant des nombres qui n’entrent pas dans les champs lexicaux précédents.
+
+
+ + + +
8.1.2
+
+ +
Use this domain for words related to counting--to say the numbers in order, or to use numbers to find an amount.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec le fait de compter : dire les nombres dans l’ordre, ou utiliser les nombres pour trouver un montant ou une quantité.
+
+
+ + + +
8.1.2.1
+
+ +
Use this domain for words related to mathematics and arithmetic--the study of numbers.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec les mathématiques et l’arithmétique (l’étude des nombres).
+
+
+ + + +
8.1.2.2
+
+ +
Use this domain for words related to adding two numbers together.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec l’addition de deux chiffres entre eux.
+
+
+ + + +
8.1.2.3
+
+ +
Use this domain for words related to subtracting one number from another.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la soustraction d’un nombre à un autre.
+
+
+ + + +
8.1.2.4
+
+ +
Use this domain for words related to multiplying one number times another.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la multiplication d’un nombre par un autre.
+
+
+ + + +
8.1.2.5
+
+ +
Use this domain for words related to dividing one number by another number.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec la division d’un nombre par un autre.
+
+
+ + + +
8.1.3
+
+ +
Use this domain for words and affixes that indicate that there is more than one of something. Some languages, such as Indo-European languages, indicate plural with an affix. Other languages, such as Austronesian languages, use a separate word. Some languages also have words or affixes that indicate that there are two of something.
+
Classer dans ce champ lexical les mots, expressions et affixes qui indiquent qu’il y a plus d'un exemplaire d’une chose. Dans certaines langues, telles que les langues indo-européennes, le pluriel est indiqué par un affixe. Dans d’autres langues, telles que les langues austronésiennes, il est indiqué par un mot distinct. Certaines langues ont des mots ou des affixes qui indiquent qu’il y a deux exemplaires d’une chose.
+
+
+ + + +
8.1.3.1
+
+ +
Use this domain for words indicating that there are many things or people, or that there is much of something.
+
Classer dans ce champ lexical les mots indiquant qu’il y a beaucoup de choses ou de monde.
+
+
+ + + +
8.1.3.2
+
+ +
Use this domain for words related there being few or little of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait qu’il y a peu ou un petit nombre de quelque chose.
+
+
+ + + +
8.1.3.3
+
+ +
Use this domain for words that refer to a group of things.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un ensemble de choses.
+
+
+ + + +
8.1.4
+
+ +
Use this domain for words related to there being more of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait qu’il y a plus de quelque chose.
+
+
+ + + +
8.1.4.1
+
+ +
Use this domain for words that indicate that the number or amount of something is less than the number or amount of another thing.
+
Classer dans ce champ lexical le vocabulaire associé au fait qu’un nombre ou une quantité de quelque chose est moins grand que le nombre ou la quantité d'autre chose.
+
+
+ + + +
8.1.4.2
+
+ +
Use this domain for words related to something increasing in number or amount--to be more than before.
+
Classer dans ce champ lexical le vocabulaire associé aux choses dont le nombre ou la quantité augmente, qui sont plus importantes qu’avant.
+
+
+ + + +
8.1.4.3
+
+ +
Use this domain for words related to something decreasing in number or amount--to be less than before.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui diminue en nombre ou en quantité : dont on a moins qu’avant.
+
+
+ + + +
8.1.5
+
+ +
Use this domain for words related to all.
+
Classer dans ce champ lexical le vocabulaire associé à tout ou tous.
+
+
+ + + +
8.1.5.1
+
+ +
Use this domain for words related to some--a number or amount of things or people when the number is not stated; an indefinite number or amount.
+
Classer dans ce champ lexical le vocabulaire qui indique un certain nombre de choses ou de personnes ou une quantité qui ne sont pas précisés : un nombre ou une quantité indéfinis.
+
+
+ + + +
8.1.5.2
+
+ +
Use this domain for words that nothing, no one, never, and nowhere.
+
Classer dans ce champ lexical le vocabulaire qui désigne rien, aucun, personne, jamais, nulle part.
+
+
+ + + +
8.1.5.3
+
+ +
Use this domain for words referring to both of two things.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à deux choses à la fois.
+
+
+ + + +
8.1.5.4
+
+ +
Use this domain for words related to most--more than half and less than all of something.
+
Classer dans ce champ lexical le vocabulaire qui signifie la plupart : plus que la moitié ou moins que la totalité de quelque chose.
+
+
+ + + +
8.1.5.5
+
+ +
Use this domain for words related to the most--the largest number or amount; or the least--the smallest number or amount. Most/least may refer to the largest/smallest number possible or needed. If there are several groups being counted, most/least may refer to the largest/smallest group.
+
Classer dans ce champ lexical le vocabulaire associé au superlatif : le plus grand nombre, la plus grande quantité,le plus petit nombre ou la plus petite quantité. Le plus ou le moins peut désigner le plus grand ou le plus petit nombre possible ou nécessaire. S’il y a plusieurs groupes qui sont comptés, plus ou moins peut désigner le plus grand ou le plus petit groupe.
+
+
+ + + +
8.1.5.6
+
+ +
Use this domain for words related to a number or amount that is almost the same as another number.
+
Classer dans ce champ lexical le vocabulaire associé à des nombres, des montants ou des quantités presque identiques.
+
+
+ + + +
8.1.5.7
+
+ +
Use this domain for words referring to only a particular number or amount of people or things--no more than one, or no more than a particular number or amount.
+
Classer dans ce champ lexical le vocabulaire désignant un nombre défini de personnes ou de choses : pas plus qu’un, ou pas plus qu’un nombre ou une somme défini(e).
+
+
+ + + +
8.1.5.8
+
+ +
Use this domain for words that indicate whether a number or amount is exact--not more and not less.
+
Classer dans ce champ lexical le vocabulaire indiquant si un nombre ou une somme est exacte : pas plus et pas moins.
+
+
+ + + +
8.1.5.8.1
+
+ +
Use this domain for words that indicate whether a number or amount is approximate.
+
Classer dans ce champ lexical le vocabulaire indiquant si un nombre ou une somme est approximatif.
+
+
+ + + +
8.1.5.9
+
+ +
Use this domain for words related to an average number.
+
Classer dans ce champ lexical le vocabulaire associé à un nombre moyen.
+
+
+ + + +
8.1.6
+
+ +
Use this domain for words describing a whole thing--all of something with no parts missing.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la totalité de quelque chose : la totalité sans rien oublier.
+
+
+ + + +
8.1.6.1
+
+ +
Many things have parts. Use this domain for words referring to a part of something, and for words that express the idea that something has parts, that something is a part of something, or that link the whole with a part.
+
Beaucoup de choses sont composées de plusieurs parties. Classer dans ce champ lexical le vocabulaire qui fait référence à une partie de quelque chose ; également celui qui exprime l’idée que quelque chose comporte des parties, que quelque chose est une partie d’autre chose ou relie la totalité à une partie.
+
+
+ + + +
8.1.6.2
+
+ +
Use this domain for words referring to a part of something that has been broken or cut off.
+
Classer dans ce champ lexical le vocabulaire désignant un élément de quelque chose qui a été cassé ou coupé.
+
+
+ + + +
8.1.7
+
+ +
Use this domain for words related to being or having enough--to have as much of something or as many of something as you need or want.
+
Classer dans ce champ lexical le vocabulaire désignant le fait d’être assez ou d’avoir assez, c’est-à-dire d’avoir autant que l’on a besoin ou que l’on veut.
+
+
+ + + +
8.1.7.1
+
+ +
Use this domain for words related to having extra--to have more than enough or more than what you need.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir plus : plus qu'assez ou plus que ce dont on a besoin.
+
+
+ + + +
8.1.7.2
+
+ +
Use this domain for words related to having insufficient--to not have enough.
+
Classer dans ce champ lexical le vocabulaire associé au fait de manquer : ne pas avoir assez.
+
+
+ + + +
8.1.7.3
+
+ +
Use this domain for words related to needing something for some purpose.
+
Classer dans ce champ lexical le vocabulaire désignant le fait d’avoir besoin de quelque chose dans un but précis.
+
+
+ + + +
8.1.7.4
+
+ +
Use this domain for words related to the remainder of something--the part or amount of something that remains behind after the other parts have been taken away. Something can be left because everything else has been used or eaten, or everything else has been destroyed or burned.
+
Classer dans ce champ lexical le vocabulaire associé au reste de quelque chose : la partie ou la quantité qui reste après que les autres parties ont été ôtées. Quelque chose qui peut être laissé parce que tout le reste a été utilisé ou mangé, ou bien a été détruit ou brûlé.
+
+
+ + + +
8.1.8
+
+ +
Use this domain for words referring to a container being full of something.
+
Classer dans ce champ lexical le vocabulaire relatif au fait qu'un contenant est plein.
+
+
+ + + +
8.1.8.1
+
+ +
Use this domain for words referring to being empty.
+
Classer dans ce champ lexical le vocabulaire qui désigne le fait d'être vide.
+
+
+ + + +
8.2
+
+ +
Use this domain for words describing something that is big.
+
Classez dans ce champ lexical les mots ou expressions décrivant quelque chose de gros ou de grand
+
+
+ + + +
8.2.1
+
+ +
Use this domain for words referring to being small.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être petit.
+
+
+ + + +
8.2.2
+
+ +
Use this domain for words related to being long. In many languages there is more than one system of measuring length. These systems may be used for different purposes or in different jobs. For instance measuring the length of an object may use different words than measuring the distance a person travels.
+
Classer dans ce champ lexical le vocabulaire associé à la longueur. Dans de nombreuses langues, il y a plusieurs systèmes pour mesurer la longueur. Ces systèmes peuvent avoir des usages différents, ou être utilisés dans différents métiers. Par exemple, on utilisera peut-être des mots différents pour mesurer la longueur d'un objet et la distance parcourue lors d'un voyage.
+
+
+ + + +
8.2.2.1
+
+ +
Use this domain for words related to being short in length.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être court.
+
+
+ + + +
8.2.2.2
+
+ +
Use this domain for words related to being tall--a word describing something that is big from the top to the bottom.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être grand de taille : être grand du haut jusqu'en bas.
+
+
+ + + +
8.2.2.3
+
+ +
Use this domain for words related to being short in height.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être de petite taille.
+
+
+ + + +
8.2.3
+
+ +
Use this domain for words referring to being thick.
+
Classer dans ce champ lexical le vocabulaire se rapportant à l’épaisseur.
+
+
+ + + +
8.2.3.1
+
+ +
Use this domain for words describing something that is thin.
+
Classez dans ce champ lexical les mots et expressions décrivant quelque chose de mince.
+
+
+ + + +
8.2.3.2
+
+ +
Use this domain for words describing a person or animal who is fat.
+
Classez dans ce champ lexical les mots et expressions décrivant une personne forte ou un animal gras ?
+
+
+ + + +
8.2.3.3
+
+ +
Use this domain for words describing a person or animal who is thin.
+
Classer dans ce champ lexical les mots et expressions décrivant une personne ou un animal mince ?
+
+
+ + + +
8.2.4
+
+ +
Use this domain for words related to being wide--a word describing something like a road or river that is far from one side to the other side.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être large : un mot servant à décrire des espaces comme une route ou un fleuve dont les deux côtés ou les deux rives sont éloignés l’un(e) de l’autre.
+
+
+ + + +
8.2.4.1
+
+ +
Use this domain for words related to being narrow.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être étroit.
+
+
+ + + +
8.2.5
+
+ +
Use this domain for words describing a big area.
+
Classer dans ce champ lexical le vocabulaire décrivant une grande surface.
+
+
+ + + +
8.2.5.1
+
+ +
Use this domain for words referring to the volume of something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au volume de quelque chose.
+
+
+ + + +
8.2.6
+
+ +
Use this domain for words referring to the distance between two things.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la distance entre deux choses.
+
+
+ + + +
8.2.6.1
+
+ +
Use this domain for words indicating that something is far from something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est loin d’autre chose.
+
+
+ + + +
8.2.6.2
+
+ +
Use this domain for words indicating that something is near something else.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose est proche d’une autre.
+
+
+ + + +
8.2.6.3
+
+ +
Use this domain for words that express the idea that something is high.
+
Classer dans ce champ lexical le vocabulaire qui exprime l’idée que quelque chose est haut.
+
+
+ + + +
8.2.6.4
+
+ +
Use this domain for words indicating that something is low--in the air but not high above the ground.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est bas : pas très haut au-dessus du sol.
+
+
+ + + +
8.2.6.5
+
+ +
Use this domain for words related to being deep or shallow--how far something such as a hole extends below the ground or other surface, or how far something is below the surface of the water.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être profond ou peu profond : dans quelle mesure une chose telle qu’un trou s’enfonce-t-elle dans la terre ou dans une autre surface, ou à quel niveau une chose se situe-t-elle sous la surface de l’eau.
+
+
+ + + +
8.2.7
+
+ +
Use this domain for words referring to something fitting--when something is not too big or too small, but just right.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à quelque chose qui va bien : lorsque quelque chose n'est ni trop grand ni trop petit, mais juste à la bonne taille.
+
+
+ + + +
8.2.7.1
+
+ +
Use this domain for words referring to being tight--when something is too small.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au fait d'être serré : lorsque quelque chose est trop petit.
+
+
+ + + +
8.2.7.2
+
+ +
Use this domain for words referring to being loose--when something is too big.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être ample : lorsque quelque chose est trop grand.
+
+
+ + + +
8.2.7.3
+
+ +
Use this domain for words referring to being wedged in or stuck in a hole.
+
Classer dans ce champ lexical le vocabulaire qui désigne le fait d'être coincé ou bloqué dans un trou.
+
+
+ + + +
8.2.8
+
+ +
Use this domain for words related to measuring something--to find out the size, length, weight, or amount of something.
+
Classer dans ce champ lexical le vocabulaire associé à l'action de mesurer, de chercher à connaître la taille, la longueur, le poids, ou la quantité de quelque chose.
+
+
+ + + +
8.2.9
+
+ +
Use this domain for words related to weighing something.
+
Classer dans ce champ lexical le vocabulaire associé à l'action de peser.
+
+
+ + + +
8.2.9.1
+
+ +
Use this domain for words related to being heavy.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'être lourd.
+
+
+ + + +
8.2.9.2
+
+ +
Use this domain for words related to being light in weight.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'avoir un poids faible.
+
+
+ + + +
8.3
+
+ +
Use this domain for general words referring to the quality or condition of something.
+
Classer dans ce champ lexical les termes génériques qui font référence à la qualité ou à l'état de quelque chose.
+
+
+ + + +
8.3.1
+
+ +
Use this domain for general words referring to the shape of something, and for general words referring to changing the shape of something.
+
Classer dans ce champ lexical les termes génériques qui font référence à la forme de quelque chose, et ceux qui désignent le fait de modifier la forme de quelque chose.
+
+
+ + + +
8.3.1.1
+
+ +
Use this domain for words referring to a point--a small mark such as might be made by a pointed object.
+
Classer dans ce champ lexical les mots faisant référence à un point, une petite marque telle que celle que pourrait faire un objet pointu.
+
+
+ + + +
8.3.1.2
+
+ +
Use this domain for words referring to a line.
+
Classer dans ce champ lexical les mots faisant référence à une ligne.
+
+
+ + + +
8.3.1.3
+
+ +
Use this domain for words referring to being straight.
+
Classer dans ce champ lexical les mots désignant quelque chose de droit.
+
+
+ + + +
8.3.1.3.1
+
+ +
Use this domain for words describing something that is flat--having a surface that is even. A board or wall is flat when its surface is even and it does not bend.
+
Classer dans ce champ lexical le vocabulaire décrivant quelque chose de plat : qui a une surface lisse et qui n'est pas courbé.
+
+
+ + + +
8.3.1.4
+
+ +
Use this domain for words describing a horizontal orientation in relation to the ground or something that is level--a flat surface that does not rise in any direction. A person is horizontal when he is sleeping. A field is level when it is not on a hill and it has no uneven areas in it.
+
Classer dans ce champ lexical le vocabulaire décrivant quelqu’un ou quelque chose en position horizontale par rapport au sol ou à un niveau : une surface plane qui n’est pas inclinée. Une personne est en position horizontale lorsqu’elle dort. Un terrain est plat lorsqu’il n’est pas situé sur une colline et ne présente pas de bosses.
+
+
+ + + +
8.3.1.4.1
+
+ +
Use this domain for words describing a vertical orientation in relation to the ground. A person is vertical when he is standing.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un ou quelque chose en position verticale par rapport au sol. Une personne est en position verticale lorsqu’elle se tient debout.
+
+
+ + + +
8.3.1.4.2
+
+ +
Use this domain for words describing a leaning orientation in relation to the ground, or a surface that is sloping.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelqu’un ou quelque chose en position inclinée par rapport au sol ou une surface en pente.
+
+
+ + + +
8.3.1.5
+
+ +
Use this domain for words referring to bending something and for words that describe something that is bent or curved.
+
Classer dans ce champ lexical le vocabulaire qui est associé à une chose courbée ou que l’on courbe.
+
+
+ + + +
8.3.1.5.1
+
+ +
Use this domain for words referring to rolling something up.
+
Classer dans ce champ lexical le vocabulaire qui est associé au fait d’enrouler quelque chose.
+
+
+ + + +
8.3.1.5.2
+
+ +
Use this domain for words referring to twisting something--to take something long and turn one end one way and the other end the other way.
+
Classer dans ce champ lexical le vocabulaire qui est associé au fait de tordre quelque chose : prendre un objet en longueur et tourner une extrémité dans un sens et l’autre extrémité dans l’autre sens.
+
+
+ + + +
8.3.1.5.3
+
+ +
Use this domain for words referring to folding something.
+
Classer dans ce champ lexical le vocabulaire qui est associé au fait de plier quelque chose.
+
+
+ + + +
8.3.1.6
+
+ +
Use this domain for words referring to being round.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à quelque chose de rond.
+
+
+ + + +
8.3.1.6.1
+
+ +
Use this domain for words describing something that is concave--extending inward in shape away from the viewer. The inside of a bowl is concave in shape.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de concave : qui présente une surface courbe en creux. L’intérieur d’un bol est de forme concave.
+
+
+ + + +
8.3.1.6.2
+
+ +
Use this domain for words describing something that is convex--extending outward in shape toward the viewer.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de convexe : qui est saillant vers l’observateur.
+
+
+ + + +
8.3.1.6.3
+
+ +
Use this domain for words describing something that is hollow--empty on the inside.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de creux : vide à l’intérieur.
+
+
+ + + +
8.3.1.7
+
+ +
Use this domain for words referring to being square.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de carré.
+
+
+ + + +
8.3.1.8
+
+ +
Use this domain for words that refer to a pattern--a regular arrangement of shapes.
+
Classer dans ce champ lexical le vocabulaire associé à un modèle et à un motif : une disposition régulière de formes.
+
+
+ + + +
8.3.1.8.1
+
+ +
Use this domain for words that describe something that is symmetrical--having the same shape on both sides
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de symétrique : qui a la même forme des deux côtés.
+
+
+ + + +
8.3.1.9
+
+ +
Use this domain for words referring to stretching something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’étirer quelque chose.
+
+
+ + + +
8.3.2
+
+ +
Use this domain for general words referring to the texture of something--how the surface of something feels when you touch it.
+
Classer dans ce champ lexical les termes génériques associés à la texture de quelque chose, à la sensation éprouvée au contact d’une surface.
+
+
+ + + +
8.3.2.1
+
+ +
Use this domain for words referring to being smooth.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être doux.
+
+
+ + + +
8.3.2.2
+
+ +
Use this domain for words referring to being rough.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être rugueux.
+
+
+ + + +
8.3.2.3
+
+ +
Use this domain for words describing something that is sharp.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de tranchant.
+
+
+ + + +
8.3.2.3.1
+
+ +
Use this domain for words describing something that is pointed.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de pointu.
+
+
+ + + +
8.3.2.4
+
+ +
Use this domain for words describing something that is blunt.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’émoussé.
+
+
+ + + +
8.3.2.5
+
+ +
Use this domain for words related to a furrow--a long mark cut into the surface of something, such as the furrow made by a plow, or a long cut made by a knife.
+
Classer dans ce champ lexical le vocabulaire associé à une longue marque à la surface de quelque chose, comme le sillon creusé par une charrue, ou une longue incision faite par un couteau.
+
+
+ + + +
8.3.3
+
+ +
Use this domain for words related to light.
+
Classer dans ce champ lexical le vocabulaire associé à lumière.
+
+
+ + + +
8.3.3.1
+
+ +
Use this domain for words related to a light source shining--for something to make light.
+
Classer dans ce champ lexical le vocabulaire associé à une source de lumière qui brille.
+
+
+ + + +
8.3.3.1.1
+
+ +
Use this domain for words related to a source of light--something that makes or gives light.
+
Classer dans ce champ lexical le vocabulaire associé à une source de lumière : quelque chose qui produit ou donne de la lumière.
+
+
+ + + +
8.3.3.1.2
+
+ +
Use this domain for words describing something that is bright.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de lumineux.
+
+
+ + + +
8.3.3.2
+
+ +
Use this domain for words describing something that is dark--a place where there is little or no light.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de sombre : un lieu où il y a peu ou pas de lumière.
+
+
+ + + +
8.3.3.2.1
+
+ +
Use this domain for words related to a shadow--the area on the ground where the light does not shine because something is in the way. For instance if the sun +(or another light) is shining on an object, the area behind the object is in shadow (dark).
+
Classer dans ce champ lexical le vocabulaire associé à l’ombre : partie du sol sur laquelle il n’y a pas de lumière car quelque chose empêche la lumière de l’atteindre. Par exemple, si le soleil (ou tout autre lumière) éclaire un objet, la partie derrière cet objet est dans l’ombre.
+
+
+ + + +
8.3.3.3
+
+ +
Use this domain for words related to color.
+
Classer dans ce champ lexical le vocabulaire associé aux couleurs.
+
+
+ + + +
8.3.3.3.1
+
+ +
Use this domain for words describing something that is white.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de blanc.
+
+
+ + + +
8.3.3.3.2
+
+ +
Use this domain for words describing something that is black.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de noir.
+
+
+ + + +
8.3.3.3.3
+
+ +
Use this domain for words describing something that is gray.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de gris.
+
+
+ + + +
8.3.3.3.4
+
+ +
Use this domain for words describing something that is colored.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de coloré.
+
+
+ + + +
8.3.3.3.5
+
+ +
Use this domain for words related to animal colors and markings.
+
Classer dans ce champ lexical le vocabulaire associé à la couleur des animaux et à leurs taches.
+
+
+ + + +
8.3.3.3.6
+
+ +
Use this domain for words related to changing the color of something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de changer la couleur.
+
+
+ + + +
8.3.3.3.7
+
+ +
Use this domain for words describing something that is multicolored--having many different colors.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui est multicolore : qui a de nombreuses couleurs.
+
+
+ + + +
8.3.3.4
+
+ +
Use this domain for words that describe something that is shiny--when something gives back light because light is shining on it.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de brillant : lorsque quelque chose renvoie la lumière.
+
+
+ + + +
8.3.4
+
+ +
Use this domain for words describing something that is hot.
+
Classer dans ce champ lexical le vocabulaire décrivant ce qui est très chaud.
+
+
+ + + +
8.3.4.1
+
+ +
Use this domain for words describing something that is cold.
+
Classer dans ce champ lexical le vocabulaire décrivant quelque chose de froid.
+
+
+ + + +
8.3.5
+
+ +
Use this domain for words related to something being a type of thing, or that something belongs to a class of things.
+
Classer dans ce champ lexical le vocabulaire associé à une certaine catégorie ou à quelque chose qui en fait partie.
+
+
+ + + +
8.3.5.1
+
+ +
Use this domain for words related to the nature of character of something.
+
Classer dans ce champ lexical le vocabulaire associé à la nature ou au caractère de quelque chose.
+
+
+ + + +
8.3.5.2
+
+ +
Use this domain for words related to comparing something or someone with another thing.
+
Classer dans ce champ lexical le vocabulaire associé à la comparaison de quelque chose ou de quelqu’un avec une autre chose ou une autre personne.
+
+
+ + + +
8.3.5.2.1
+
+ +
Use this domain for words describing something that is the same thing as you just mentioned, or describing two things that are exactly the same.
+
Classer dans ce champ lexical le vocabulaire décrivant deux choses qui se ressemblent.
+
+
+ + + +
8.3.5.2.2
+
+ +
Use this domain for words describing two things or people that are similar, but not the same.
+
Classer dans ce champ lexical le vocabulaire décrivant deux choses ou personnes qui sont similaires, mais pas exactement les mêmes.
+
+
+ + + +
8.3.5.2.3
+
+ +
Use this domain for words describing two things that are different--not the same.
+
Classer dans ce champ lexical le vocabulaire qui décrit deux choses qui sont différentes : pas identiques.
+
+
+ + + +
8.3.5.2.4
+
+ +
Use this domain for words related to other, as in 'the other person', 'another thing'--a thing that is not the same as something that has been mentioned.
+
Classer dans ce champ lexical le vocabulaire associé au mot autre, tel que dans « l’autre personne », « une autre chose » : une chose qui n'est pas identique à celle déjà mentionnée.
+
+
+ + + +
8.3.5.2.5
+
+ +
Use this domain for words describing a group of things that are all different from each other.
+
Classer dans ce champ lexical les mots décrivant un groupe de choses qui sont toutes différentes les unes des autres.
+
+
+ + + +
8.3.5.2.6
+
+ +
Use this domain for words describing two things that are opposite.
+
Classer dans ce champ lexical le vocabulaire décrivant deux choses qui sont opposées.
+
+
+ + + +
8.3.5.3
+
+ +
Use this domain for words describing something that is common.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de commun.
+
+
+ + + +
8.3.5.3.1
+
+ +
Use this domain for words describing something that is usual.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’habituel.
+
+
+ + + +
8.3.5.3.2
+
+ +
Use this domain for words describing something that is unusual.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’inhabituel.
+
+
+ + + +
8.3.5.3.3
+
+ +
Use this domain for words describing something that is unique--not like anything else.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’unique : ce à quoi on ne peut rien comparer.
+
+
+ + + +
8.3.5.3.4
+
+ +
Use this domain for words describing something that is strange.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose d’étrange.
+
+
+ + + +
8.3.5.4
+
+ +
Use this domain for words related to a pattern or model.
+
Classer dans ce champ lexical le vocabulaire associé à un schéma ou à un modèle.
+
+
+ + + +
8.3.5.5
+
+ +
Use this domain for words related to imitating someone--to do things in the same way as another person.
+
Classer dans ce champ lexical le vocabulaire associé au fait d'imiter quelqu’un : agir de la même manière qu'une autre personne.
+
+
+ + + +
8.3.5.6
+
+ +
Use this domain for words related to copying something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de copier quelque chose.
+
+
+ + + +
8.3.6
+
+ +
Use this domain for words that mark the material out of which something has been made.
+
Classer dans ce champ lexical le vocabulaire associé à la matière utilisée pour faire quelque chose.
+
+
+ + + +
8.3.6.1
+
+ +
Use this domain for words that describe something that is strong--not easily broken.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de solide : qui se casse difficilement.
+
+
+ + + +
8.3.6.2
+
+ +
Use this domain for words that describe something that is hard--not easily cut, or broken.
+
Classer dans ce champ lexical les mots associés à quelque chose de dur : que l’on raye ou plie difficilement.
+
+
+ + + +
8.3.6.3
+
+ +
Use this domain for words that describe something that is stiff--not easy to bend.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de raide : difficile à plier.
+
+
+ + + +
8.3.6.4
+
+ +
Use this domain for words describing something that is dense.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de dense.
+
+
+ + + +
8.3.6.5
+
+ +
Use this domain for words describing something that is soft or flimsy.
+
Classer dans ce champ le vocabulaire associé à quelque chose de mou ou tendre.
+
+
+ + + +
8.3.7
+
+ +
Use this domain for words describing something that is good.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de bon, de beau ou de bien.
+
+
+ + + +
8.3.7.1
+
+ +
Use this domain for words describing something bad.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de mauvais.
+
+
+ + + +
8.3.7.2
+
+ +
Use this domain for words describing something that is better than something else.
+
Classer dans ce champ lexical le vocabulaire associé à une chose mieux qu’une autre.
+
+
+ + + +
8.3.7.2.1
+
+ +
Use this domain for words describing something that is worse than something else.
+
Classer dans ce champ lexical le vocabulaire associé à une chose plus mauvaise qu’une autre.
+
+
+ + + +
8.3.7.3
+
+ +
Use this domain for words describing something that is perfect.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de parfait.
+
+
+ + + +
8.3.7.4
+
+ +
Use this domain for words describing something that is mediocre.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de médiocre.
+
+
+ + + +
8.3.7.5
+
+ +
Use this domain for words describing something that is important.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose d’important.
+
+
+ + + +
8.3.7.5.1
+
+ +
Use this domain for words describing something that is basic.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose de fondamental.
+
+
+ + + +
8.3.7.6
+
+ +
Use this domain for words related to improving something--to make something better.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’améliorer une chose : la rendre meilleure.
+
+
+ + + +
8.3.7.7
+
+ +
Use this domain for words describing something, such as a tool or way of doing something, that is proper for a particular time, place, purpose, or job. The words in this domain involve a comparison between two things, an item and a setting. An evaluation is made as to how good the item is in the setting. The words may be used only of certain types of items, certain types of settings, or certain types of usefulness.
+
Classer dans ce champ lexical le vocabulaire qui décrit ce qui, tel un outil ou une manière de faire, est bon à un moment donné, pour un lieu, un but ou une tâche précis. Les mots de ce domaine comportent une comparaison entre deux choses, un élément et un contexte. Un jugement de valeur est porté sur l’adéquation de l’élément au contexte. Les mots peuvent n’être utilisés que pour certains types d’éléments, de contextes ou d’utilité.
+
+
+ + + +
8.3.7.7.1
+
+ +
Use this domain for words describing something, such as a tool or way of doing something, that is unsuitable for a particular time, place, purpose, or job.
+
Classer dans ce champ lexical le vocabulaire associé à ce qui, tel un outil ou une manière de faire, n’est pas souhaitable à un certain moment, dans un endroit donné, pour un but ou une tâche particulière.
+
+
+ + + +
8.3.7.7.2
+
+ +
Use this domain for words describing something that is convenient--a good time to do something.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui est pratique, bien à propos : un bon moment pour faire quelque chose.
+
+
+ + + +
8.3.7.7.3
+
+ +
Use this domain for words related to being compatible--words that describe two things or people that can be together or work together without problems or conflict.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être compatible : deux choses ou personnes vont ou travaillent bien ensemble, sans problème ni conflit.
+
+
+ + + +
8.3.7.8
+
+ +
Use this domain for words related to something decaying--when a living thing dies and becomes bad, or when a part of a living thing becomes bad.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui se décompose : lorsqu’une chose vivante meurt et se décompose, ou lorsqu’une partie d’une chose vivante pourrit.
+
+
+ + + +
8.3.7.8.1
+
+ +
Use this domain for words related to metal rusting--when metal becomes bad.
+
Classer dans ce champ lexical le vocabulaire associé à la rouille du métal : lorsqu'il se corrode.
+
+
+ + + +
8.3.7.8.2
+
+ +
Use this domain for words related to a blemish--something small and bad on the skin of a person or the surface of something, but not something serious, especially something wrong that does not affect how something works.
+
Classer dans ce champ lexical le vocabulaire associé à un défaut : quelque chose de petit et laid sur la peau d’une personne ou sur une surface, mais qui n’est pas grave, notamment quelque chose qui n’est pas bien mais n’affecte pas le fonctionnement.
+
+
+ + + +
8.3.7.8.3
+
+ +
Use this domain for words related to garbage--something that is no longer wanted.
+
Classer dans ce champ lexical le vocabulaire associé aux déchets : ce que l’on ne veut plus.
+
+
+ + + +
8.3.7.8.4
+
+ +
Use this domain for words related to preserving the condition of something from decay.
+
Classer dans ce champ lexical le vocabulaire associé au fait de préserver quelque chose de la décomposition.
+
+
+ + + +
8.3.7.9
+
+ +
Use this domain for words related to the value of something.
+
Classer dans ce champ lexical le vocabulaire associé à la valeur de quelque chose ?
+
+
+ + + +
8.3.8
+
+ +
Use this domain for words describing something that is decorated.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui est décoré.
+
+
+ + + +
8.3.8.1
+
+ +
Use this domain for words describing something that is simple or plain.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui est simple ou ordinaire.
+
+
+ + + +
8.3.8.2
+
+ +
Use this domain for words describing the appearance of something that has pleasing aspects or inspires awe and wonder in the viewer. For instance, the palace of a king, the home of a rich man, or a temple may be elaborately decorated and be described as glorious or magnificent. Or something in nature such as a sunset or flower may inspire awe and wonder.
+
Classer dans ce champ lexical le vocabulaire qui décrit l’apparence de quelque chose ayant des aspects attrayants, agréables, ou inspirant respect et émerveillement chez le spectateur. Par exemple le palais d’un roi, la maison d’un homme riche, ou un temple qui peut être minutieusement décoré et décrit comme splendide et magnifique. Ou quelque chose dans la nature comme un coucher de soleil ou une fleur qui peut inspirer la stupéfaction et l’émerveillement.
+
+
+ + + +
8.4
+
+ +
Use this domain for general words related to time, and for words indicating the temporal location of an event.
+
Classer dans ce champ lexical les termes génériques associés au temps, et les mots ou expressions qui indiquent la localisation temporelle d’un événement.
+
+
+ + + +
8.4.1
+
+ +
Use this domain for words referring to a period of time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une période de temps.
+
+
+ + + +
8.4.1.1
+
+ +
Use this domain for words related to the calendar.
+
Classer dans ce champ lexical le vocabulaire associé au calendrier.
+
+
+ + + +
8.4.1.2
+
+ +
Use this domain for words referring to a day.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un jour.
+
+
+ + + +
8.4.1.2.1
+
+ +
Use this domain for words referring to night.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la nuit.
+
+
+ + + +
8.4.1.2.2
+
+ +
Use this domain for words referring to days relative to each other.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des jours les uns par rapport aux autres.
+
+
+ + + +
8.4.1.2.3
+
+ +
Use this domain for words referring to a time of the day.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une période de temps de la journée.
+
+
+ + + +
8.4.1.3
+
+ +
Use this domain for words related to a week.
+
Classer dans ce champ lexical le vocabulaire associé à une semaine.
+
+
+ + + +
8.4.1.3.1
+
+ +
Use this domain for words referring to the days of the week.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux jours de la semaine.
+
+
+ + + +
8.4.1.4
+
+ +
Use this domain for words referring to a month.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un mois.
+
+
+ + + +
8.4.1.4.1
+
+ +
Use this domain for words referring to the months of the year.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux mois de l’année.
+
+
+ + + +
8.4.1.5
+
+ +
Use this domain for words referring to seasons of the year that are related to the time of year, the weather, or times of cultivation.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux saisons, en fonction de leur place dans l’année, des périodes de culture et du temps qu’il fait.
+
+
+ + + +
8.4.1.6
+
+ +
Use this domain for words referring to a year.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une année.
+
+
+ + + +
8.4.1.7
+
+ +
Use this domain for words referring to an era--a very long period of time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une ère : une très longue période de temps.
+
+
+ + + +
8.4.1.8
+
+ +
Use this domain for words referring to a special day.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un jour particulier.
+
+
+ + + +
8.4.2
+
+ +
Use this domain for words referring to taking time to do something.
+
Classer dans ce champ lexical le vocabulaire associé au fait de prendre le temps de faire quelque chose.
+
+
+ + + +
8.4.2.1
+
+ +
Use this domain for words referring to a short time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une courte durée.
+
+
+ + + +
8.4.2.2
+
+ +
Use this domain for words referring to a long time.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une longue durée.
+
+
+ + + +
8.4.2.3
+
+ +
Use this domain for words referring to something happening forever.
+
Classer dans ce champ lexical le vocabulaire associé à quelque chose qui dure toujours.
+
+
+ + + +
8.4.2.4
+
+ +
Use this domain for words referring to something being temporary.
+
Classer dans ce champ lexical le vocabulaire qui qualifie quelque chose de temporaire.
+
+
+ + + +
8.4.3
+
+ +
Use this domain for words referring to an indefinite time.
+
Classer dans ce champ lexical le vocabulaire qui désigne un moment non précisé.
+
+
+ + + +
8.4.4
+
+ +
Use this domain for words related to telling time.
+
Classer dans ce champ lexical le vocabulaire associé à l’expression du temps.
+
+
+ + + +
8.4.4.1
+
+ +
Use this domain for words referring to planning the time of an event.
+
Classer dans ce champ lexical les mots associés au fait de planifier la durée et la date d’un événement.
+
+
+ + + +
8.4.4.2
+
+ +
Use this domain for machines that indicate what time it is.
+
Classer dans ce champ lexical ce qui sert à indiquer l’heure qu’il est.
+
+
+ + + +
8.4.5
+
+ +
Use the domains in this section for words that relate one time to another. Use this domain for words that indicate a temporal relation between situations.
+
Classer dans les champs lexicaux de cette partie les mots qui indiquent un moment par rapport à un autre, ainsi que des mots qui indiquent une relation temporelle entre des situations.
+
+
+ + + +
8.4.5.1
+
+ +
Use this domain for words referring to temporal order or sequence--the order in which a group of events happen. Things and people may also be in order based on the order in which something happened or should happen to them.
+
Classer dans ce champ lexical les mots associés à l’ordre temporel ou à une succession : l’ordre dans lequel une suite d’évènements se produit. Les choses et les personnes peuvent aussi être dans l'ordre dans lequel quelque chose est arrivé ou pourrait leur arriver.
+
+
+ + + +
8.4.5.1.1
+
+ +
Use this domain for words related to a series--several things that happen one after another.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec une série : plusieurs évènements se succédant chronologiquement.
+
+
+ + + +
8.4.5.1.2
+
+ +
Use this domain for words referring to something happening first--to be before all other things in order or time.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose qui se produit en premier : qui est devant toutes les autres choses en ordre ou en temps.
+
+
+ + + +
8.4.5.1.3
+
+ +
Use this domain for words referring to something happening next.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose qui se produit ensuite.
+
+
+ + + +
8.4.5.1.4
+
+ +
Use this domain for words referring to something happening last--to happen after all other things in a sequence, or to be the last person or thing in a sequence.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose se produisant en dernier :qui se produit à la fin d’une série de choses ou qui est la dernière personne ou chose d’une succession.
+
+
+ + + +
8.4.5.1.5
+
+ +
Use this domain for words referring to something that happens regularly.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à des choses qui se produisent régulièrement.
+
+
+ + + +
8.4.5.1.6
+
+ +
Use this domain for words related to alternating--when several things happen one after another in a repeated pattern.
+
Classer dans ce champ lexical les mots ou expressions en rapport avec l’alternance : plusieurs choses arrivent les unes à la suite des autres selon un même ordre.
+
+
+ + + +
8.4.5.2
+
+ +
Use this domain for words referring to one event happening before another.
+
Classer dans ce champ lexical le vocabulaire associé à un événement se produisant avant un autre.
+
+
+ + + +
8.4.5.2.1
+
+ +
Use this domain for words referring to one event happening after another.
+
Classer dans ce champ lexical le vocabulaire relatif à un événement qui se produit après un autre.
+
+
+ + + +
8.4.5.2.2
+
+ +
Use this domain for words referring to two things happening at the same time.
+
Classer dans ce champ lexical le vocabulaire qui est associé à deux choses qui se produisent au même moment.
+
+
+ + + +
8.4.5.2.3
+
+ +
Use this domain for words indicating that something happened during some time period, or that something happened while something else was happening.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est arrivé dans une certaine période ou bien s’est produit pendant qu’autre chose se produisait.
+
+
+ + + +
8.4.5.3
+
+ +
Use this domain for words referring to the right time to do something.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au bon moment pour faire quelque chose.
+
+
+ + + +
8.4.5.3.1
+
+ +
Use this domain for words that indicate that something happens early--before the expected time, before the usual time, or before the time that was agreed on. Some words may include the idea that it is good that the event happened early. Other words may include the idea that it is bad that the event happened early.
+
Utiliser ce champ lexical pour le vocabulaire qui décrit quelque chose qui se produit tôt : avant le moment voulu, avant l’heure habituelle, ou avant l’heure ou le moment convenu. Certains mots comportent l'idée que c’est une bonne chose que cela se produise tôt. D’autres mots comportent l’idée que c’est une mauvaise chose que cela se produise tôt.
+
+
+ + + +
8.4.5.3.2
+
+ +
Use this domain for words describing something happening on time--at the expected time, at the usual time, or at the time that was agreed on.
+
Classer dans ce champ le vocabulaire qui décrit quelque chose qui se produit à l’heure : au moment attendu, à l’heure habituelle, ou à l’heure ou au moment convenu.
+
+
+ + + +
8.4.5.3.3
+
+ +
Use this domain for words describing something happening late--after the expected time, after the usual time, or after the time that was agreed on.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose qui se produit tardivement : après le moment voulu, après l’heure habituelle, ou après le moment convenu.
+
+
+ + + +
8.4.5.3.4
+
+ +
Use this domain for words referring to something delaying someone or something--to cause something to happen at a later time, cause someone to do something at a later time, or cause someone or something to be late.
+
Classer dans ce champ lexical le vocabulaire qui désigne quelque chose qui retarde une personne ou une action : elle est remise à plus tard parce que quelqu’un a fait quelque chose trop tard, ou parce que quelqu’un ou quelque chose a été retardé.
+
+
+ + + +
8.4.5.3.5
+
+ +
Use this domain for words referring to postponing something--to decide to do something later.
+
Classer dans ce champ lexical le vocabulaire qui est associé au report de quelque chose : décision de faire quelque chose plus tard.
+
+
+ + + +
8.4.6
+
+ +
Use this domain for words referring to a time period that is part of a longer time period.
+
Classer dans ce champ lexical le vocabulaire en rapport avec une période se trouvant dans une période plus longue.
+
+
+ + + +
8.4.6.1
+
+ +
Use this domain for words referring to starting something, or for something beginning to happen.
+
Classer dans ce champ lexical le vocabulaire désignant le début de quelque chose, ou quelque chose qui est sur le point d’arriver.
+
+
+ + + +
8.4.6.1.1
+
+ +
Use this domain for words referring to something beginning to happen, to beginning to do something, to cause something to start happening, or to cause people to start doing something.
+
Classer dans ce champ lexical les mots ou expressions qui désignent quelque chose qui vient juste de commencer, le début d’une action, ce qui fait commencer quelque chose, ou pousse des personnes à débuter quelque chose.
+
+
+ + + +
8.4.6.1.2
+
+ +
Use this domain for words related to the end of an action or situation.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la fin d’une action ou d’une situation.
+
+
+ + + +
8.4.6.1.3
+
+ +
Use this domain for words referring to the end of an action or situation.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à la fin d’une action ou d’une situation.
+
+
+ + + +
8.4.6.1.4
+
+ +
Use this domain for words that indicate that something will continue to happen until a particular time or until something else happens, and then it will stop.
+
Classer dans ce champ lexical le vocabulaire indiquant que quelque chose va continuer jusqu'à un moment donné ou jusqu’à ce qu’un autre évènement se produise, et qu'alors il s'arrêtera. En français, un tiret indique à l’écrit que quelque chose se produit de tel moment à tel autre, par exemple 8h00 – 10h00 ou « lundi – vendredi »
+
+
+ + + +
8.4.6.1.5
+
+ +
Use this domain for words that indicate that something will start to happen at some time and continue for some time.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose commencera à un moment donné et durera un certain temps.
+
+
+ + + +
8.4.6.2
+
+ +
Use this domain for words referring to the past or to a time in the past.
+
Classer dans ce champ lexical le vocabulaire en rapport avec le passé ou avec un moment du passé.
+
+
+ + + +
8.4.6.2.1
+
+ +
Use this domain for words indicating that something happened recently--a short time before now.
+
Classer dans ce champ lexical le vocabulaire se rapportant à un moment qui a eu lieu récemment : il y a peu de temps.
+
+
+ + + +
8.4.6.3
+
+ +
Use this domain for words referring to the present time.
+
Classer dans ce champ lexical le vocabulaire en rapport avec le temps présent.
+
+
+ + + +
8.4.6.3.1
+
+ +
Use this domain for words referring to now.
+
Classer dans ce champ lexical le vocabulaire se rapportant à l’instant présent.
+
+
+ + + +
8.4.6.4
+
+ +
Use this domain for words referring to the future.
+
Classer dans ce champ lexical le vocabulaire en rapport avec le futur.
+
+
+ + + +
8.4.6.4.1
+
+ +
Use this domain for words referring to something happening soon.
+
Classer dans ce champ lexical le vocabulaire désignant quelque chose qui est sur le point d’arriver.
+
+
+ + + +
8.4.6.4.2
+
+ +
Use this domain for words referring to something not happening yet.
+
Classer dans ce champ lexical le vocabulaire se rapportant à des évènements qui ne se sont pas encore passés.
+
+
+ + + +
8.4.6.4.3
+
+ +
Use this domain for words referring to something happening eventually.
+
Classer dans ce champ lexical le vocabulaire en rapport avec quelque chose qui finira par arriver.
+
+
+ + + +
8.4.6.4.4
+
+ +
Use this domain for words referring to something happening immediately--without any time passing before it happens.
+
Classer dans ce champ lexical le vocabulaire se rapportant à un évènement arrivant immédiatement : sans aucun délai.
+
+
+ + + +
8.4.6.5
+
+ +
Use this domain for words referring to the age of something.
+
Classer dans ce champ lexical les termes se rapportant à l’âge de quelque chose.
+
+
+ + + +
8.4.6.5.1
+
+ +
Use this domain for words describing something young--a word describing a living thing that has only existed for a short time.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de jeune : qui n'existe que depuis peu.
+
+
+ + + +
8.4.6.5.2
+
+ +
Use this domain for words describing something old--a word describing a living thing that has existed for a long time.
+
Classer dans ce champ lexical le vocabulaire qui décrit un être vivant âgé : qui existe depuis longtemps.
+
+
+ + + +
8.4.6.5.3
+
+ +
Use this domain for words describing something new--a word describing something that has only existed for a short time.
+
Classer dans ce champ lexical les mots ou expressions qui décrivent quelque chose de nouveau : qui n’existe que depuis peu.
+
+
+ + + +
8.4.6.5.4
+
+ +
Use this domain for words describing something old--a word describing something that has existed for a long time.
+
Classer dans ce champ lexical les mots ou expressions désignant quelque chose de vieux ou d’ancien : qui existe depuis long temps.
+
+
+ + + +
8.4.6.5.5
+
+ +
Use this domain for words describing something modern--a word that describes something like a machine, system, or country that uses the most recent equipment, ideas, and methods.
+
Classer dans ce champ lexical le vocabulaire qui décrit quelque chose de moderne : une machine, un système ou un pays qui utilise des pièces, fait appel aux idées ou aux méthodes les plus récentes.
+
+
+ + + +
8.4.6.5.6
+
+ +
Use this domain for words describing something old fashioned--something that was done or used in the past, but not done or used now.
+
Classer dans ce champ lexical les mots et expressions décrivant des objets fabriqués autrefois ou des manières d’être en usage dans le passé mais qui ne le sont plus aujourd’hui.
+
+
+ + + +
8.4.6.6
+
+ +
Use this domain for words referring to something happening once.
+
Classer dans ce champ lexical les mots ou expressions faisant référence à ce qui arrive une fois.
+
+
+ + + +
8.4.6.6.1
+
+ +
Use this domain for words referring to something happening again or doing something again.
+
Classer dans ce champ lexical les mots ou expressions se rapportant à un fait qui s’est répété.
+
+
+ + + +
8.4.6.6.2
+
+ +
Use this domain for words referring to something happening sometimes.
+
Classer dans ce champ lexical le vocabulaire faisant référence à quelque chose qui se produit parfois.
+
+
+ + + +
8.4.6.6.3
+
+ +
Use this domain for words referring to something happening often--happening or done many times.
+
Classer dans ce champ lexical le vocabulaire se rapportant à des faits se produisant souvent : qui se passe ou est fait de nombreuses fois.
+
+
+ + + +
8.4.6.6.4
+
+ +
Use this domain for words referring to something happening all the time.
+
Classer dans ce champ lexical le vocabulaire se rapportant à un fait qui se produit tout le temps.
+
+
+ + + +
8.4.6.6.5
+
+ +
Use this domain for words referring to something happening every time something else happens.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se produit chaque fois qu’une autre a lieu.
+
+
+ + + +
8.4.6.6.6
+
+ +
Use this domain for words that indicate that something that never happens, or that something has not once happened.
+
Classer dans ce champ lexical le vocabulaire qui se réfère à quelque chose qui ne se produit jamais ou qui ne s’est jamais produit une seule fois.
+
+
+ + + +
8.4.7
+
+ +
Use this domain for words referring to continuing to do something.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte au fait de continuer à faire quelque chose.
+
+
+ + + +
8.4.7.1
+
+ +
Use this domain for words referring to interrupting someone--speaking when someone is speaking, or doing something to stop someone from doing what they are doing.
+
Classer dans ce champ lexical le vocabulaire associé à l’action d’interrompre quelqu’un, de parler pendant que quelqu’un parle, ou de faire quelque chose afin d’empêcher la poursuite d'une activité.
+
+
+ + + +
8.4.7.2
+
+ +
Use this domain for words referring to starting to do something after stopping for some time.
+
Classer dans ce champ lexical le vocabulaire qui signifie recommencer à faire quelque chose qui avait été arrêté un moment.
+
+
+ + + +
8.4.7.3
+
+ +
Use this domain for words referring to an interval between two events.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte à l’intervalle entre deux évènements.
+
+
+ + + +
8.4.8
+
+ +
Use this domain for words referring to the speed at which a person acts or the speed at which something happens.
+
Classer dans ce champ lexical le vocabulaire qui désigne la vitesse à laquelle une personne agit ou la vitesse à laquelle quelque chose se passe.
+
+
+ + + +
8.4.8.1
+
+ +
Use this domain for words referring to doing something at a quick speed or something happening quickly.
+
Classer dans ce champ lexical le vocabulaire qui désigne l’action de faire quelque chose vite ou le fait que quelque chose se passe rapidement.
+
+
+ + + +
8.4.8.2
+
+ +
Use this domain for words referring to doing something at a slow speed.
+
Classer dans ce champ lexical le vocabulaire associé à l’action de faire quelque chose lentement.
+
+
+ + + +
8.4.8.3
+
+ +
Use this domain for words referring to a sudden event--something happens that I don't expect.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un évènement soudain, à quelque chose d’inattendu qui se passe.
+
+
+ + + +
8.5
+
+ +
Use this domain for words that refer to the place where something is located and for words indicating the location of something.
+
Classer dans ce champ lexical le vocabulaire qui désigne l’endroit où se trouve quelque chose, et celui qui indique la localisation de quelque chose.
+
+
+ + + +
8.5.1
+
+ +
Use this domain for words that refer to a place in relation to the speaker or listener.
+
Classer dans ce champ lexical le vocabulaire qui désigne un endroit par rapport à la personne qui parle ou qui écoute.
+
+
+ + + +
8.5.1.1
+
+ +
Use this domain for words referring to being in front of you.
+
Classer dans ce champ lexical le vocabulaire qui désigne ce qui est devant soi.
+
+
+ + + +
8.5.1.1.1
+
+ +
Use this domain for words indicating that something is behind you.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est derrière soi.
+
+
+ + + +
8.5.1.2
+
+ +
Use this domain for words that indicate that something is to the side of someone.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est à côté de quelqu’un.
+
+
+ + + +
8.5.1.2.1
+
+ +
Use this domain for words indicating that something is around something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est autour d’une autre ?
+
+
+ + + +
8.5.1.2.2
+
+ +
Use this domain for words indicating that something is between two other things.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose se trouve entre deux.
+
+
+ + + +
8.5.1.3
+
+ +
Use this domain for words indicating that something is on another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve sur autre chose.
+
+
+ + + +
8.5.1.3.1
+
+ +
Use this domain for words that express the idea that something is above another thing. The concept 'above' is inherently relational, expressing the relative positions of two things.
+
Classer dans ce champ lexical le vocabulaire exprimant l’idée qu’une chose se trouve au-dessus d’une autre. Le concept « dessus » est, par nature, relatif car il exprime les positions relatives de deux choses.
+
+
+ + + +
8.5.1.3.2
+
+ +
Use this domain for words that express the idea that something is under another thing. The concept 'under' is inherently relational, expressing the relative positions of two things.
+
Classer dans ce champ lexical le vocabulaire exprimant l’idée que quelque chose se trouve sous autre chose. Le concept « sous » est, par nature, relatif car il exprime les positions relatives de deux choses.
+
+
+ + + +
8.5.1.4
+
+ +
Use this domain for words indicating that something is outside something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve à l’intérieur d’autre chose.
+
+
+ + + +
8.5.1.4.1
+
+ +
Use this domain for words indicating that something is outside of another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve à l’extérieur d’autre chose.
+
+
+ + + +
8.5.1.5
+
+ +
Use this domain for words indicating that two things are touching or in contact with each other.
+
Classer dans ce champ lexical le vocabulaire qui indique que deux choses se touchent ou sont en contact entre elles.
+
+
+ + + +
8.5.1.5.1
+
+ +
Use this domain for words indicating that something is next to something else.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose est près d’autre chose.
+
+
+ + + +
8.5.1.6
+
+ +
Use this domain for words that refer to a place on another side of something from the reference point. 'Across' involves three things--the object, the reference point, and something else in between the two.
+
Classer dans ce champ lexical le vocabulaire qui désigne un endroit se trouvant de l’autre côté de quelque chose vu d’un point de référence. « De l’autre côté » implique trois choses : l’objet, le point de référence et autre chose entre les deux points.
+
+
+ + + +
8.5.1.7
+
+ +
Use this domain for words indicating that something is at an indefinite location.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose se trouve à un endroit indéterminé.
+
+
+ + + +
8.5.2
+
+ +
Use this domain for general words referring to a direction.
+
Classer dans ce champ lexical les termes génériques qui font référence à une direction.
+
+
+ + + +
8.5.2.1
+
+ +
Use this domain for words indicating a forward direction.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction vers l’avant.
+
+
+ + + +
8.5.2.2
+
+ +
Use this domain for words indicating a backward direction.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction vers l’arrière.
+
+
+ + + +
8.5.2.3
+
+ +
Use this domain for words referring to right and left.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la droite ou à la gauche.
+
+
+ + + +
8.5.2.4
+
+ +
Use this domain for words referring to the direction up.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la direction vers le haut.
+
+
+ + + +
8.5.2.5
+
+ +
Use this domain for words referring to the direction down.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la direction vers le bas.
+
+
+ + + +
8.5.2.6
+
+ +
Use this domain for words indicating a direction away from something.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction s’écartant de quelque chose.
+
+
+ + + +
8.5.2.7
+
+ +
Use this domain for words indicating a direction toward something.
+
Classer dans ce champ lexical le vocabulaire qui indique une direction vers quelque chose.
+
+
+ + + +
8.5.2.8
+
+ +
Use this domain for words referring to the directions of the compass.
+
Classer dans ce champ lexical le vocabulaire qui fait référence aux directions de la boussole.
+
+
+ + + +
8.5.3
+
+ +
Use this domain for words related to being at a place.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être à un endroit.
+
+
+ + + +
8.5.3.1
+
+ +
Use this domain for words related to being absent--to not be in a particular place, or not be in the correct or expected place.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être absent : ne pas être dans un endroit particulier, ne pas être à la bonne place, ne pas être à l’endroit prévu ou attendu.
+
+
+ + + +
8.5.4
+
+ +
Use this domain for words referring to an area.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une région.
+
+
+ + + +
8.5.4.1
+
+ +
Use this domain for words related to a vicinity--an area around something else.
+
Classer dans ce champ lexical le vocabulaire associé à un voisinage : une zone autour de quelque chose.
+
+
+ + + +
8.5.4.2
+
+ +
Use this domain for words related to occupying an area.
+
Classer dans ce champ lexical le vocabulaire associé à l’occupation d’une surface.
+
+
+ + + +
8.5.4.3
+
+ +
Use this domain for words referring to the amount of empty space that is available to be used.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à la quantité d’espace libre qui peut être utilisé.
+
+
+ + + +
8.5.4.4
+
+ +
Use this domain for words related to an interval or space between things.
+
Classer dans ce champ lexical le vocabulaire associé à un intervalle ou à l’espace entre des choses.
+
+
+ + + +
8.5.5
+
+ +
Use this domain for words that indicate a spatial relation between situations.
+
Classer dans ce champ lexical le vocabulaire qui indique une relation spatiale entre des situations.
+
+
+ + + +
8.5.6
+
+ +
Use this domain for words that express the idea that something contains something.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de contenir quelque chose.
+
+
+ + + +
8.6
+
+ +
Use this domain for words that refer to a part of something. These words are often based on the parts of a person's body.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à une partie de quelque chose. Ces mots ou expressions tirent souvent leur origine de parties du corps humain.
+
+
+ + + +
8.6.1
+
+ +
Use this domain for words related to the front part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie avant de quelque chose.
+
+
+ + + +
8.6.1.1
+
+ +
Use this domain for words related to the back part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie arrière de quelque chose.
+
+
+ + + +
8.6.2
+
+ +
Use this domain for words related to the top part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie du haut de quelque chose.
+
+
+ + + +
8.6.2.1
+
+ +
Use this domain for words related to the bottom part of something.
+
Classer dans ce champ lexical les mots liés à la partie inférieure de quelque chose.
+
+
+ + + +
8.6.3
+
+ +
Use this domain for words related to the side part of something.
+
Classer dans ce champ lexical le vocabulaire lié au côté de quelque chose.
+
+
+ + + +
8.6.4
+
+ +
Use this domain for words related to the inside part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie intérieure de quelque chose.
+
+
+ + + +
8.6.4.1
+
+ +
Use this domain for words related to the outside or surface part of something.
+
Classer dans ce champ lexical le vocabulaire lié à la partie exnérieure ou à la surface de quelque chose.
+
+
+ + + +
8.6.5
+
+ +
Use this domain for words related to the middle part or center of something.
+
Classer dans ce champ lexical les mots liés à la partie du milieu de quelque chose.
+
+
+ + + +
8.6.6
+
+ +
Use this domain for words related to the edge of something--the part of something where two sides come together.
+
Classer dans ce champ lexical le vocabulaire en lien avec le bord de quelque chose : la partie où deux côtés se rejoignent.
+
+
+ + + +
8.6.7
+
+ +
Use this domain for words related to the end of something.
+
Classer dans ce champ lexical le vocabulaire relatif à la fin de quelque chose.
+
+
+ + + +
9
+
+ +
Use this domain for technical linguistic terms that refer to grammatical words and constructions. Most languages have few if any words in this domain.
+
Classer dans ce champ lexical les termes linguistiques techniques qui font référence aux termes et constructions grammaticales. La plupart des langues ont très peu de mots, voire aucun, dans ce champ lexical.
+
+
+ + + +
9.1
+
+ +
Use the following section for words that don't belong in any other domain because they are so general in meaning that you can use them to talk about any topic. Use this domain for general and indefinite words that can be used in the place of any word. Some languages have a general word that can replace a noun or a verb. For instance some Philippine languages use the word 'kwan' in this way. Colloquial German can use the word 'dings' as a noun or verb. Often these words are used when you can't remember the particular word you are trying to think of. In English we use the word 'blank' when we don't want to say a word, for instance when we are testing someone and want them to say the word.
+
Utiliser la section suivante pour les termes qui n'appartiennent à aucun autre champ lexical parce que leur signification est si générique qu’on peut les utiliser pour parler de n'importe quel sujet. Utiliser ce champ lexical pour les termes génériques et indéfinis qu’on peut utiliser à la place de n'importe quel terme. Certaines langues possèdent un terme générique qui peut remplacer un nom ou un verbe. Par exemple, certaines langues des Philippines utilisent le terme « kwan » de cette manière. L'allemand familier peut utiliser le terme 'dings' comme nom ou comme verbe. Ces termes sont souvent utilisés lorsque l'on ne se souvient pas du terme particulier que l’on cherche. En anglais, on utilise le terme « blank' » lorsque l'on ne veut pas dire un mot, par exemple lorsque l'on essaie de mettre quelqu’un à l’épreuve et que l'on veut lui faire dire ce mot.
+
+
+ + + +
9.1.1
+
+ +
Many languages have general words that indicate some kind of state. These general words may be used with a wide variety of specific meanings. For instance in English the word 'be' may be used to identify something, describe something, and many other ideas.
+
De nombreuses langues ont des termes génériques qui indiquent un certain type d'état. Ces termes génériques peuvent être utilisés avec une grande variété de sens précis. Par exemple, en français, on peut utiliser le mot « être » pour identifier quelque chose, décrire quelque chose, et pour nombreuses autres notions.
+
+
+ + + +
9.1.1.1
+
+ +
Use this domain for words indicating that something exists.
+
Classer dans ce champ lexical les mots ou expressions indiquant que quelque chose existe.
+
+
+ + + +
9.1.1.2
+
+ +
Many languages have general words that indicate some kind of change of state. These general words may be used with a wide variety of specific meanings. For instance in English the word 'become' may be used to a change in identity, a change in characteristic, a change in nature, and many other ideas.
+
De nombreuses langues ont des termes génériques qui indiquent un certain type de changement d'état. Ces termes génériques peuvent être utilisés avec une grande variété de sens précis. Par exemple, en français, on peut utiliser le terme « devenir » pour un changement d'identité, un changement de caractéristiques, un changement de nature, et de nombreuses autres idées.
+
+
+ + + +
9.1.1.3
+
+ +
Many languages have several general words that are used to indicate a variety of relationships between two things. There are three such words in English: +"have," "of," and the possessive suffix "-'s." The basic meaning of these words in English is 'to own', but they can mean many other things too. For instance they can mean that I am related to someone (I have a brother), something has a part (birds have wings), and many other ideas. There is also a set of pronouns in English that are like nouns ending in -'s (my/mine, your/yours, his, her/hers, its, our/ours, their/theirs, whose). Use this domain for these general words.
+
De nombreuses langues utilisent plusieurs termes génériques pour indiquer une variété de relations entre deux choses. Il existe deux termes en anglais : "avoir" et "de". Le sens de base de ces termes en français est « posséder », mais ils peuvent également signifier de nombreuses autres choses. Par exemple, ils peuvent signifier que je suis lié à quelqu'un (j'ai un frère), que quelque chose comporte une partie (les oiseaux ont des ailes), et de nombreuses autres notions. Il existe aussi en français des pronoms ou adjectifs qui marquent la possession (mon ou le mien, ton ou le tien, votre ou le vôtre, son ou le sien, sa ou la sienne, notre ou le nôtre, leur ou le leur) et leurs féminins et pluriels respectifs. Utiliser ce champ lexical pour ces termes génériques.
+
+
+ + + +
9.1.1.4
+
+ +
Attributes often belong to a class of attributes (shape = straight, curved) or to a scale (length = long, short). The class or scale can sometimes be included in the expression, but does not mark the proposition itself. (The towel <feels> damp. The box <weighs> five kilos.)
+
Les qualificatifs appartiennent souvent à une catégorie (forme = droit, courbé) ou à une échelle (longueur = long, court). Cette catégorie ou cette échelle se trouve parfois contenue dans l'expression, mais ne marque pas la proposition elle-même. (La serviette <est> humide. Cette boite <pèse> 5 kg).
+
+
+ + + +
9.1.2
+
+ +
Use this domain for general verbs with a volitional subject (agent).
+
Classer dans ce champ lexical les verbes génériques avec un sujet (agent) volitif.
+
+
+ + + +
9.1.2.1
+
+ +
Use this domain for non-volitional pro-verbs.
+
Classer dans ce champ lexical les pro-verbes non-volitifs.
+
+
+ + + +
9.1.2.2
+
+ +
Use this domain for words referring to reacting or responding to something.
+
Classer dans ce champ lexical les termes qui signifient réagir ou répondre à quelque chose.
+
+
+ + + +
9.1.2.3
+
+ +
Use this domain for words referring to creating something--causing something to be that did not exist before.
+
Classer dans ce champ lexical les termes qui désignent le fait de créer quelque chose : une chose, qui n’existait pas auparavant, existe.
+
+
+ + + +
9.1.2.4
+
+ +
Use this domain for words referring to designing something--to decide and plan how something new will look and work.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de concevoir quelque chose, de décider de son apparence et de son fonctionnement.
+
+
+ + + +
9.1.2.5
+
+ +
Use this domain for words referring to making something--joining things together to create something to be that did not exist before.
+
Classer dans ce champ lexical les mots ou expressions qui font référence au fait de fabriquer quelque chose, au fait de réunir des choses pour créer quelque chose qui n’existait pas auparavant.
+
+
+ + + +
9.1.2.6
+
+ +
Use this domain for words referring to someone changing something.
+
Classer dans ce champ lexical les termes qui font référence à quelqu’un qui change quelque chose.
+
+
+ + + +
9.1.2.7
+
+ +
Use this domain for words that indicate event propositions. Event propositions are similar in that they are normally expressed by a subject and a verb, possibly including an object, indirect object, or complement clause. However there are multiple ways in which a language can express an event, such as a passive construction, noun phrase, or subordinate clause. In addition each event type is different in its primary cases, and in the ways those cases are marked. Each event type has subtypes, such as intransitive, transitive, and bitransitive verbs. A great deal of research is needed in order to identify all the variations. Ultimately every verb must be investigated to determine how it behaves in each syntactic construction and how its case relations are marked. No two verbs are entirely alike.
+
Classer dans ce champ lexical les mots indiquant des propositions factuelles. Celles-ci ont en commun qu’elles sont exprimées en général par un sujet et un verbe, voire un complément d’objet, un complément d’objet indirect ou une proposition complétive. Il existe toutefois de multiples façons dont une langue peut exprimer un fait, par exemple, une construction passive, un groupe nominal, ou une proposition subordonnée. En outre, chaque type de proposition factuelle diffère dans ses cas primaires et par la façon dont les cas sont marqués. Chaque type de proposition factuelle a des sous-types, tels que les verbes intransitifs, transitifs ou transitifs doubles. Il est nécessaire de faire des recherches pour identifier toutes ces variantes. Enfin, il faut étudier chaque verbe pour savoir comment il fonctionne dans chaque construction syntaxique et comment les fonctions des mots sont indiquées. Il n’y a pas deux verbes parfaitement identiques.
+
+
+ + + +
9.1.3
+
+ +
Use this domain for general words referring to things.
+
Classer dans ce champ lexical les termes génériques qui font référence à des choses.
+
+
+ + + +
9.1.3.1
+
+ +
Use this domain for words describing something that is physical--that you can touch and see, and for words describing something that is non-physical--that you cannot touch or see.
+
Classer dans ce champ lexical les termes décrivant quelque chose de physique (que l’on peut toucher et voir), et les termes décrivant quelque chose qui n’est pas physique (que l’on ne peut ni toucher ni voir).
+
+
+ + + +
9.1.3.2
+
+ +
Use this domain for words referring to a situation--a particular time and place, and the things that are true about it.
+
Classer dans ce champ lexical les termes faisant référence à une situation (une heure et un endroit précis), et à la réalité de cette situation.
+
+
+ + + +
9.1.4
+
+ +
Use this domain for general adjectives that can replace or stand for a specific adjective.
+
Classer dans ce champ lexical les adjectifs ou locutions adjectives génériques qui peuvent remplacer un adjectif qualificatif spécifique.
+
+
+ + + +
9.1.5
+
+ +
Use this domain for general adverbs that can replace or stand for other adverbs.
+
Classer dans ce champ lexical les adverbes génériques qui peuvent remplacer d’autres adverbes.
+
+
+ + + +
9.2
+
+ +
This domain is for organization purposes and should not be used for any words. Use the domains in this section for words that belong to a particular part of speech. It is best not to use these domains, since they are based on grammar and not meaning. But if you have a small group of words that belong to a part of speech and you want to list them all, you can use these domains. You can also classify words in this section if you don't know what they mean yet.
+
Ce champ lexical est destiné au vocabulaire grammatical et ne doit pas être utilisé pour n’importe quel mot. Utilisez les champs lexicaux de cette section pour les mots appartenant à une partie du discours spécifique. Il vaut mieux ne pas utiliser ces champs lexicaux puisqu'ils sont fondés sur la grammaire et non sur le sens ; mais vous pouvez les utiliser si vous avez un petit groupe de mots appartenant à une partie du discours et que vous vouliez tous les énumérer. Vous pouvez aussi classer dans cette section les mots dont vous ne connaissez pas encore le sens.
+
+
+ + + +
9.2.1
+
+ +
Use this domain to list all adjectives. If there are many adjectives in your language, you should not try to list them all here. If you want to find all the adjectives, most dictionary programs can sort your dictionary by part of speech. However if your language only has a few adjectives, you can list them all in this domain. In the book, "Where Have All the Adjectives Gone?" R. M. W. Dixon [Dixon, R. M. W. 1982. Where have all the adjectives gone? Berlin: Mouton.] identifies seven universal semantic types that are often expressed by adjectives. They are: Age (new, young, old), Dimension (big, little, long, short, wide, narrow, thick, fat, thin), Value (good, bad, proper, perfect, excellent, fine, delicious, atrocious, poor), Color (black, white, red), Human propensity (jealous, happy, kind, clever, generous, cruel, rude, proud, wicked), Physical property (hard, soft, heavy, light, rough, smooth, hot, cold, sweet, sour), Speed (fast, slow). Words in the Human propensity class may be nouns. Words in the Physical property and Speed classes may be verbs.
+
Classer dans ce champ lexical tous les adjectifs qualificatifs. Si votre langue en compte beaucoup, vous n’essaierez pas de tous les énumérer ici. Si vous souhaitez avoir une liste de tous les adjectifs, la plupart des logiciels de dictionnaires permettent de faire un tri par partie du discours. Néanmoins, s’il y a peu d’adjectifs dans votre langue, vous pouvez les citer tous ici. Dans son livre, R. M. W. Dixon [DIXON (R.M.W.), Where have all the adjectives gone ?, Berlin, Mouton, 1982.] identifie sept catégories sémantiques universelles qui sont souvent exprimées par des adjectifs : l’âge (nouveau, jeune, vieux), les dimensions (grand, petit, long, court, large, étroit, épais, gros, gras, maigre), la qualité (bon, mauvais, convenable, parfait, excellent, bien, délicieux, affreux, médiocre), la couleur (noir, blanc, rouge), les qualités et défauts (jaloux, joyeux, gentil, intelligent, généreux, cruel, grossier, fier, méchant), les propriétés physiques (dur, doux, mou, lourd, léger, rugueux, chaud, froid, acide), la vitesse (rapide, lent). Les mots de la catégorie Qualités et défauts peuvent être des noms, ceux des Propriétés physiques et de la Vitesse peuvent être des verbes.
+
+
+ + + +
9.2.2
+
+ +
Use this domain to list all adverbs. If there are many adverbs in your language, it is probably not worth the trouble to list them here. The Shoebox program (and other dictionary programs) can sort your dictionary by part of speech.
+
Classer dans ce champ lexical tous les adverbes. Si votre langue en compte beaucoup, il ne vaut peut-être pas la peine de les énumérer ici. Le logiciel Shoebox (ou autre) permet de trier votre dictionnaire par parties du discours. En français, un adverbe détermine un verbe, un adjectif, un autre adverbe, ou une phrase. Il indique le lieu, le temps, la manière, la quantité, l’affirmation, la négation, le doute, la cause, le but. Le plus souvent il se forme à partir d’un adjectif auquel on ajoute –ment (ex rapidement). Certains de ces adverbes sont aussi interrogatifs ; on trouve aussi des locutions adverbiales. Seuls quelques exemples principaux dans chaque domaine de sens seront indiqués ci-dessous.
+
+
+ + + +
9.2.3
+
+ +
Use this domain for the personal pronouns, including independent, subject, object, and possessive pronouns. It is best to collect all the pronouns in a chart. This way you are more certain of collecting them all and seeing how they are related to each other. A language may have more sets and more distinctions than English does, or it may have less. For instance some languages have a pronoun 'we' which includes the hearer, and another pronoun 'we' which excludes the hearer. Other languages have an indefinite pronoun that means something like the English word 'someone'. Many languages do not have the masculine (he), feminine (she), and neuter (it) distinctions that English has. It is necessary to determine the sets and functions of the pronouns for each language.
+
Classer dans ce champ lexical les pronoms personnels, ainsi que les pronoms toniques, sujet et objet, les pronoms et déterminants possessifs et démonstratifs. Le mieux est de rassembler tous les pronoms dans un tableau. Cela évite d'en oublier et permet de voir les relations entre eux. Il est possible qu’une langue ait plus de catégories et fasse plus de distinctions que le français ou l’inverse. Ainsi, dans certaines langues, il y a un pronom « nous » qui inclut les personnes auxquelles on parle et un pronom « nous » qui les exclut. De nombreuses langues ne font pas la distinction entre masculin (il) et féminin (elle), comme le français. Il faut donc déterminer les catégories et les fonctions des pronoms et déterminants de chaque langue.
+
+
+ + + +
9.2.3.1
+
+ +
Use this domain for pronouns that refer back to the subject of the sentence. These pronouns should be added to the chart of personal pronouns.
+
Classer dans ce champ lexical les pronoms qui renvoient au sujet de la phrase. Ces pronoms doivent être mis dans le tableau des pronoms personnels.
+
+
+ + + +
9.2.3.2
+
+ +
Use this domain for pronouns that do not refer to a definite person or thing, but can refer to anyone or anything. Some languages will not have all the sets of pronouns described below. Add each set you find in your language to the pronoun chart.
+
Classer dans ce champ lexical les pronoms qui ne désignent pas précisément quelqu’un ou quelque chose, mais peuvent désigner n’importe qui ou n’importe quoi. Certaines langues n'ont pas toutes les catégories de pronoms ci-dessous. Vous ajouterez dans votre tableau des pronoms les différentes catégories que vous trouvez dans votre langue. On utilise aussi des locutions pronominales.
+
+
+ + + +
9.2.3.3
+
+ +
Use this domain for pronouns used in relative clauses.
+
Classer dans ce champ lexical les pronoms employés dans les propositions relatives.
+
+
+ + + +
9.2.3.4
+
+ +
Use this domain for pronouns used in questions.
+
Classer dans ce champ lexical les pronoms ou déterminants utilisés pour poser des questions.
+
+
+ + + +
9.2.3.5
+
+ +
Use this domain for demonstrative pronouns.
+
Classer dans ce champ lexical les pronoms et déterminants démonstratifs.
+
+
+ + + +
9.2.3.6
+
+ +
Use this domain for words that indicate that someone does something himself, rather than through someone else.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent que c’est la personne qui fait elle-même quelque chose, et non via quelqu’un d’autre.
+
+
+ + + +
9.2.4
+
+ +
Use this domain to list all prepositions and postpositions.
+
Classer dans ce champ lexical toutes les prépositions.
+
+
+ + + +
9.2.5
+
+ +
Use this domain to list all conjunctions.
+
Classer dans ce champ lexical toutes les conjonctions.
+
+
+ + + +
9.2.5.1
+
+ +
Use this domain to list all phrase level conjunctions--conjunctions that join two words within a phrase.
+
Classer dans ce champ lexical toutes les conjonctions de coordination : celles qui relient deux mots dans un groupe de mots ou deux propositions de même nature.
+
+
+ + + +
9.2.5.2
+
+ +
Use this domain to list all clause level conjunctions--conjunctions that join two clauses.
+
Classer dans ce champ lexical toutes les conjonctions de subordination : conjonctions ou locutions conjonctives qui relient deux propositions dont une est subordonnée à l’autre.
+
+
+ + + +
9.2.5.3
+
+ +
Use this domain to list all sentence level conjunctions--conjunctions that join two sentences.
+
Classer dans ce champ lexical les conjonctions de coordination ou les adverbes qui relient deux phrases entre elles.
+
+
+ + + +
9.2.6
+
+ +
Use this domain to list all particles.
+
Classer dans ce champ lexical toutes les particules.
+
+
+ + + +
9.2.6.1
+
+ +
Use this domain to list all classifiers.
+
Classer dans ce champ lexical les classificateurs.
+
+
+ + + +
9.2.7
+
+ +
Use this domain to list all interjections.
+
Classer dans ce champ lexical les interjections.
+
+
+ + + +
9.2.8
+
+ +
Use this domain to list all idiophones. If there are many idiophones in your language, it is probably not worth the trouble to list them here. The Shoebox program +(and other dictionary programs) can sort your dictionary by part of speech.
+
Classer dans ce champ lexical tous les idéophones. S’il existe un grand nombre d’idéophones dans votre langue, il ne vaut peut-être pas la peine de les énumérer ici : le logiciel Shoebox peut trier votre dictionnaire par parties du discours.
+
+
+ + + +
9.2.9
+
+ +
Use this domain to list all affixes that do not fit in any of the subdomains under it. This section should be filled out by a linguist.
+
Classer dans ce champ lexical les affixes qui n’entrent dans aucun des champs spécifiques détaillés ci-après. Cette section doit être remplie par un linguiste.
+
+
+ + + +
9.2.9.1
+
+ +
Use this domain to list all verb affixes.
+
Classer dans ce champ lexical tous les affixes verbaux.
+
+
+ + + +
9.2.9.2
+
+ +
Use this domain to list all noun affixes.
+
Classer dans ce champ lexical tous les affixes nominaux.
+
+
+ + + +
9.2.9.3
+
+ +
Use this domain to list all derivational affixes. A derivational affix is joined to a root and changes it into a different word. Derivational affixes often change the root into a different part of speech. Adding a derivational affix usually changes the meaning of the root in a significant way.
+
Classer dans ce champ lexical tous les affixes de dérivation, c’est-à-dire ceux qui, ajoutés au radical, le transforment en un autre mot, appartenant souvent à une autre partie du discours. Les affixes de dérivation modifient en général le sens du radical de façon importante.
+
+
+ + + +
9.3
+
+ +
Use this domain for words that intensify an attribute.
+
Classer dans ce champ lexical les mots ou expressions qui intensifient un qualificatif.
+
+
+ + + +
9.3.1
+
+ +
Use this domain for words that indicate a degree on a scale.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent un degré sur une échelle.
+
+
+ + + +
9.3.1.1
+
+ +
Use this domain for words referring to a large degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion « à grande échelle ».
+
+
+ + + +
9.3.1.2
+
+ +
Use this domain for words referring to a small degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion de « faible mesure ».
+
+
+ + + +
9.3.1.3
+
+ +
Use this domain for words referring to a larger degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion « dans une part croissante ».
+
+
+ + + +
9.3.1.4
+
+ +
Use this domain for words referring to a smaller degree.
+
Classer dans ce champ lexical les mots ou expressions qui font référence à la notion de « en baisse ».
+
+
+ + + +
9.3.2
+
+ +
Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à un degré complet : lorsque quelque chose est fait, arrive, est pensé ou est ressenti parfaitement et de toutes les manières possibles.
+
+
+ + + +
9.3.3
+
+ +
Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.
+
Classer dans ce champ lexical le vocabulaire qui fait référence à ce qui est fait partiellement.
+
+
+ + + +
9.3.4
+
+ +
Use this domain for words indicating intensity of an action.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent l’intensité d’une action.
+
+
+ + + +
9.3.5
+
+ +
Use this domain for words that modify an attribute.
+
Classer dans ce champ lexical les mots ou expressions qui modifient un qualificatif.
+
+
+ + + +
9.4
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that modify verbs.
+
Classer dans cette partie les auxiliaires, les affixes et les adverbes qui modifient les verbes.
+
+
+ + + +
9.4.1
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate tense and aspect.
+
Classer dans cette partie les auxiliaires, les affixes, les adverbes et les particules qui indiquent le temps et l’aspect.
+
+
+ + + +
9.4.1.1
+
+ +
Use this domain for verbal auxiliaries, affixes, adverbs, and particles that indicate tense (also known as temporal deixis)--the time of a situation (event, activity, or state) in relation to a reference point, which is usually the time of utterance. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans ce champ lexical les auxiliaires, les affixes, les adverbes et les particules qui indiquent le temps (appelé également deixis temporelle) : temps où se passe le procès du verbe (événement, action ou état) en fonction d’un point de référence qui est en général le moment de l’énonciation. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.1.2
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of dynamic verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans ce champ lexical, les auxiliaires, les affixes, les adverbes et les particules qui indiquent l’aspect dans les verbes d’action. L’aspect décrit la façon dont le procès du verbe se déroule. Il peut se combiner à un temps, soit dans le même morphème, soit dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.1.3
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of stative verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans ce champ lexical les auxiliaires, les affixes, les adverbes et les particules qui indiquent l’aspect pour les verbes d’état. L’aspect sert à décrire la façon dont se déroule le procès du verbe. Il peut se combiner à n’importe quel temps, soit dans le même morphème, soit dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.1.4
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate relational tenses. Relational tenses describe situations where the reference time is not the same as the moment of speech. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, les affixes, les adverbes et les particules qui indiquent le temps relatif. Les temps relatifs décrivent un procès du verbe où le moment de référence est différent de celui de l’énonciation. Ils peuvent se combiner avec n’importe quel temps, que ce soit dans le même morphème ou dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.2
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate agent-oriented modalities. Agent-oriented modalities describe internal or external conditions on a willful agent with respect to the completion of the predicate situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, les affixes, les adverbes et les particules qui indiquent la modalité concernant l’agent. Les modalités concernant l’agent indiquent que, pour pouvoir accomplir le prédicat, l’agent dépend de conditions internes ou externes. Elles peuvent se combiner à n’importe quel temps, que ce soit dans le même morphème ou dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.2.1
+
+ +
Use this domain for words indicating that someone can do something.
+
Classer dans ce champ lexical les mots ou expressions indiquant que quelqu’un peut faire quelque chose.
+
+
+ + + +
9.4.2.2
+
+ +
Use this domain for words related to being incapable of doing something.
+
Classer dans ce champ lexical le vocabulaire associé au fait d’être dans l’incapacité de faire quelque chose.
+
+
+ + + +
9.4.2.3
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something must happen.
+
Classer dans ce champ lexical les mots ou expressions employés pour indiquer qu’on pense que quelque chose doit arriver.
+
+
+ + + +
9.4.3
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate moods.
+
Classer dans ce champ lexical les auxiliaires, affixes, adverbes ou particules qui indiquent le mode.
+
+
+ + + +
9.4.3.1
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate imperatives. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press. Use this domain for words and affixes that a speaker uses to indicate that he is making a command. English has no command word. Some languages change the form of the verb by adding an affix. Some languages have special verbs that are only or normally used as commands. Those verbs could be classified here.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent l’impératif. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994. Dans certaines langues, un affixe modifie la forme du verbe. Dans d’autres, il existe des verbes qui ne sont employés que pour des ordres. On pourrait les classer ici.
+
+
+ + + +
9.4.3.2
+
+ +
Use this domain for ways of saying that someone should do something. If I say someone should do something, I think it is good that he does it.
+
Classer dans ce champ lexical les façons d’inciter à faire une chose qui serait bien.
+
+
+ + + +
9.4.3.3
+
+ +
Use this domain for words that a speaker uses to indicate that he is asking a question. English has no question word, but other languages such as Japanese do.
+
Classer dans ce champ lexical les mots ou expressions employés pour indiquer que l’on pose une question. Le français n’a pas de mot pour annoncer une question, contrairement à d’autres langues telles que le japonais.
+
+
+ + + +
9.4.4
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate epistemic moods. Epistemic moods have the whole proposition in their scope and indicate the degree of commitment of the speaker to the truth or future truth of the proposition. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent le mode épistémique. Ceux-ci portent sur toute la proposition et indiquent ce que pense le locuteur de la vérité ou vérité future, de la proposition. Ils peuvent se combiner avec n’importe quel temps, soit dans le même morphème, soit dans une combinaison de morphèmes. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.4.1
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is certainly true or is certain to happen.
+
Classer dans ce champ lexical les mots ou expressions dont le locuteur se sert pour indiquer qu’il pense qu’une chose est certainement vraie ou va certainement arriver.
+
+
+ + + +
9.4.4.2
+
+ +
Use this domain for words related to being sure that something is true.
+
Classer dans ce champ lexical le vocabulaire lié au fait d’être sûr que quelque chose est vrai.
+
+
+ + + +
9.4.4.3
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is probable or likely to occur.
+
Classer dans ce champ lexical les mots ou expressions qu’un locuteur emploie pour indiquer qu’il pense que quelque chose est probable ou va vraisemblablement se produire.
+
+
+ + + +
9.4.4.4
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is possible. Maybe implies that the speaker doesn't know something.
+
Classer dans ce champ lexical les mots ou expressions qu’un locuteur emploie pour indiquer qu’il pense que quelque chose est possible. Il peut sous-entendre qu’il ignore quelque chose.
+
+
+ + + +
9.4.4.5
+
+ +
Use this domain for words that indicate that no one is certain that something is true, or when it is impossible to be certain that something is true.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent que personne n’est sûr qu’une chose soit vraie ou qu’il est impossible d’être sûr que ce soit vrai.
+
+
+ + + +
9.4.4.6
+
+ +
Use this domain for words related to not feeling sure about something or someone.
+
Classer dans ce champ lexical les mots ou expressions associés au fait de ne pas être sûr de quelque chose ou de quelqu’un.
+
+
+ + + +
9.4.4.6.1
+
+ +
Use this domain for words indicating that you think something is true, but you are not completely sure about it.
+
Classer dans ce champ lexical des mots ou expressions indiquant qu’on estime qu’une chose est vraie, sans en être tout à fait sûr.
+
+
+ + + +
9.4.4.6.2
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks it is possible that something may happen or be true, but he isn't certain.
+
Classer dans ce champ lexical les mots ou expressions employés pour indiquer qu’on pense qu’il est possible qu’une chose se produise ou soit vraie, sans en être sûr.
+
+
+ + + +
9.4.4.6.3
+
+ +
Use this domain for words indicating that something seems to be a certain way--you see (or hear) something and think something about it, but you are not sure that what you think is true.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent qu’on voit ou entend une chose, qu’on s’en fait une idée, sans être sûr qu‘elle soit vraie.
+
+
+ + + +
9.4.4.7
+
+ +
Use this domain for words indicating that although something is true, it almost is not true.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent que, bien qu’une chose soit vraie, cela a failli ne pas l’être.
+
+
+ + + +
9.4.4.8
+
+ +
Use this domain for words indicating that you think something is unlikely to be true or to happen.
+
Classer dans ce champ lexical le vocabulaire indiquant qu’on pense qu’une chose n’arrivera probablement pas.
+
+
+ + + +
9.4.4.9
+
+ +
Use this domain for words that a speaker uses to indicate that he thinks something is impossible.
+
Classer dans ce champ lexical les mots ou expressions qui indiquent qu’on croit qu’une chose est impossible.
+
+
+ + + +
9.4.5
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate evidentials. An evidential is when the speaker indicates the source of the information on which an assertion about a situation is based. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette section les verbes auxiliaires, affixes, adverbes, et particules grammaticales qui constituent des marqueurs évidentiels. Les marqueurs évidentiels sont le moyen utilisé par le locuteur pour indiquer la source d'information sur laquelle s'appuie une affirmation à propos d'une situation donnée. Les définitions qui suivent sont issues de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), L'évolution de la grammaire, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.5.1
+
+ +
Use this domain for words indicating who is evaluating the proposition.
+
Classer dans ce champ lexical le vocabulaire qui indique la personne qui évalue l'affirmation.
+
+
+ + + +
9.4.6
+
+ +
Use this domain for words that affirm or agree with the truth of something, or that answer a yes/no question in the affirmative.
+
Classer dans ce champ lexical le vocabulaire qui affirme ou confirme la véracité d’une affirmation, ou qui répond à une question par l’affirmative.
+
+
+ + + +
9.4.6.1
+
+ +
Use this domain for words that negate or deny the truth of something, or that answer a yes/no question in the negative.
+
Classer dans ce champ lexical le vocabulaire qui sert à nier la véracité de quelque chose, ou à répondre à une question par la négative.
+
+
+ + + +
9.4.6.2
+
+ +
Use this domain for words indicating that an affirmative answer is expected to a question.
+
Classer dans ce champ lexical le vocabulaire qui sert à indiquer qu'une question annonce une réponse affirmative.
+
+
+ + + +
9.4.6.3
+
+ +
Use this domain for words indicating that a negative answer is expected to a question.
+
Classer dans ce champ lexical le vocabulaire qui indique qu'une question annonce une réponse négative.
+
+
+ + + +
9.4.7
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a subordinate clause. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent une proposition subordonnée. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.4.8
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate adverbial clauses. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent une proposition adverbiale. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.5
+
+ +
Each verb has a set of semantic case relations. For instance in the sentence 'I gave flowers to my wife' the verb give has three case relations. 'I' is the Agent, +'flowers' is the Patient, and 'my wife is the 'Recipient'. In this sentence the only word that marks a case relation is 'to'. English often marks case relations by their position in the sentence. Some languages mark case relations by affixes, prepositions, postpositions, and sometimes special verbs. To completely describe a language, each verb must be investigated, all its case relations must be identified, and all the ways in which these relations are marked must be described. Since verbs are often unique and unpredictable in their case relations, this information should go into the dictionary. This section should be used to classify the words and affixes that are used to mark case relations. This domain should be used for technical terms that refer to case.
+
À chaque verbe correspond un ensemble de rôles sémantiques qui sont les fonctions remplies par les autres mots de la phrase. Par exemple, dans la phrase « Je donne des fleurs à ma femme », le verbe donner est associé à trois rôles sémantiques. « Je » est l'Agent, « des fleurs » est le Régime, et « ma femme » est le Destinataire. Dans cette phrase le seul mot qui indique un rôle sémantique est le mot « à ». Les rôles sémantiques sont souvent indiqués par la position des mots dans la phrase en français. Certaines langues indiquent les rôles sémantiques par des affixes, des prépositions, des postpositions, et parfois des verbes spéciaux. Pour décrire entièrement une langue, chaque verbe doit être étudié, tous ses rôles sémantiques doivent être identifiés, et toutes les manières de les indiquer doivent être décrites. Puisque les verbes sont souvent uniques et que leurs rôles sémantiques sont souvent imprévisibles, cette information doit entrer dans le dictionnaire. Cette section doit servir à classer les mots et les affixes qui sont utilisés pour indiquer les rôles sémantiques. Il faut classer dans ce champ lexical les termes techniques qui font référence à ce rôle sémantique.
+
+
+ + + +
9.5.1
+
+ +
Use this section for primary cases.
+
Classer dans cette section tout ce qui a trait aux rôles sémantiques primaires.
+
+
+ + + +
9.5.1.1
+
+ +
Use this domain for words that mark the beneficiary of an event. The sentence "John built a house for his father" is ambiguous. If the house was for his father to live in, then "for" would mark the 'Beneficiary of a patient', meaning that the house was for the father. If, on the other hand, the father was intending to build the house to sell, but couldn't due to an injury, then "for" would mark the 'Beneficiary of an event', meaning the father benefited from the building of the house.
+
Classer dans ce champ lexical le vocabulaire qui indique le bénéficiaire d'un événement. La phrase « Jean a construit une maison pour son père » est ambiguë. Si le père devait habiter dans cette maison, alors « pour » indique le « bénéficiaire du régime », c'est-à-dire que la maison était destinée au père. En revanche, si le père avait pour intention de construire cette maison pour la vendre, mais n'a pu le faire à cause d'une blessure, alors « pour » indique le « bénéficiaire d'un événement », c'est-à-dire que le père a tiré profit de la construction de la maison.
+
+
+ + + +
9.5.1.2
+
+ +
Use this domain for words that mark an instrument used to do something.
+
Classer dans ce champ lexical le vocabulaire qui indique le rôle d'instrument servant à faire quelque chose.
+
+
+ + + +
9.5.1.3
+
+ +
Use this domain for words indicating the means by which something is done.
+
Classer dans ce champ lexical le vocabulaire qui indique le moyen permettant de faire quelque chose.
+
+
+ + + +
9.5.1.4
+
+ +
Use this domain for words indicating the way or manner in which something is done.
+
Classer dans ce champ lexical le vocabulaire indiquant la manière dont une action est accomplie.
+
+
+ + + +
9.5.1.5
+
+ +
Use this domain for words indicating the attendant circumstances in which something happened.
+
Classer dans ce champ lexical le vocabulaire qui indique les circonstances qui ont entouré un événement.
+
+
+ + + +
9.5.1.6
+
+ +
Use this domain for words indicating the spatial location of an event.
+
Classer dans ce champ lexical le vocabulaire qui indique la localisation spatiale d'un événement.
+
+
+ + + +
9.5.1.6.1
+
+ +
Use this domain for words that mark the Source (original location) of something.
+
Classer dans ce champ lexical le vocabulaire qui indique l'origine (la localisation initiale) de quelque chose.
+
+
+ + + +
9.5.1.6.2
+
+ +
Use this domain for words indicating the Path of movement.
+
Classer dans ce champ lexical le vocabulaire qui indique la trajectoire d'un déplacement.
+
+
+ + + +
9.5.1.6.3
+
+ +
Use this domain for words indicating the Goal of movement.
+
Classer dans ce champ lexical le vocabulaire qui indique le but d'un déplacement.
+
+
+ + + +
9.5.1.6.4
+
+ +
Use this domain for words that mark the place where someone was born or the place where they have been living.
+
Classer dans ce champ lexical le vocabulaire qui indique le lieu où une personne est née ou le lieu où une personne a habité dernièrement.
+
+
+ + + +
9.5.2
+
+ +
Use this section for words that join semantically similar events into one sentence. Each sentence is actually reporting two or more situations, which may differ in one or two respects. The words to be included in these domains indicate that two situations are being reported, or mark the differences between the two situations.
+
Classer dans les champs lexicaux de cette partie les mots ou expressions qui relient dans une même phrase deux situations similaires sur le plan sémantique. Dans chaque phrase, il est fait mention de deux situations, ou plus, qui peuvent présenter une ou deux différences. Le vocabulaire à mettre dans ce champ lexical indique qu’il est fait état de deux situations, ou signale les différences entre les deux situations.
+
+
+ + + +
9.5.2.1
+
+ +
Use this domain for words indicating when two or more people each do the same thing and do it together, or when they do it separately.
+
Classer dans ce champ lexical le vocabulaire indiquant un collectif, à savoir qu’une action est faite par deux ou plusieurs personnes, que ce soit ensemble ou séparément.
+
+
+ + + +
9.5.2.2
+
+ +
Use this domain for words indicating a person who accompanied the subject of a proposition.
+
Classer dans ce champ lexical le vocabulaire qui indique que le sujet de la proposition est accompagné.
+
+
+ + + +
9.5.2.3
+
+ +
Use this domain for words indicating a person who does something with another person who is the subject of the sentence.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelqu’un agit avec la personne sujet de la phrase.
+
+
+ + + +
9.5.2.4
+
+ +
Use this domain for words indicating that two or more people do something to each other.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une ou plusieurs personnes agissent avec une autre.
+
+
+ + + +
9.5.2.5
+
+ +
Use this domain for words indicating that the subjects of a clause do something in groups.
+
Classer dans ce champ lexical le vocabulaire qui indique que les sujets d’une proposition font quelque chose en groupe.
+
+
+ + + +
9.5.3
+
+ +
Use this section for cases that bear a relationship to the 'Patient' of a proposition.
+
Classer dans ce champ lexical le vocabulaire associé à la relation à « l’objet » d’une proposition.
+
+
+ + + +
9.5.3.1
+
+ +
Use this domain for words that mark the beneficiary of the Patient of an activity. The Patient is often expressed as the object of a sentence. In the sentence +"John built a house for his parents," the house is the Patient. It is the house that benefits the parents, not the building of the house.
+
Classer dans ce champ lexical le vocabulaire qui indique le bénéficiaire de l’objet d’une action. L’objet de l’action se trouve souvent dans le complément d’objet de la phrase. Dans la phrase, « Jean a bâti une maison pour ses parents », la maison est l’objet de l’action et les bénéficiaires de la maison sont les parents, non la construction de la maison.
+
+
+ + + +
9.5.3.2
+
+ +
Use this domain for words that mark the recipient of the Patient of an activity. The Patient is usually expressed as the object of a sentence.
+
Classer dans ce champ lexical le vocabulaire qui indique les récipiendaires de l’objet d’une activité. L’objet de l’action se trouve souvent être le complément d’objet de la phrase.
+
+
+ + + +
9.5.3.3
+
+ +
Use this domain for words that mark a second Patient that accompanies the primary Patient of an activity. In this type of sentence there are actually two Patients, but one of them has more prominence than the other. The primary patient is usually expressed as the object of the sentence. The second Patient may be marked by an oblique case or preposition/postposition. For instance it may be conceived as accompanying the first Patient.
+
Classer dans ce champ lexical le vocabulaire qui indique un second objet qui accompagne le principal objet d’une action. Dans ce type de phrase, il y a en fait deux objets, mais l’un d’eux est plus important que l’autre. L’objet principal de l’action se trouve souvent dans le complément d’objet de la phrase tandis que le second objet est indiqué par un autre cas, une préposition ou une postposition. Il peut, par exemple, être conçu comme accompagnant le premier objet.
+
+
+ + + +
9.6
+
+ +
Use the domains in this section for words that indicate a logical relation between two or more words or sentences. Use this domain for words that indicate an unspecified logical relation between people, things, or situations.
+
Classer dans les champs lexicaux de cette partie les mots ou expressions qui indiquent une relation logique entre deux ou plusieurs mots, ou entre phrases. Classer dans ce domaine les mots ou expressions qui indiquent une relation logique non spécifiée entre des personnes, des choses ou des situations.
+
+
+ + + +
9.6.1
+
+ +
Use this section for words indicating coordinate relations. Do not put any words in this domain. It is only for organizational purposes.
+
Classer dans cette partie les mots ou expressions qui indiquent des relations de coordination. Ne pas mettre n’importe quels mots ou expressions dans ce champ lexical. Il ne sert qu’à des fins de classification.
+
+
+ + + +
9.6.1.1
+
+ +
Use this domain for words that indicate that you are adding another thought to a previous thought. Words in this domain may indicate a variety of relationships between words, phrases, clauses, or sentences. For instance the words may join two clauses that are the same except that the subjects are different, or the objects are different, or the verbs are different.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’on ajoute une idée à l’idée précédente. Les mots de ce champ lexical peuvent indiquer tout un éventail de relations entre les mots, groupes de mots, propositions ou phrases, par exemple, les mots peuvent relier deux propositions qui ne diffèrent que par leur sujet, par leur complément d’objet, ou par leur verbe.
+
+
+ + + +
9.6.1.2
+
+ +
Use this domain for words indicating an alternative relation between two things or propositions.
+
Classer dans ce champ lexical le vocabulaire qui indique une relation alternative entre deux choses ou propositions.
+
+
+ + + +
9.6.1.3
+
+ +
Use this domain for words indicating an association between two things.
+
Classer dans ce champ lexical le vocabulaire qui indique une association entre deux choses.
+
+
+ + + +
9.6.1.4
+
+ +
Use this domain for words indicating a combinative relation between two things.
+
Classer dans ce champ lexical le vocabulaire qui indique une combinaison de deux choses.
+
+
+ + + +
9.6.1.5
+
+ +
Use this domain for words indicating a contrast between two thoughts that are different in some way.
+
Classer dans ce champ lexical le vocabulaire qui indique un contraste entre deux idées qui diffèrent quelque peu.
+
+
+ + + +
9.6.1.5.1
+
+ +
Use this domain for words indicating that something is an exception to a group, rule or pattern--something is true of all the things (or people) in a group, but it is not true of one thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu‘une chose est une restriction par rapport à un groupe, une règle ou un modèle : une chose est vraie pour toutes les personnes ou les éléments du groupe, sauf pour l’une (ou l’un) d’entre elles (ou eux).
+
+
+ + + +
9.6.1.5.2
+
+ +
Use this domain for words indicating that something is true of one thing (or person) instead of another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose est vraie à la place d’une autre.
+
+
+ + + +
9.6.1.6
+
+ +
Use this domain for words indicating a dissociation relation between two things or propositions.
+
Classer dans ce champ lexical le vocabulaire qui indique une dissociation entre deux choses ou propositions.
+
+
+ + + +
9.6.1.7
+
+ +
Use this domain for words indicating that an event is distributed throughout a group, area, or time span.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une action a lieu dans tout un groupe, une région ou une période de temps.
+
+
+ + + +
9.6.1.8
+
+ +
Use this domain for words indicating equivalence between two things or propositions.
+
Classer dans ce champ lexical le vocabulaire qui indique l’équivalence entre deux choses ou propositions.
+
+
+ + + +
9.6.2
+
+ +
Use this domain for words indicating that something is dependent on another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose dépend d’une autre.
+
+
+ + + +
9.6.2.1
+
+ +
Use this domain for words indicating that something derives from another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose dérive d’une autre.
+
+
+ + + +
9.6.2.2
+
+ +
Use this domain for words indicating the topic that is being talked about.
+
Classer dans ce champ lexical le vocabulaire qui indique le sujet dont on parle.
+
+
+ + + +
9.6.2.2.1
+
+ +
Use this domain for words indicating that something is generally true, but not true in every case.
+
Classer dans ce champ lexical le vocabulaire qui indique qu‘une chose est vraie en général, mais non dans tous les cas.
+
+
+ + + +
9.6.2.3
+
+ +
Use this domain for words indicating relations involving correspondences--a situation in which one thing is the same or similar in some respect to something else.
+
Classer dans ce champ lexical le vocabulaire indiquant des correspondances : une situation où une chose ressemble sur certains points à une autre.
+
+
+ + + +
9.6.2.4
+
+ +
Use this domain for words indicating that something is the basis for another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique ce qui sert de base à autre chose.
+
+
+ + + +
9.6.2.5
+
+ +
Use this domain for words that indicate that someone or something is the cause for an event or state, that one event is the cause for another event or state, or that an event or state is reasonable (having sufficient cause). For instance in the sentence, "John caused David to fall," "John caused" is an enabling proposition that brings about the primary proposition "David fell."
+
Classer dans ce champ lexical le vocabulaire qui indique qu‘une personne ou une chose est la cause d’une action ou d’un état, qu’une action est la raison d’une autre action ou état, ou qu’une action ou un état est raisonnable (a une cause suffisante). Par exemple dans la phrase « Jean a fait tomber David », « Jean a fait » est la proposition qui précise la cause de la proposition centrale « David est tombé ».
+
+
+ + + +
9.6.2.5.1
+
+ +
Use this domain for words that reason why someone does something.
+
Classer dans ce champ lexical les mots ou expressions qui désignent la raison pour laquelle une personne fait quelque chose.
+
+
+ + + +
9.6.2.5.2
+
+ +
Use this domain for words that indicate that an event or state has no cause or reason, or is unreasonable (has insufficient cause).
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une action ou un état est sans cause ni raison, ou n’est pas raisonnable (sans raison suffisante).
+
+
+ + + +
9.6.2.6
+
+ +
Use this domain for words indicating that something is the result of another thing.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une chose est le résultat d’une autre.
+
+
+ + + +
9.6.2.6.1
+
+ +
Use this domain for words indicating that something had no result.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose ne donne aucun résultat.
+
+
+ + + +
9.6.2.7
+
+ +
Use this domain for words indicating that something was done for the purpose of another thing happening.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’on a fait quelque chose pour qu’autre chose arrive.
+
+
+ + + +
9.6.2.7.1
+
+ +
Use this domain for words indicating that something had no purpose.
+
Classer dans ce champ lexical le vocabulaire qui indique que quelque chose n’a pas de but.
+
+
+ + + +
9.6.2.8
+
+ +
Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a clause in a conditional sentence (If this is true, then that is true). The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.
+
Classer dans cette partie les auxiliaires, affixes, adverbes ou particules qui indiquent une proposition dans une phrase conditionnelle. Les définitions suivantes sont tirées de BYBEE (Joan), PERKINS (Revere) et PAGLIUCA (William), The evolution of grammar, Chicago et Londres, University of Chicago Press, 1994.
+
+
+ + + +
9.6.2.9
+
+ +
Use this domain for words indicating that the speaker is conceding a point in a debate.
+
Classer dans ce champ lexical le vocabulaire qui indique que celui qui parle concède un argument dans un débat.
+
+
+ + + +
9.6.3
+
+ +
Use this domain for conjunctions and particles that function on the discourse level, and whose meaning and function is uncertain.
+
Classer dans ce champ lexical les conjonctions et les particules dont la fonction se situe au niveau du discours et dont le sens ou la fonction est aléatoire.
+
+
+ + + +
9.6.3.1
+
+ +
Use this domain for conjunctions that simply move the discourse forward without any specific relationship indicated between what comes before and what comes after.
+
Classer dans ce champ lexical les conjonctions qui servent uniquement à faire progresser le discours sans indiquer de relation précise entre ce qui vient et ce qui suit.
+
+
+ + + +
9.6.3.2
+
+ +
Use this domain for words that indicate that the phrase or sentence is particularly important.
+
Classer dans ce champ lexical le vocabulaire qui indique que le groupe de mots, ou la phrase, est particulièrement important.
+
+
+ + + +
9.6.3.3
+
+ +
Use this domain for words that are used to get someone's attention or direct the listener's attention to something. These may use a verb meaning 'look' or 'listen'. Some may be a word specifically referring to attention. Others may be a greeting. Others may be words that refer to non-verbal communication such as clearing your throat.
+
Classer dans ce champ lexical le vocabulaire employé pour attirer l’attention de quelqu’un sur quelque chose. Il peut contenir des verbes signifiant « voir » ou « écouter ». Dans certaines langues, il peut y avoir un mot désignant l’attention, dans d’autres ce peut être une salutation, dans d’autres encore ce peut être des mots qui font référence à la communication non verbale comme s’éclaircir la gorge.
+
+
+ + + +
9.6.3.4
+
+ +
Use this domain for words that the speaker uses to refer to the person he is addressing. These words are usually used when you start talking to someone, but can be used during a speech or conversation to refer to the person you are talking to.
+
Classer dans ce champ lexical le vocabulaire dont se sert la personne qui parle pour s’adresser à quelqu’un. Ces mots s’utilisent en général quand on se met à parler à quelqu’un, mais peuvent aussi être employés au cours d’un discours ou d’une conversation pour parler des personnes à qui on s’adresse.
+
+
+ + + +
9.6.3.5
+
+ +
Use this domain for words that begin a clause that identifies a specific case or example of what has just been said, or that explains what has just been said. Specific case: I have just mentioned a general class of things or a general idea and want to give a specific example of what I am talking about. Explanation: I have just said something and I think people might misunderstand, so I want to explain what I mean. Digression: I am talking about a particular topic, but want to say something that does not fit into my topic, so I say something that is about a different topic.
+
Classer dans ce champ lexical le vocabulaire qui introduit une proposition qui explique ce qui vient d’être dit ou qui en donne un cas ou un exemple. Exemple : Je viens de mentionner une catégorie d’objets ou une idée générale et je donne un exemple pour illustrer ce que j’ai dit. Explication : Je viens de dire quelque chose et j’ai peur que certains ne m’aient mal compris, alors j’explique ce que je veux dire. Digression : Je parle d’un sujet, mais veux dire quelque chose qui n’entre pas dans mon sujet ; je dis donc quelque chose sur un sujet différent.
+
+
+ + + +
9.6.3.6
+
+ +
Use this domain for words indicating that one of several things is in focus.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’une ou plusieurs choses font l’objet d’une focalisation.
+
+
+ + + +
9.6.3.7
+
+ +
Use this domain for words that a speaker uses when he hesitates or pauses while he is speaking in order to think about what he is saying.
+
Classer dans ce champ lexical le vocabulaire qu’on emploie quand on hésite ou fait une pause, alors qu’on est en train de parler, afin de réfléchir à ce qu’on va dire.
+
+
+ + + +
9.6.3.8
+
+ +
Use this domain for words that the speaker uses to show respect or a lack of respect to the person he is addressing. Some languages have elaborate systems of honorifics. Other languages have none. Languages with a stratified social structure often use honorifics. Egalitarian societies generally lack them, but some egalitarian societies may use them. For instance in Nahuatl there are four levels of honorifics. Level 1 is how one addresses intimates, small children, and pets. Level 2 is for strangers and persons treated formally. Level 3 is for respected persons, the dead, and God. Level 4 is for obsequious respect, as for the archbishop in an interview with a priest, and for ritual kin. (Jane H. Hill and Kenneth C. Hill. 1978. Honorific usage in modern Nahuatl: the expression of social distance and respect in the Nahuatl of the Malinche Volcano area, Language 54:123-155.) In Japanese, which has a stratified social structure, a person uses one set of words and affixes when speaking to someone below you in the social hierarchy, such as your wife, children, and pets. A different set of words is used when speaking to peers. Another set is used when speaking to a superior. A fourth set is used when speaking to the emperor. English used to have two pronouns for second person singular. 'Thou' was used for equals and inferiors, and 'you' was used for superiors. Your language may have special honorific words used as (1) pronouns, (2) affixes, (3) particles, (4) terms of direct address, (5) greetings (6) requests, (7) apologies.
+
Classer dans ce champ lexical le vocabulaire qui indique qu’on montre du respect ou un manque de respect à la personne à laquelle on s’adresse. Certaines langues ont des systèmes d’honneur complexes, d’autres n’en ont aucun. Dans les cultures très hiérarchisées, les langues ont souvent des expressions honorifiques alors que les sociétés égalitaires n’en ont pas, en général, mais il y a des exceptions. Par exemple, en nahuatl, il y a quatre niveaux d’honneur. Au niveau 1, on s’adresse à des intimes, de jeunes enfants et des animaux domestiques. Le niveau 2 est pour les étrangers et les personnes auxquelles on s’adresse poliment. On se sert du niveau 3 pour les personnes respectées, les morts et Dieu. Quant au niveau 4, il est employé pour montrer un respect exagéré, par servilité ou hypocrisie, tel que dans l’entretien d’un archevêque avec un prêtre ou pour des rituels familiaux. [HILL (Jane H.) et HILL (Kenneth C.), « Honorific usage in modern Nahuatl : the expression of social distance and respect in the Nahuatl of the Malinche Volcano area », Language, n° 54, p. 123-155, 1978.] Au Japon, où la société est très hiérarchisée, on emploie en japonais une série de mots et d’affixes quand on s’adresse à quelqu’un d’un rang social inférieur, par exemple, sa femme, ses enfants, ses animaux. Il y a une autre série de mots et d’affixes pour s’adresser à ses pairs et une autre pour parler à des supérieurs. Enfin, une quatrième série sert à s’adresser à l’empereur. En français, il y a trois pronoms pour s’adresser à une personne : tu (quand la personne est plus jeune ou égale à soi), vous (pour quelqu’un de supérieur à soi, inconnu ou âgé), monsieur ou madame (quand une personne s’adresse à un ambassadeur, ou quand du personnel de maison s’adresse à un employeur qui est de haut rang social, ou lorsque l’on s’adresse à un adulte que l’on ne connaît pas du tout). Il peut y avoir dans votre langue des mots honorifiques qui sont des pronoms (1), des affixes (2), des particules (3), des termes d’adresse (4), des salutations (5), des demandes (6), des excuses (7).
+
+
+ + + +
9.7
+
+ +
Use this domain for general words referring to proper nouns--the name given to a particular person or thing to distinguish it from other things like it. Proper nouns are often not included in a dictionary, or are included in an appendix at the front or back of a dictionary. This is because there are so many of them, they are sometimes difficult to define, and it saves space in the dictionary. For instance place names can be included in a map. So it might be good to type the proper nouns into a special file.
+
Classer dans ce champ lexical le vocabulaire qui fait référence au nom propre : nom donné à une personne ou à une chose pour la distinguer d’autres choses semblables. Les noms propres sont rarement dans un dictionnaire ou alors, ils sont mis dans un appendice qui se trouve au début ou à la fin. Ceci parce qu’ils sont trop nombreux, difficiles parfois à définir et que cela permet de gagner de la place. Ainsi on trouve les noms de lieu sur une carte. Il serait donc judicieux de mettre les noms propres dans un fichier qui leur serait réservé.
+
+
+ + + +
9.7.1
+
+ +
Use this domain for words related to the name of a person. Each culture has a system of personal names to identify individuals and kin groups. The subcategories under this heading should reflect the cultural system. If your language has a special set of names that do not fit any of they domains given here, then set up a special domain.
+
Classer dans ce champ lexical le vocabulaire associé au nom de quelqu’un. Chaque culture a son système de noms pour désigner des individus ou des clans. Les différentes rubriques de ce champ devront refléter la culture. S’il existe dans votre langue une série de noms qui n’entrent dans aucune des catégories présentes ici, vous en créerez une autre.
+
+
+ + + +
9.7.1.1
+
+ +
Use this domain for those names that are given to people, that people use to call to each other and to talk about each other.
+
Classer dans ce champ lexical les noms donnés aux personnes dont on se sert pour se parler ou pour s’appeler.
+
+
+ + + +
9.7.1.2
+
+ +
Use this domain for the proper names of the families that exist within the language community. If your culture does not use family names, just leave this domain empty.
+
Classer dans ce champ lexical des exemples de nom de famille qui existent dans votre groupe linguistique. S’il n’y en a pas, vous laisserez simplement ce champ lexical vide.
+
+
+ + + +
9.7.1.3
+
+ +
Use this domain for the proper names of the clans that exist within the language community. The distinction between family, clan, tribe, and nation is based on politics and emotion. Our purpose here is not to make political statements, but merely to list the names. There may be no distinction between family and clan, in which case ignore this domain and use the domain 'Family names'.
+
Classer dans ce champ lexical des noms de clans qui existent dans votre groupe linguistique. Cette distinction entre famille, clan, tribu, et nation peut se fonder sur des considérations politiques ou affectives. Notre but ici n’est pas d’énoncer des principes politiques, mais uniquement d’inventorier des noms. Il se peut qu’on ne fasse aucune distinction entre les noms de famille et les noms de clans. Dans ce cas, vous ignorerez le champ lexical du clan et vous vous servirez de celui des noms de famille.
+
+
+ + + +
9.7.1.4
+
+ +
Use this domain for the proper names of the tribes that exist around the language community, including the name of your own tribe. These tribal names may or may not correspond with the names of countries.
+
Classer dans ce champ lexical les noms qui désignent les tribus de votre groupe linguistique, sans oublier le nom de votre tribu. Les noms de tribus peuvent correspondre ou non au nom des pays.
+
+
+ + + +
9.7.1.5
+
+ +
Use this domain for the proper names of the languages that are spoken in the area around the language community, including the name of your own language. These language names may or may not correspond with the names of countries. Do not try to include every language name in the world, only the neighboring and important ones. For instance you might want to include the languages that border your own and the national language. Give the form that you use. For instance the German people call their language 'Deutsch', but in English we call it 'German'.
+
Classer dans ce domaine les noms des langues parlées autour de votre groupe linguistique, sans oublier le nom de votre langue. Ces noms de langues peuvent être ceux du pays ou non. Vous n’essaierez pas de faire la liste de toutes les langues du monde, mais citerez seulement celles des régions proches de la vôtre et celles qui sont particulièrement importantes. Par exemple, vous pourriez citer celles qui sont parlées dans les régions voisines de la vôtre et votre langue nationale. Vous les citerez sous la forme en usage chez vous. Ainsi les Allemands appellent leur langue « Deutsch », tandis qu’en français, elle s’appelle « allemand ».
+
+
+ + + +
9.7.1.6
+
+ +
Use this domain for common nicknames--an additional name given to a person later in life, often descriptive. Also include general names used to call or refer to someone when you don't know their name
+
Classer dans ce champ lexical des surnoms répandus, des noms donnés à certaines personnes au cours de leur vie et qui ont souvent une valeur descriptive. Inclure aussi dans cette rubrique les noms employés pour appeler quelqu’un dont on ne connaît pas le nom ou pour parler de lui.
+
+
+ + + +
9.7.1.7
+
+ +
Use this domain for terms of endearment--a name used by lovers or spouses to express love or intimacy. Some languages may have special names used by close friends.
+
Classer dans ce champ lexical les mots ou expressions servant à appeler quelqu’un de manière affectueuse : noms employés par les amoureux ou les époux pour exprimer leur amour ou leur intimité. Dans certaines langues, il existe des noms qui s’emploient entre amis proches.
+
+
+ + + +
9.7.2
+
+ +
Use this domain for words referring to the name of a place.
+
Classer dans ce champ lexical des mots ou expressions associés au nom d’un lieu.
+
+
+ + + +
9.7.2.1
+
+ +
Use this domain for the proper names of the countries that exist around the language community, especially those countries where your language is spoken. Include the name of your own country. Do not list every country in the world, unless your language has developed special names or pronunciations for those countries. Include any country that you refer to in your language, especially those names whose pronunciation you have adapted to fit your language. Give the form of the name that you use, rather than the official spelling. For instance the Japanese refer to their country as 'Nihon', but in English will call it 'Japan'. So +'Japan' is an English word and should go into an English dictionary. But 'Nihon' is not an English word and should not go in the dictionary.
+
Classer dans ce champ lexical les noms des pays situés aux alentours de votre groupe linguistique, en particulier ceux des pays où votre langue est parlée. Ne pas oublier de citer votre pays. Ne pas citer tous les pays du monde, à moins qu’il n’existe dans votre langue des noms ou des prononciations spécifiques. Inclure dans cette liste tous les pays dont on parle dans votre langue, notamment ceux dont la prononciation a été modifiée pour s’adapter à votre langue. Donner le nom usité dans votre langue, plutôt que sa formulation officielle. Ainsi, les Japonais appellent leur pays « Nihon », alors qu’en français, il s’appelle « Japon ». Un dictionnaire français doit donc avoir une entrée « Japon » et ne doit pas avoir le mot « Nihon ». En effet « Japon » est le mot français, non « Nihon ».
+
+
+ + + +
9.7.2.2
+
+ +
Use this domain for the proper names of the regions within your country or language area. Some of these may be political regions. Others may be informal terms. Give the local pronunciation, rather than some foreign spelling. You may want to limit this domain to just those areas within your language area. However if you have special names for areas outside of your language area, for example 'the Mideast', you should include them.
+
Classer dans ce champ lexical les noms propres des régions de votre pays ou de votre région linguistique. Celles-ci peuvent être politiques. D’autres peuvent avoir un caractère informel. Donner leur prononciation locale plutôt que celle étrangère. Il se peut que vous souhaitiez limiter ce champ lexical à votre seule région linguistique. Cependant s’il existe des noms désignant des territoires situés hors de votre région linguistique, par exemple le Moyen-Orient, il est conseillé de les inclure dans votre liste.
+
+
+ + + +
9.7.2.3
+
+ +
Use this domain for the proper names of cities, towns, and villages in the language area. Include the names of important cities outside of the language area if your language has a special name for the city or a different pronunciation for it. It might be good to use a map for this. In fact it is good to include a map of the language area in a published dictionary. If your language area is very large, there may be hundreds or thousands of cities, towns, and villages. In this case you will have to decide which should be included in the dictionary. Or you could decided to list them in a special section.
+
Classer dans ce champ lexical les noms de grandes villes, de villes moyennes et de villages situés dans votre région linguistique. Citer aussi les villes importantes n’appartenant pas à votre région linguistique, si elles portent dans votre langue un nom spécial ou si leur nom est prononcé différemment. Pour répondre à cette question, une carte de géographie pourrait être utile. Il est bon en effet de mettre dans le dictionnaire publié, une carte de la région linguistique concernée. Si celle-ci est très vaste, il peut y avoir des centaines, voire des milliers de très grandes villes, de villes moyennes et de villages. Dans ce cas-là, il faudra décider lesquels devraient figurer dans le dictionnaire. On peut aussi décider d’en faire la liste dans une partie du dictionnaire réservée à cet effet.
+
+
+ + + +
9.7.2.4
+
+ +
Use this domain for the proper names of highways, roads, streets, and trails in the language area. If there are many such names, only include the important names (e.g. King's Highway) or commonly used names (e.g. Main Street).
+
Classer dans ce champ lexical les noms propres d’autoroutes, de routes, de rues ou de pistes se trouvant dans votre région linguistique. S’il y a un très grand nombre de noms de ce genre, retenez seulement les plus importants (ex. voie royale) ou ceux qui sont le plus utilisés (ex la Grand-rue).
+
+
+ + + +
9.7.2.5
+
+ +
Use this domain for the proper names of the heavenly bodies.
+
Classer dans ce champ lexical les noms propres des corps célestes.
+
+
+ + + +
9.7.2.6
+
+ +
Use this domain for the proper names of the continents. Only include the names of continents if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms des continents. Ne mettre les continents que s’ils ont un nom emprunté ou adapté dans votre langue et qu’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.2.7
+
+ +
Use this domain for the proper names of the mountains in the language area. Only include the names of mountains outside the language area if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms propres des montagnes situées dans votre région linguistique. Ne citer les noms de montagnes situées en dehors de votre région linguistique que si votre langue a emprunté ces noms ou en a adapté la prononciation, et s’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.2.8
+
+ +
Use this domain for the proper names of the oceans and lakes in the language area. Only include the names of oceans and lakes outside the language area if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms propres des océans et des lacs situés dans votre région linguistique. Ne citer les noms d’océans et de lacs situés en dehors de votre région linguistique que si votre langue en a emprunté les noms ou en a adapté la prononciation, et s’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.2.9
+
+ +
Use this domain for the proper names of the rivers in the language area. Only include the names of rivers outside the language area if your language has borrowed or adapted the name and you talk about them in your language.
+
Classer dans ce champ lexical les noms propres des cours d’eau de cette région linguistique. Ne citer ceux situés en dehors de votre région linguistique que si votre langue a emprunté ces noms ou en a adapté la prononciation, et s’il vous arrive d’en parler dans votre langue.
+
+
+ + + +
9.7.3
+
+ +
Use this domain for words related to the name of a thing. Many cultures give names to particular buildings, ships, airplanes, organizations, companies, schools, and other things. If your language has hundreds of names for some kind of thing, it is best to not try to list them all. But if there are a few important names for one kind of thing, set up a domain for them.
+
Classer dans ce champ lexical des mots ou expressions associés au nom propre d’une chose. Un grand nombre de cultures donne un nom propre à certains édifices, à des bateaux, à des avions, à des organismes, à des entreprises, à des écoles, etc. Si votre langue possède des centaines de noms pour certaines catégories de choses, le mieux est de ne pas essayer d’en dresser une liste complète. Par contre, s’il existe quelques noms importants pour une catégorie particulière de choses, on les réunira dans un champ lexical.
+
+
+ + + +
9.7.3.1
+
+ +
Use this domain for words referring to the name of an animal. Some cultures give names to domesticated animals or to animals in stories. Think through each kind of domesticated animal.
+
Classer dans ce champ lexical des mots ou expressions se référant au nom d’un animal. Certaines cultures donnent des noms aux animaux domestiques ou aux animaux qui jouent un rôle dans des histoires. Penser à différentes sortes d’animaux domestiques.
+
+
+ + + +
9.7.3.2
+
+ +
Use this domain for words referring to the name of a building.
+
Classer dans ce champ lexical le vocabulaire qui se rapporte au nom propre d’un édifice.
+
+
+
+ + + + +
Conf
+
+
+ + + +
Dis
+
+
+ + + +
Pend
+
+
+ + + +
Tent
+
prov
+
+
+
+ + + + + + + + + +
PV
+
+
+ + + +
000
+
+
+ + + +
100
+
+
+ + + +
101
+
+
+ + + +
102
+
+
+ + + +
103
+
+
+ + + +
104
+
+
+ + + +
105
+
+
+ + + +
106
+
+
+ + + +
107
+
+
+ + + +
110
+
+
+ + + +
111
+
+
+ + + +
112
+
+
+ + + +
113
+
+
+ + + +
114
+
+
+ + + +
115
+
+
+ + + +
116
+
+
+ + + +
117
+
+
+ + + +
118
+
+
+ + + +
119
+
+
+ + + +
120
+
+
+ + + +
121
+
+
+ + + +
122
+
+
+ + + +
123
+
+
+ + + +
124
+
+
+ + + +
125
+
+
+ + + +
126
+
+
+ + + +
127
+
+
+ + + +
128
+
+
+ + + +
129
+
+
+ + + +
1210
+
+
+ + + +
1211
+
+
+ + + +
1212
+
+
+ + + +
1213
+
+
+ + + +
130
+
+
+ + + +
131
+
+
+ + + +
132
+
+
+ + + +
133
+
+
+ + + +
134
+
+
+ + + +
135
+
+
+ + + +
136
+
+
+ + + +
137
+
+
+ + + +
138
+
+
+ + + +
140
+
+
+ + + +
141
+
+
+ + + +
142
+
+
+ + + +
143
+
+
+ + + +
144
+
+
+ + + +
145
+
+
+ + + +
146
+
+
+ + + +
147
+
+
+ + + +
GC
+
+
+ + + +
150
+
+
+ + + +
151
+
+
+ + + +
152
+
+
+ + + +
153
+
+
+ + + +
154
+
+
+ + + +
155
+
+
+ + + +
156
+
+
+ + + +
157
+
+
+ + + +
158
+
+
+ + + +
159
+
+
+ + + +
160
+
+
+ + + +
161
+
+
+ + + +
162
+
+
+ + + +
163
+
+
+ + + +
164
+
+
+ + + +
165
+
+
+ + + +
166
+
+
+ + + +
167
+
+
+ + + +
168
+
+
+ + + +
170
+
+
+ + + +
171
+
+
+ + + +
172
+
+
+ + + +
173
+
+
+ + + +
174
+
+
+ + + +
175
+
+
+ + + +
176
+
+
+ + + +
177
+
+
+ + + +
178
+
+
+ + + +
179
+
+
+ + + +
1710
+
+
+ + + +
180
+
+
+ + + +
181
+
+
+ + + +
181.1
+
+
+ + + +
181.2
+
+
+ + + +
182
+
+
+ + + +
183
+
+
+ + + +
184
+
+
+ + + +
185
+
+
+ + + +
186
+
+
+ + + +
190
+
+
+ + + +
191
+
+
+ + + +
192
+
+
+ + + +
193
+
+
+ + + +
194
+
+
+ + + +
195
+
+
+ + + +
196
+
+
+ + + +
197
+
+
+ + + +
198
+
+
+ + + +
200
+
+
+ + + +
201
+
+
+ + + +
201.1
+
+
+ + + +
202
+
+
+ + + +
203
+
+
+ + + +
204
+
+
+ + + +
205
+
+
+ + + +
206
+
+
+ + + +
207
+
+
+ + + +
208
+
+
+ + + +
209
+
+
+ + + +
2010
+
+
+ + + +
210
+
+
+ + + +
211
+
+
+ + + +
212
+
+
+ + + +
213
+
+
+ + + +
214
+
+
+ + + +
215
+
+
+ + + +
216
+
+
+ + + +
217
+
+
+ + + +
218
+
+
+ + + +
MC
+
+
+ + + +
220
+
+
+ + + +
221
+
+
+ + + +
222
+
+
+ + + +
223
+
+
+ + + +
224
+
+
+ + + +
225
+
+
+ + + +
226
+
+
+ + + +
227
+
+
+ + + +
228
+
+
+ + + +
230
+
+
+ + + +
231
+
+
+ + + +
232
+
+
+ + + +
233
+
+
+ + + +
234
+
+
+ + + +
235
+
+
+ + + +
236
+
+
+ + + +
237
+
+
+ + + +
240
+
+
+ + + +
241
+
+
+ + + +
242
+
+
+ + + +
243
+
+
+ + + +
244
+
+
+ + + +
245
+
+
+ + + +
246
+
+
+ + + +
247
+
+
+ + + +
248
+
+
+ + + +
249
+
+
+ + + +
250
+
+
+ + + +
251
+
+
+ + + +
252
+
+
+ + + +
253
+
+
+ + + +
254
+
+
+ + + +
255
+
+
+ + + +
256
+
+
+ + + +
257
+
+
+ + + +
258
+
+
+ + + +
260
+
+
+ + + +
261
+
+
+ + + +
262
+
+
+ + + +
263
+
+
+ + + +
264
+
+
+ + + +
265
+
+
+ + + +
266
+
+
+ + + +
270
+
+
+ + + +
271
+
+
+ + + +
272
+
+
+ + + +
273
+
+
+ + + +
274
+
+
+ + + +
275
+
+
+ + + +
276
+
+
+ + + +
277
+
+
+ + + +
278
+
+
+ + + +
280
+
+
+ + + +
281
+
+
+ + + +
282
+
+
+ + + +
283
+
+
+ + + +
284
+
+
+ + + +
285
+
+
+ + + +
286
+
+
+ + + +
287
+
+
+ + + +
288
+
+
+ + + +
289
+
+
+ + + +
290
+
+
+ + + +
291
+
+
+ + + +
292
+
+
+ + + +
293
+
+
+ + + +
294
+
+
+ + + +
295
+
+
+ + + +
296
+
+
+ + + +
300
+
+
+ + + +
301
+
+
+ + + +
302
+
+
+ + + +
303
+
+
+ + + +
304
+
+
+ + + +
305
+
+
+ + + +
306
+
+
+ + + +
310
+
+
+ + + +
311
+
+
+ + + +
312
+
+
+ + + +
313
+
+
+ + + +
314
+
+
+ + + +
315
+
+
+ + + +
316
+
+
+ + + +
317
+
+
+ + + +
318
+
+
+ + + +
320
+
+
+ + + +
321
+
+
+ + + +
322
+
+
+ + + +
323
+
+
+ + + +
324
+
+
+ + + +
325
+
+
+ + + +
326
+
+
+ + + +
327
+
+
+ + + +
328
+
+
+ + + +
330
+
+
+ + + +
331
+
+
+ + + +
332
+
+
+ + + +
333
+
+
+ + + +
334
+
+
+ + + +
335
+
+
+ + + +
336
+
+
+ + + +
337
+
+
+ + + +
338
+
+
+ + + +
339
+
+
+ + + +
340
+
+
+ + + +
341
+
+
+ + + +
342
+
+
+ + + +
342.1
+
+
+ + + +
343
+
+
+ + + +
344
+
+
+ + + +
345
+
+
+ + + +
346
+
+
+ + + +
347
+
+
+ + + +
348
+
+
+ + + +
349
+
+
+ + + +
350
+
+
+ + + +
351
+
+
+ + + +
352
+
+
+ + + +
353
+
+
+ + + +
354
+
+
+ + + +
355
+
+
+ + + +
356
+
+
+ + + +
357
+
+
+ + + +
358
+
+
+ + + +
360
+
+
+ + + +
361
+
+
+ + + +
362
+
+
+ + + +
363
+
+
+ + + +
364
+
+
+ + + +
365
+
+
+ + + +
366
+
+
+ + + +
367
+
+
+ + + +
368
+
+
+ + + +
369
+
+
+ + + +
370
+
+
+ + + +
371
+
+
+ + + +
372
+
+
+ + + +
373
+
+
+ + + +
374
+
+
+ + + +
375
+
+
+ + + +
376
+
+
+ + + +
377
+
+
+ + + +
378
+
+
+ + + +
379
+
+
+ + + +
380
+
+
+ + + +
381
+
+
+ + + +
382
+
+
+ + + +
383
+
+
+ + + +
384
+
+
+ + + +
385
+
+
+ + + +
386
+
+
+ + + +
387
+
+
+ + + +
388
+
+
+ + + +
389
+
+
+ + + +
390
+
+
+ + + +
391
+
+
+ + + +
392
+
+
+ + + +
393
+
+
+ + + +
394
+
+
+ + + +
395
+
+
+ + + +
396
+
+
+ + + +
397
+
+
+ + + +
398
+
+
+ + + +
399
+
+
+ + + +
400
+
+
+ + + +
401
+
+
+ + + +
402
+
+
+ + + +
403
+
+
+ + + +
404
+
+
+ + + +
405
+
+
+ + + +
406
+
+
+ + + +
407
+
+
+ + + +
408
+
+
+ + + +
410
+
+
+ + + +
411
+
+
+ + + +
412
+
+
+ + + +
413
+
+
+ + + +
414
+
+
+ + + +
415
+
+
+ + + +
416
+
+
+ + + +
417
+
+
+ + + +
EC
+
+
+ + + +
420
+
+
+ + + +
421
+
+
+ + + +
422
+
+
+ + + +
423
+
+
+ + + +
424
+
+
+ + + +
425
+
+
+ + + +
426
+
+
+ + + +
427
+
+
+ + + +
428
+
+
+ + + +
429
+
+
+ + + +
430
+
+
+ + + +
431
+
+
+ + + +
432
+
+
+ + + +
433
+
+
+ + + +
434
+
+
+ + + +
435
+
+
+ + + +
436
+
+
+ + + +
437
+
+
+ + + +
438
+
+
+ + + +
439
+
+
+ + + +
440
+
+
+ + + +
441
+
+
+ + + +
442
+
+
+ + + +
443
+
+
+ + + +
444
+
+
+ + + +
445
+
+
+ + + +
446
+
+
+ + + +
447
+
+
+ + + +
450
+
+
+ + + +
451
+
+
+ + + +
452
+
+
+ + + +
453
+
+
+ + + +
454
+
+
+ + + +
455
+
+
+ + + +
456
+
+
+ + + +
457
+
+
+ + + +
458
+
+
+ + + +
460
+
+
+ + + +
461
+
+
+ + + +
462
+
+
+ + + +
463
+
+
+ + + +
463.1
+
+
+ + + +
464
+
+
+ + + +
465
+
+
+ + + +
466
+
+
+ + + +
467
+
+
+ + + +
468
+
+
+ + + +
470
+
+
+ + + +
471
+
+
+ + + +
472
+
+
+ + + +
473
+
+
+ + + +
474
+
+
+ + + +
475
+
+
+ + + +
476
+
+
+ + + +
477
+
+
+ + + +
480
+
+
+ + + +
481
+
+
+ + + +
482
+
+
+ + + +
483
+
+
+ + + +
484
+
+
+ + + +
485
+
+
+ + + +
486
+
+
+ + + +
487
+
+
+ + + +
488
+
+
+ + + +
489
+
+
+ + + +
490
+
+
+ + + +
491
+
+
+ + + +
492
+
+
+ + + +
493
+
+
+ + + +
494
+
+
+ + + +
495
+
+
+ + + +
496
+
+
+ + + +
497
+
+
+ + + +
498
+
+
+ + + +
499
+
+
+ + + +
500
+
+
+ + + +
501
+
+
+ + + +
502
+
+
+ + + +
503
+
+
+ + + +
504
+
+
+ + + +
505
+
+
+ + + +
506
+
+
+ + + +
507
+
+
+ + + +
508
+
+
+ + + +
509
+
+
+ + + +
SL
+
+
+ + + +
510
+
+
+ + + +
511
+
+
+ + + +
512
+
+
+ + + +
513
+
+
+ + + +
514
+
+
+ + + +
515
+
+
+ + + +
516
+
+
+ + + +
517
+
+
+ + + +
520
+
+
+ + + +
521
+
+
+ + + +
522
+
+
+ + + +
523
+
+
+ + + +
524
+
+
+ + + +
525
+
+
+ + + +
526
+
+
+ + + +
527
+
+
+ + + +
528
+
+
+ + + +
529
+
+
+ + + +
530
+
+
+ + + +
531
+
+
+ + + +
532
+
+
+ + + +
533
+
+
+ + + +
5331
+
+
+ + + +
5331a
+
+
+ + + +
5331c
+
+
+ + + +
5331e
+
+
+ + + +
5331i
+
+
+ + + +
5331p
+
+
+ + + +
5331u
+
+
+ + + +
5331o
+
+
+ + + +
5331t
+
+
+ + + +
5331v
+
+
+ + + +
5331y
+
+
+ + + +
5331m
+
+
+ + + +
5331f
+
+
+ + + +
5331h
+
+
+ + + +
5331r
+
+
+ + + +
5331s
+
+
+ + + +
5331g
+
+
+ + + +
5331b
+
+
+ + + +
5331x
+
+
+ + + +
534
+
+
+ + + +
5341
+
+
+ + + +
5341i
+
+
+ + + +
5341i1
+
+
+ + + +
5341i2
+
+
+ + + +
5341i3
+
+
+ + + +
5341i4
+
+
+ + + +
5341i5
+
+
+ + + +
5341i6
+
+
+ + + +
5341i7
+
+
+ + + +
5341m
+
+
+ + + +
5341m1
+
+
+ + + +
5341m2
+
+
+ + + +
5341m3
+
+
+ + + +
5341m4
+
+
+ + + +
5341m5
+
+
+ + + +
5341m6
+
+
+ + + +
5341m7
+
+
+ + + +
5341m8
+
+
+ + + +
5341m9
+
+
+ + + +
5341m10
+
+
+ + + +
5341m11
+
+
+ + + +
5341c
+
+
+ + + +
5341c1
+
+
+ + + +
5341c2
+
+
+ + + +
5341c3
+
+
+ + + +
5341c4
+
+
+ + + +
5341c5
+
+
+ + + +
5341c6
+
+
+ + + +
5341a
+
+
+ + + +
5341a1
+
+
+ + + +
5341a2
+
+
+ + + +
5341a3
+
+
+ + + +
5341a4
+
+
+ + + +
5341a5
+
+
+ + + +
5341a6
+
+
+ + + +
5341a7
+
+
+ + + +
5341a8
+
+
+ + + +
5341a9
+
+
+ + + +
5341a10
+
+
+ + + +
5341a11
+
+
+ + + +
5341a12
+
+
+ + + +
5341e
+
+
+ + + +
5341s
+
+
+ + + +
5341x
+
+
+ + + +
5341r
+
+
+ + + +
535
+
+
+ + + +
536
+
+
+ + + +
537
+
+
+ + + +
537.1
+
+
+ + + +
538
+
+
+ + + +
539
+
+
+ + + +
5310
+
+
+ + + +
5311
+
+
+ + + +
540
+
+
+ + + +
541
+
+
+ + + +
542
+
+
+ + + +
543
+
+
+ + + +
544
+
+
+ + + +
545
+
+
+ + + +
546
+
+
+ + + +
547
+
+
+ + + +
548
+
+
+ + + +
549
+
+
+ + + +
550
+
+
+ + + +
551
+
+
+ + + +
552
+
+
+ + + +
553
+
+
+ + + +
554
+
+
+ + + +
555
+
+
+ + + +
556
+
+
+ + + +
557
+
+
+ + + +
558
+
+
+ + + +
560
+
+
+ + + +
561
+
+
+ + + +
562
+
+
+ + + +
563
+
+
+ + + +
564
+
+
+ + + +
565
+
+
+ + + +
566
+
+
+ + + +
567
+
+
+ + + +
SG
+
+
+ + + +
570
+
+
+ + + +
571
+
+
+ + + +
572
+
+
+ + + +
573
+
+
+ + + +
574
+
+
+ + + +
575
+
+
+ + + +
576
+
+
+ + + +
577
+
+
+ + + +
578
+
+
+ + + +
579
+
+
+ + + +
580
+
+
+ + + +
581
+
+
+ + + +
582
+
+
+ + + +
583
+
+
+ + + +
584
+
+
+ + + +
585
+
+
+ + + +
586
+
+
+ + + +
587
+
+
+ + + +
588
+
+
+ + + +
589
+
+
+ + + +
590
+
+
+ + + +
591
+
+
+ + + +
592
+
+
+ + + +
593
+
+
+ + + +
594
+
+
+ + + +
595
+
+
+ + + +
596
+
+
+ + + +
597
+
+
+ + + +
600
+
+
+ + + +
601
+
+
+ + + +
602
+
+
+ + + +
603
+
+
+ + + +
604
+
+
+ + + +
605
+
+
+ + + +
606
+
+
+ + + +
607
+
+
+ + + +
608
+
+
+ + + +
609
+
+
+ + + +
610
+
+
+ + + +
611
+
+
+ + + +
612
+
+
+ + + +
613
+
+
+ + + +
614
+
+
+ + + +
615
+
+
+ + + +
616
+
+
+ + + +
617
+
+
+ + + +
618
+
+
+ + + +
619
+
+
+ + + +
PP
+
+
+ + + +
620
+
+
+ + + +
621
+
+
+ + + +
621.1
+
+
+ + + +
621.2
+
+
+ + + +
621.3
+
+
+ + + +
621.4
+
+
+ + + +
622
+
+
+ + + +
623
+
+
+ + + +
624
+
+
+ + + +
625
+
+
+ + + +
626
+
+
+ + + +
626.1
+
+
+ + + +
626.2
+
+
+ + + +
626.3
+
+
+ + + +
626.4
+
+
+ + + +
626.5
+
+
+ + + +
627
+
+
+ + + +
628
+
+
+ + + +
628.1
+
+
+ + + +
629
+
+
+ + + +
630
+
+
+ + + +
631
+
+
+ + + +
632
+
+
+ + + +
633
+
+
+ + + +
634
+
+
+ + + +
635
+
+
+ + + +
636
+
+
+ + + +
640
+
+
+ + + +
641
+
+
+ + + +
642
+
+
+ + + +
643
+
+
+ + + +
644
+
+
+ + + +
645
+
+
+ + + +
646
+
+
+ + + +
647
+
+
+ + + +
648
+
+
+ + + +
650
+
+
+ + + +
651
+
+
+ + + +
652
+
+
+ + + +
653
+
+
+ + + +
654
+
+
+ + + +
655
+
+
+ + + +
656
+
+
+ + + +
657
+
+
+ + + +
658
+
+
+ + + +
659
+
+
+ + + +
660
+
+
+ + + +
661
+
+
+ + + +
662
+
+
+ + + +
663
+
+
+ + + +
664
+
+
+ + + +
665
+
+
+ + + +
666
+
+
+ + + +
667
+
+
+ + + +
668
+
+
+ + + +
669
+
+
+ + + +
AR
+
+
+ + + +
670
+
+
+ + + +
671
+
+
+ + + +
672
+
+
+ + + +
673
+
+
+ + + +
674
+
+
+ + + +
675
+
+
+ + + +
676
+
+
+ + + +
677
+
+
+ + + +
680
+
+
+ + + +
681
+
+
+ + + +
682
+
+
+ + + +
683
+
+
+ + + +
684
+
+
+ + + +
685
+
+
+ + + +
686
+
+
+ + + +
687
+
+
+ + + +
688
+
+
+ + + +
689
+
+
+ + + +
690
+
+
+ + + +
691
+
+
+ + + +
692
+
+
+ + + +
693
+
+
+ + + +
693.1
+
+
+ + + +
694
+
+
+ + + +
695
+
+
+ + + +
695.1
+
+
+ + + +
696
+
+
+ + + +
696.1
+
+
+ + + +
696.2
+
+
+ + + +
697
+
+
+ + + +
698
+
+
+ + + +
700
+
+
+ + + +
701
+
+
+ + + +
702
+
+
+ + + +
703
+
+
+ + + +
704
+
+
+ + + +
705
+
+
+ + + +
706
+
+
+ + + +
707
+
+
+ + + +
708
+
+
+ + + +
710
+
+
+ + + +
711
+
+
+ + + +
712
+
+
+ + + +
713
+
+
+ + + +
714
+
+
+ + + +
715
+
+
+ + + +
716
+
+
+ + + +
717
+
+
+ + + +
718
+
+
+ + + +
719
+
+
+ + + +
720
+
+
+ + + +
721
+
+
+ + + +
722
+
+
+ + + +
723
+
+
+ + + +
724
+
+
+ + + +
725
+
+
+ + + +
726
+
+
+ + + +
727
+
+
+ + + +
728
+
+
+ + + +
729
+
+
+ + + +
730
+
+
+ + + +
731
+
+
+ + + +
732
+
+
+ + + +
733
+
+
+ + + +
734
+
+
+ + + +
735
+
+
+ + + +
736
+
+
+ + + +
737
+
+
+ + + +
738
+
+
+ + + +
740
+
+
+ + + +
741
+
+
+ + + +
742
+
+
+ + + +
743
+
+
+ + + +
744
+
+
+ + + +
745
+
+
+ + + +
746
+
+
+ + + +
747
+
+
+ + + +
748
+
+
+ + + +
750
+
+
+ + + +
751
+
+
+ + + +
752
+
+
+ + + +
753
+
+
+ + + +
754
+
+
+ + + +
754.1
+
+
+ + + +
754.2
+
+
+ + + +
755
+
+
+ + + +
755.1
+
+
+ + + +
756
+
+
+ + + +
757
+
+
+ + + +
758
+
+
+ + + +
759
+
+
+ + + +
WR
+
+
+ + + +
760
+
+
+ + + +
761
+
+
+ + + +
762
+
+
+ + + +
763
+
+
+ + + +
764
+
+
+ + + +
765
+
+
+ + + +
766
+
+
+ + + +
767
+
+
+ + + +
768
+
+
+ + + +
769
+
+
+ + + +
770
+
+
+ + + +
771
+
+
+ + + +
772
+
+
+ + + +
773
+
+
+ + + +
774
+
+
+ + + +
775
+
+
+ + + +
776
+
+
+ + + +
776.1
+
+
+ + + +
776.2
+
+
+ + + +
776.3
+
+
+ + + +
776.4
+
+
+ + + +
776.5
+
+
+ + + +
776.6
+
+
+ + + +
777
+
+
+ + + +
778
+
+
+ + + +
778.1
+
+
+ + + +
778.2
+
+
+ + + +
779
+
+
+ + + +
780
+
+
+ + + +
781
+
+
+ + + +
782
+
+
+ + + +
782.1
+
+
+ + + +
782.2
+
+
+ + + +
783
+
+
+ + + +
783.1
+
+
+ + + +
784
+
+
+ + + +
785
+
+
+ + + +
786
+
+
+ + + +
787
+
+
+ + + +
788
+
+
+ + + +
788.1
+
+
+ + + +
788.2
+
+
+ + + +
789
+
+
+ + + +
790
+
+
+ + + +
791
+
+
+ + + +
792
+
+
+ + + +
793
+
+
+ + + +
794
+
+
+ + + +
795
+
+
+ + + +
796
+
+
+ + + +
797
+
+
+ + + +
798
+
+
+ + + +
800
+
+
+ + + +
801
+
+
+ + + +
802
+
+
+ + + +
803
+
+
+ + + +
804
+
+
+ + + +
805
+
+
+ + + +
810
+
+
+ + + +
811
+
+
+ + + +
812
+
+
+ + + +
813
+
+
+ + + +
814
+
+
+ + + +
815
+
+
+ + + +
816
+
+
+ + + +
820
+
+
+ + + +
821
+
+
+ + + +
822
+
+
+ + + +
823
+
+
+ + + +
824
+
+
+ + + +
824.1
+
+
+ + + +
825
+
+
+ + + +
826
+
+
+ + + +
827
+
+
+ + + +
828
+
+
+ + + +
829
+
+
+ + + +
LC
+
+
+ + + +
830
+
+
+ + + +
831
+
+
+ + + +
832
+
+
+ + + +
833
+
+
+ + + +
834
+
+
+ + + +
835
+
+
+ + + +
836
+
+
+ + + +
837
+
+
+ + + +
838
+
+
+ + + +
839
+
+
+ + + +
840
+
+
+ + + +
841
+
+
+ + + +
842
+
+
+ + + +
843
+
+
+ + + +
844
+
+
+ + + +
845
+
+
+ + + +
846
+
+
+ + + +
847
+
+
+ + + +
848
+
+
+ + + +
850
+
+
+ + + +
851
+
+
+ + + +
852
+
+
+ + + +
853
+
+
+ + + +
854
+
+
+ + + +
855
+
+
+ + + +
856
+
+
+ + + +
857
+
+
+ + + +
858
+
+
+ + + +
860
+
+
+ + + +
861
+
+
+ + + +
862
+
+
+ + + +
863
+
+
+ + + +
864
+
+
+ + + +
865
+
+
+ + + +
866
+
+
+ + + +
867
+
+
+ + + +
867.1
+
+
+ + + +
868
+
+
+ + + +
869
+
+
+ + + +
870
+
+
+ + + +
871
+
+
+ + + +
872
+
+
+ + + +
873
+
+
+ + + +
874
+
+
+ + + +
875
+
+
+ + + +
876
+
+
+ + + +
876.1
+
+
+ + + +
876.2
+
+
+ + + +
876.3
+
+
+ + + +
877
+
+
+ + + +
880
+
+
+ + + +
881
+
+
+ + + +
882
+
+
+ + + +
883
+
+
+ + + +
884
+
+
+ + + +
885
+
+
+ + + +
886
+
+
+ + + +
887
+
+
+ + + +
888
+
+
+ + + +
890
+
+
+ + + +
TX
+
+
+ + + +
900
+
+
+ + + +
901
+
+
+ + + +
902
+
+
+ + + +
903
+
+
+ + + +
910
+
+
+ + + +
911
+
+
+ + + +
912
+
+
+ + + +
913
+
+
+ + + +
914
+
+
+ + + +
915
+
+
+
+ + + + +
BT
+
RT
+
+
+ + + +
FT
+
TLb
+
+
+ + + +
LT
+
TLt
+
+
+
+ + + + + +
adv
+
adv
+
+ +
An adverb, narrowly defined, is a part of speech whose members modify verbs for such categories as time, manner, place, or direction. An adverb, broadly defined, is a part of speech whose members modify any constituent class of words other than nouns, such as verbs, adjectives, adverbs, phrases, clauses, or sentences. Under this definition, the possible type of modification depends on the class of the constituent being modified.
+
Dans un sens restreint, un adverbe modifie un verbe à propos d’informations concernant le moment, le lieu, la manière ou la direction. Dans un sens plus large, un adverbe modifie n’importe quel autre constituant autre que le nom, tel qu’un verbe, un adjectif, un adverbe, un syntagme, une proposition ou une phrase. Dans cette acception, le type de modification apportée par l’adverbe dépend de la classe du constituant qui est modifié.
+
+ +
+ + + +
n
+
n
+
+ +
A noun is a broad classification of parts of speech which include substantives and nominals.
+
+ +
+ + + +
pro-form
+
proforme
+
+ +
A pro-form is a part of speech whose members usually substitute for other constituents, including phrases, clauses, or sentences, and whose meaning is recoverable from the linguistic or extralinguistic context.
+
+ +
+ + + +
pro
+
pron
+
+ +
A pronoun is a pro-form which functions like a noun and substitutes for a noun or noun phrase.
+
Un pronom se substitue à un nominal (nom ou syntagme nominal).
+
+ +
+ + + +
interrog
+
pron.int
+
+ +
An interrogative pro-form is a pro-form that is used in questions to stand for the item questioned.
+
Une proforme interrogatif (pronom interrogatif) est une proforme (un pronom) remplaçant le terme sur lequel porte l’interrogation [Qui a-t-il vu ? Que voit-il ? Où va-t-il ?, etc.].
+
+ +
+ + + +
v
+
v
+
+ +
A verb is a part of speech whose members typically signal events and actions; constitute, singly or in a phrase, a minimal predicate in a clause; govern the number and types of other constituents which may occur in the clause; and, in inflectional languages, may be inflected for tense, aspect, voice, modality, or agreement with other constituents in person, number, or grammatical gender.
+
Un verbe est une partie du discours caractérisée syntaxiquement par sa fonction de prédicat. En tant que tel, il gouverne la structure argumentale de la proposition, c’est-à-dire le nombre d’arguments possibles. Dans les langues flexionnelles, il peut être fléchi en ce qui concerne le temps, l’aspect, la voix ou le mode ; il peut aussi être en accord avec d’autres constituants en ce qui concerne la personne, le nombre ou le genre. Du point de vue sémantique, il désigne généralement des événements et des actions ou encore des états.
+
+ +
+ + + +
TAM
+
+ +
+ + + + + + + +
Rep
+
+ +
+ + + + + + + +
Ideo
+
Ideo
+
Idéo
+
+ +
+ + + +
prt
+
partic
+
+ +
A particle is a part of speech whose members do not belong to one of the main classes of words, is invariable, and typically has grammatical or pragmatic meaning.
+
Une particule est une partie du discours qui n’appartient pas aux classes majeures de mot, qui est invariable et qui a généralement un sens grammatical ou pragmatique.
+
+ +
+ + + +
sup
+
+ +
Particle qui determine le degre d'un adjectif
+
+ +
+ + + +
nomprt
+
partic.nom
+
+ +
A nominal particle is a member of a closed class of particles that co-occur with nouns.
+
Une particule nominale est une particule qui modifie un nominal.
+
+ +
+ + + +
q
+
partic.interr
+
+ +
A question particle is a part of speech whose members signal a yes/no question.
+
Une particule interrogative est une particule indiquant une question polaire (réponse par oui ou par non).
+
+ +
+ + + +
adj
+
adj
+
+ +
An adjective is a part of speech whose members modify nouns. An adjective specifies the attributes of a noun referent. Note: this is one case among many. Adjectives are a class of modifiers.
+
Un adjectif est un modificateur du nom.
+
+ +
+ + + +
rel
+
relativis
+
+ +
A relativizer is a subordinating connective that links a relative clause to its head noun. It is distinguishable from a relative pronoun in that it does not have a nominal function within the relative clause.
+
Un relativiseur est un connecteur subordonnant qui relie une proposition relative à son antécédent, mais qui se distingue d’un pronom relatif en ce qu’il n’assume aucune fonction dans la proposition relative.
+
+ +
+ + + +
conn
+
conn
+
+ +
Also known as a conjunction, a connective is a class of parts of speech whose members syntactically link words or larger constituents, and expresses a semantic relationship between them. A conjunction is positionally fixed relative to one or more of the elements related by it, thus distinguishing it from constituents such as English conjunctive adverbs.
+
Appelé aussi conjonction, un connecteur est une partie du discours qui lie syntaxiquement des mots ou des constituants plus vastes. La place du connecteur est fixe par rapport à un ou plusieurs des éléments qu’elle relie.
+
+ +
+ + + +
subordconn
+
conn.subord
+
+ +
A subordinating connective is a connective that links constructions by making one of them a constituent of another. The subordinating conjunction typically marks the incorporated constituent.
+
Un connecteur subordonnant est un connecteur qui relie des constituants entre eux en faisant de l’un d’entre eux le constituant de l’autre. Le plus souvent, le connecteur subordonnant marque le constituant qui est incorporé dans l’autre.
+
+ +
+ + + +
advlizer
+
adverbialisateur
+
+ +
An adverbializer is a subordinating connective that links a subordinate clause to a main clause, and indicates that the subordinate clause has an 'adverbial' or interpropositional relation to the main clause, indicating purpose, condition, time, and location.
+
+ +
+ + + +
coordconn
+
conn.coord
+
+ +
A coordinating connective is a connective that links constituents without syntactically subordinating one to the other.
+
Un connecteur coordonnant est un connecteur qui relie des constituants entre eux sans établir une subordination de l’un ou de l’autre.
+
+ +
+ + + +
prenom
+
+ +
An element which may be compounded to the front of a noun to signal information such as size, color, etc..
+
+ +
+ + + +
existmrkr
+
marq.exist
+
+ +
An existential marker is a part of speech whose members are found in distinct clause types and which mark a referent's existence.
+
+ +
+ + + +
post
+
post
+
+ +
A postposition is an adposition that occurs after its complement.
+
+ +
+ + + +
Cplmt
+
+ +
+ + + + + + + + + + + +
interj
+
interj
+
+ +
An interjection is a part of speech, typically brief in form, such as one syllable or word, whose members are used most often as exclamations or parts of an exclamation. An interjection, typically expressing an emotional reaction, often with respect to an accompanying sentence, is not syntactically related to other accompanying expressions, and may include a combination of sounds not otherwise found in the language.
+
Une interjection est une partie du discours, généralement de forme brève (p.ex. une syllabe [Zut !], un mot [Ciel !]), indécomposable en morphèmes distincts, et qui est utilisée pour exprimer une réaction affective vive du locuteur. De façon générale, l’interjection n’est reliée syntaxiquement à aucun élément d’une phrase, mais forme à elle seule une phrase. Il n’est pas rare que certains sons ou certaines combinaisons de sons soient propres aux interjections.
+
+ +
+ + + + + + + +
preverb
+
+ +
An element which may be compounded to the front of a verb, to signal information such as tense, direction, etc..
+
+ +
+ + + +
num
+
num
+
+ +
A numeral is a part of speech whose members function most typically as adjectives or pronouns and express a number, or relation to the number, such as one of the following: quantity, sequence, frequency, fraction.
+
Un numéral est une sous-classe de nominaux fonctionnant généralement comme adjectifs ou pronoms et exprimant un nombre ou une relation à un nombre comme par exemple une quantité, une séquence, une fréquence ou une fraction.
+
+ +
+ + + +
dem
+
dém
+
+ +
A demonstrative is a determiner that is used deictically to indicate a referent's spatial, temporal, or discourse location. A demonstrative functions as a modifier of a noun, or a pronoun.
+
Un démonstratif est un déterminant déictique indiquant la situation spatiale, temporelle ou discursive du référent. Il fonctionne comme modificateur d’un nom ou d’un pronom.
+
+ +
+ + + +
quant
+
quant
+
+ +
A quantifier is a determiner that expresses a referent's definite or indefinite number or amount. A quantifier functions as a modifier of a noun, or a pronoun.
+
Un quantificateur est un déterminant qui précise la quantité précise ou non par laquelle le nom est défini. Il fonctionne comme modificateur d’un nom ou d’un pronom.
+
+ +
+ + + +
adp
+
adpos
+
+ +
An adposition is a part of speech whose members are of a closed set and occur before or after a complement composed of a noun phrase, noun, pronoun, or clause that functions as a noun phrase and forms a single structure with the complement to express its grammatical and semantic relation to another unit within a clause.
+
+ +
+ + + +
art
+
art
+
+ +
An article is a member of a small class of determiners that identify a noun's definite or indefinite reference, and new or given status.
+
Un article est un déterminant qui modifie le nom en apportant des précisions quant à la définitude (défini, indéfini) ou quant à la structure d’information (nouvelle, donnée).
+
+ +
+
+ + + + +
part
+
part
+
+ +
A particle is a word that does not belong to one of the main classes of words, is invariable in form, and typically has grammatical or pragmatic meaning.
+
Une particule est un mot n’appartenant pas à l’une des classes grammaticales majeures, dont la forme est invariable et qui a en général une valeur grammaticale ou pragmatique.
+
+
+ + + +
ifx
+
infx
+
+ +
An infix is an affix that is inserted within a root or stem.
+
Un infixe est un affixe qui s’insère à l’intérieur d’une base ou d’un radical.
+
+ + +
+ + + +
pfx
+
pfx
+
+ +
A prefix is an affix that is joined before a root or stem.
+
Un préfixe est un affixe qui précède une base ou un radical (qui est donc placé à gauche de la base ou du radical).
+
+ +
+ + + +
smfx
+
smfx
+
+ +
A simulfix is a change or replacement of vowels or consonants (usually vowels) which changes the meaning of a word. (Note: the parser does not currently handle simulfixes.)
+
Un simulfixe est un affixe consistant en un changement ou en un remplacement de voyelles ou de consonnes (généralement des voyelles), un changement de sens résultant de ce changement ou ce remplacement. (Remarque : l’analyseur ne permet pas actuellement de prendre en charge les simulfixes.)
+
+ + +
+ + + +
sfx
+
sfx
+
+ +
A suffix is an affix that is attached to the end of a root or stem.
+
Un suffixe est un affixe qui suit une base ou un radical (qui est donc placé à droite de la base ou du radical).
+
+ +
+ + + +
spfx
+
spfx
+
+ +
A suprafix is a kind of affix in which a suprasegmental is superimposed on one or more syllables of the root or stem, signalling a particular morphosyntactic operation. (Note: the parser does not currently handle suprafixes.)
+
Un suprafixe est une sorte d’affixe dans lequel un trait suprasegmental est imposé à une ou plusieurs syllabes de la base ou du radical signalant un processus morphosyntaxique. (Remarque : l’analyseur ne permet pas actuellement de prendre en charge les suprafixes.)
+
+ + +
+ + + +
cfx
+
cfx
+
+ +
A circumfix is an affix made up of two separate parts which surround and attach to a root or stem.
+
Un circonfixe est un affixe constitué de deux parties distinctes qui s’attachant de part de d’autre de la base ou du radical.
+
+
+ + + +
clit
+
clit
+
+ +
A clitic is a morpheme that has syntactic characteristics of a word, but shows evidence of being phonologically bound to another word. Orthographically, it stands alone.
+
Un clitique est un morphème qui possède les caractérstiques syntaxiques d’un mot mais qui est cependant, du point de vue phonologique, une forme liée, prenant appuis sur un autre mot. Dans l’orthographe, il est écrit séparément.
+
+
+ + + +
enclit
+
enclit
+
+ +
An enclitic is a clitic that is phonologically joined at the end of a preceding word to form a single unit. Orthographically, it may attach to the preceding word.
+
Un enclitique est un clitique qui prend appui sur un mot qui le précède pour former avec lui une unité phonologique. Dans l’orthographe, il peut être rattaché au mot précédent.
+
+ +
+ + + +
proclit
+
proclit
+
+ +
A proclitic is a clitic that precedes the word to which it is phonologically joined. Orthographically, it may attach to the following word.
+
Un proclitique est un clitique qui prend appui sur un mot qui le suit pour former avec lui une unité phonologique. Dans l’orthographe, il peut être rattaché au mot suivant.
+
+ +
+ + + +
bd root
+
rd. lié
+
+ +
A bound root is a root which cannot occur as a separate word apart from any other morpheme.
+
Un radical lié est un radical qui ne peut pas apparaître seul, mais doit toujours être accompagné d’au moins un autre morphème.
+
+ +
+ + + +
ubd root
+
rd
+
+ +
A root is the portion of a word that (i) is common to a set of derived or inflected forms, if any, when all affixes are removed, (ii) is not further analyzable into meaningful elements, being morphologically simple, and, (iii) carries the principle portion of meaning of the words in which it functions.
+
Un radical est un morphème (1°) commun à un ensemble de formes dérivées ou infléchies, obtenu après suppression de tous les affixes (dans ce sens, on parle aussi de « racine »), (2°) morphologiquement simple, donc inanalysable en constituants signifiants , et (3°) ayant la principale part du sens du mot à l’intérieur duquel il fonctionne.
+
+
+ + + +
bd stem
+
base liée
+
+ +
A bound stem is a stem which cannot occur as a separate word apart from any other morpheme.
+
Une base liée est une base qui ne peut pas apparaître seule, mais doit toujours être accompagnée d’au moins un autre morphème.
+
+ +
+ + + +
ubd stem
+
base
+
+ +
"A stem is the root or roots of a word, together with any derivational affixes, to which inflectional affixes are added." (LinguaLinks Library). A stem "may consist solely of a single root morpheme (i.e. a 'simple' stem as in man), or of two root morphemes (e.g. a 'compound' stem, as in blackbird), or of a root morpheme plus a derivational affix (i.e. a 'complex' stem, as in manly, unmanly, manliness). All have in common the notion that it is to the stem that inflectional affixes are attached." (Crystal, 1997:362)
+
Une base est l’élément d’un mot auquel se joignent les affixes flexionnels. Elle peut être simple (un radical, p.ex. « homme ») ou complexe. Dans ce dernier cas, elle peut être composée, c’est-à-dire constituée de plusieurs radicaux (p.ex. « bonhomme ») ou dérivée, c’est-à-dire constituée d’un ou plusieurs radicaux munis d’un ou plusieurs affixes dérivationnels (p.ex. « montage », « démontage »).
+
+
+ + + +
ifxnfx
+
infx.intfx
+
+ +
An infixing interfix is an infix that can occur between two roots or stems.
+
Un infixe interfixé est un infixe placé entre deux bases ou deux radicaux.
+
+ + +
+ + + +
pfxnfx
+
pfx.intfx
+
+ +
A prefixing interfix is a prefix that can occur between two roots or stems.
+
Un préfixe interfixé est un préfixe placé entre deux bases ou deux radicaux.
+
+ +
+ + + +
sfxnfx
+
sfx.intfx
+
+ +
A suffixing interfix is an suffix that can occur between two roots or stems.
+
Un suffixe interfixé est un suffixe placé entre deux bases ou deux radicaux.
+
+ +
+ + + +
phr
+
loc
+
+ +
A phrase is a syntactic structure that consists of more than one word but lacks the subject-predicate organization of a clause.
+
Une locution est une structure comportant plus d’un mot mais qui n’est pas construite sur l’organisation typique d’une phrase.
+
+
+ + + +
dis phr
+
loc. disc
+
+ +
A discontiguous phrase has discontiguous constituents which (a) are separated from each other by one or more intervening constituents, and (b) are considered either (i) syntactically contiguous and unitary, or (ii) realizing the same, single meaning. An example is French ne...pas.
+
Une locution discontinue est formée de constituants discontinus qui (a) sont séparés les uns des autres par un ou plusieurs constituants, et (b) sont considérés soit comme (1°) syntaxiquement contigus et unitaires, ou (2°) manifestent un même et unique sens. Par exemple la négation ne…pas.
+
+
+
+ + + + +
Main
+
+
+
+ + + + + +
Main
+
+
+
+ + + + + +
arch
+
vx
+
+
+ + + +
col
+
fam
+
+
+ + + +
form
+
sout
+
+
+ + + +
hist
+
hist
+
+
+ + + +
hon
+
hon
+
+
+ + + +
inform
+
pop
+
+
+ + + +
non std
+
non std
+
+
+ + + +
obso
+
vieilli
+
+
+ + + +
oldfash
+
anct
+
+
+ + + +
rare
+
rare
+
+
+ + + +
reg
+
niv
+
+
+ + + +
bas reg
+
cour
+
+
+ + + +
hi reg
+
niv.ht
+
+
+ + + +
low reg
+
niv.bs
+
+
+ + + +
mid reg
+
niv.moy
+
+
+ + + +
rest
+
restr
+
+
+ + + +
anml
+
anim
+
+
+ + + +
hum
+
hum
+
+
+ + + +
f
+
f
+
+
+ + + +
m
+
m
+
+
+ + + +
sib
+
germ.msx
+
+
+ + + +
obsc
+
vulg
+
+
+ + + +
off
+
triv
+
+
+ + + +
tab
+
tab
+
+
+ + + +
slg
+
arg
+
+
+ + + +
trad
+
trad
+
+
+
+
diff --git a/tests/corpus/misc/sample.lift b/tests/corpus/misc/sample.lift new file mode 100644 index 0000000..905fc92 --- /dev/null +++ b/tests/corpus/misc/sample.lift @@ -0,0 +1,259 @@ + + + +
+ + + + + + + + + + + + + + + + + +
This records the syllable pattern for a LexPronunciation in FieldWorks. +
+
+
This records the tone information for a LexPronunciation in FieldWorks. +
+
+
This records the multilingual "Form" field of the LexEtymology in FieldWorks. +
+
+
This records a comment (note) in a LexEtymology in FieldWorks. +
+
+
This records residue left over from importing a standard format file into FieldWorks (or LinguaLinks). +
+
+
This field is used to store a literal meaning of the entry. Typically, this field is necessary only for a compound or an idiom where the meaning of the whole is different from the sum of its parts. +
+
+
A summary definition (located at the entry level in the Entry pane) is a general definition summarizing all the senses of a primary entry. It has no theoretical value; its use is solely pragmatic. +
+
+
This field stores the scientific name pertinent to the current sense. +
+
+
+
+ + +
me
+
+ + + + + +
+ + +
blackbird
+
+ + + + + + +annoying bird + + +
+ + +
black
+
+ + + + + + + +color + +
+ + +
bird
+
+ + + + + +avian thingy + + +
+ + +
blak
+
+ + + + + +
pretend alternate spelling of black
+
+
+
+ + +
blackout
+
+ + + + + +when all the electricity in an area is off + + + +Cover up a light source + +
+ + +
toxic
+
+ + +
a note on toxic
+
+ + + + + + +poisonous + +
antrho
+
+ +
a bibnote
+
+ +
a discourse note
+
+ +
a general noteli
+
+
scientific note
+
+
+
+ + +
detox
+
+ + + + + + +a therapudic program for substance abusers + +
+ + +
detoxify
+
+ + + + + + + + +
+ + +
nontoxic
+
+ + + + + + +
+ + +
toxicity
+
+ + + + + +level of poinsonousness + +
+ + +
toxin
+
+ + + + + + + +poison + +
+ + +
de-
+
+ + + + + +remove + +
+ + +
-ify
+
+ + + + + + + + + +
+ + +
toxic waste dump
+
+ + + + +place where poisonous rubbish is stored + +
+
diff --git a/tests/corpus/ranges/test20080407.lift b/tests/corpus/ranges/test20080407.lift new file mode 100644 index 0000000..6fe2b56 --- /dev/null +++ b/tests/corpus/ranges/test20080407.lift @@ -0,0 +1,50 @@ + + +
+ + + + + +
The word is borrowed from another language
+
+
+ + + +
The proto form of the word in another language
+
+
+
+ + +
+ + +
the syllable pattern for a pronunciation
+
+ +
the tone information for a pronunciation
+
+ +
residue left over from importing
+
+ +
literal meaning of an entry
+
+
+
+ +
bird
+ + + + + bird + +
+
diff --git a/tests/corpus/ranges/test20080407.lift-ranges b/tests/corpus/ranges/test20080407.lift-ranges new file mode 100644 index 0000000..531d213 --- /dev/null +++ b/tests/corpus/ranges/test20080407.lift-ranges @@ -0,0 +1,20 @@ + + + + + +
adv
+
modify verbs
+
+ + +
n
+
substantives and nominals
+
+ + +
v
+
signal events and actions
+
+
+
diff --git a/tests/corpus/spec-examples/0.12/baseformrelation.lift b/tests/corpus/spec-examples/0.12/baseformrelation.lift new file mode 100644 index 0000000..973599b --- /dev/null +++ b/tests/corpus/spec-examples/0.12/baseformrelation.lift @@ -0,0 +1,81 @@ + + + + + +
+ brush +
+
+ + + + bristly instrument + + +
+ + bristly instrument used for cleaning, arranging or + applying a liquid to something + +
+
+
+
+ + +
+ hairbrush +
+
+ + + +
+ + kind of brush typically with stiff one inch long + bristles loosely spaced arranged perpendicularly to the + handle for rearranging hair + +
+
+
+ +
+ + +
+ paintbrush +
+
+ + + +
+ + kind of brush of varying sizes and varying lengths + and textures of bristles arranged as an extension of the + handle used to apply paint and similar materials + +
+
+
+ +
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/change-history.lift b/tests/corpus/spec-examples/0.12/change-history.lift new file mode 100644 index 0000000..0a002e0 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/change-history.lift @@ -0,0 +1,21 @@ + + + + +
+ test +
+
+ + +
+ Create the original record +
+
+ +
+ Add quality definitions +
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/dates.lift b/tests/corpus/spec-examples/0.12/dates.lift new file mode 100644 index 0000000..3812409 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/dates.lift @@ -0,0 +1,23 @@ + + + + +
+ srapa +
+
+ + + + slap + + +
+ slap with open hand +
+
+
+
+ +
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/dialects.lift b/tests/corpus/spec-examples/0.12/dialects.lift new file mode 100644 index 0000000..8e3970c --- /dev/null +++ b/tests/corpus/spec-examples/0.12/dialects.lift @@ -0,0 +1,61 @@ + + + + + +
+ apu +
+
+ + + + lime + + +
+ lime +
+
+ +
+ chalk +
+
+ +
+ + lime slaked from burning seashells and used as an + ingredient in chewing betelnut + +
+
+
+ +
+ apuR +
+ + lime, chalk + +
+ + + +
+ ahul +
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/fields any order.lift b/tests/corpus/spec-examples/0.12/fields any order.lift new file mode 100644 index 0000000..10439fb --- /dev/null +++ b/tests/corpus/spec-examples/0.12/fields any order.lift @@ -0,0 +1,107 @@ + + + + + +
+ det +
+
+
+ det +
+ + +
+ A comment in a variant +
+
+
+ + + +
+ A comment in a pronunciation +
+
+
+ des +
+
+ + +
+
+
+ plant +
+
+
+ vegetable +
+
+
+ mushroom +
+
+ + +
+ The fall from the cliff killed him. +
+
+ +
+ A comment in an example +
+
+
+ Werka des to kew. +
+
+ + + +
+ Takero village +
+
+ +
+ A comment in a relation +
+
+
+ +
+ +
+ etymology +
+ + English gloss + + + French gloss + + +
+ English comment +
+
+ French comment +
+
+
+ + +
+ A comment in a note +
+
+
+ The actual text of the note. +
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/full-entry.lift b/tests/corpus/spec-examples/0.12/full-entry.lift new file mode 100644 index 0000000..423fa9d --- /dev/null +++ b/tests/corpus/spec-examples/0.12/full-entry.lift @@ -0,0 +1,76 @@ + + + + + +
+ abat +
+
+ + +
+ abatke +
+
+ + + + grove + + + dusun + + +
+ Kbwai abatke to ksweruk nurare. +
+ +
+ I went to the coconut groves to clear the grass. +
+
+ Saya pergi menyiangi dusun kelapa. +
+
+
+ +
+ Kbwa ti ktwan nurke o abatke. +
+ +
+ I'm going to plant coconut trees in the grove. +
+
+ Saya pergi tanam kelapa di dusun. +
+
+
+ +
+ + This is not limited + to coconut groves but is used for mangoes, etc. + +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/header.lift b/tests/corpus/spec-examples/0.12/header.lift new file mode 100644 index 0000000..349bc61 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/header.lift @@ -0,0 +1,206 @@ + +
+ + + + + +
+ Eng +
+
+ +
+ + The standard alphabetic representation of English (United States + style). + +
+
+
+ + + +
+ Frn +
+
+ +
+ The standard alphabetic representation of French. +
+
+
+ + + +
+ Spn +
+
+
+ + + +
+ Por +
+
+ +
+ The standard alphabetic representation of Portuguese. +
+
+
+ + + +
+ kmk +
+
+
+
+ + + + +
+ The word is borrowed from another language +
+
+
+ + + +
+ The proto form of the word in another language +
+
+
+
+ + + + + + + + + + + + + + +
+ + +
+ This records the syllable pattern for a pronunciation in FLEX. +
+
+ +
+ This records the tone information for a pronunciation in FLEX. +
+
+ +
+ This records a comment (note) in an etymology in FLEX. +
+
+ +
+ + This records residue left over from importing a standard format file into + FieldWorks (or LinguaLinks). + +
+
+ +
+ + This field is used to store a literal meaning of the entry. Typically, + this field is necessary only for a compound or an idiom where the meaning of + the whole is different from the sum of its parts. + +
+
+ +
+ + A summary definition (located at the entry level in the Entry pane) is a + general definition summarizing all the senses of a primary entry. It has no + theoretical value; its use is solely pragmatic. + +
+
+ +
+ + This field stores the scientific name pertinent to the current + sense. + +
+
+ +
+ Type=kcptString; WsSelector=kwsVern +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/hugal-ideal.lift b/tests/corpus/spec-examples/0.12/hugal-ideal.lift new file mode 100644 index 0000000..305798d --- /dev/null +++ b/tests/corpus/spec-examples/0.12/hugal-ideal.lift @@ -0,0 +1,149 @@ + + + + +
+ hugal +
+
+ + + +
+ + A playing card; + a deck of playing cards. + +
+
+
+ + + +
+ + The activity of + playing cards, gambling with cards. + +
+
+ +
+ + + + + + + + + + + + + + +
+ + + +
+ hugálon +
+
+ + + +
+ + An opponent's stake + will be won by someone + in gambling with playing cards. + +
+
+ +
+ + +
+ + + +
+ humugal +
+
+ + + +
+ + Someone will win an + opponent's stake in gambling with playing cards. + +
+
+ +
+ + +
+ + + +
+ ihugal +
+
+ + + +
+ + Money, an article of value, + will be lost by someone + in gambling with playing cards. + +
+
+ +
+ + +
+ + + +
+ munhugal +
+
+ + + +
+ + Two or more + will play cards, gamble with playing cards. + +
+
+ +
+ + + +
+ + Someone will lose money, + an article of value, in gabling with playing cards. + +
+
+ +
+ + +
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/hugal-mdf.lift b/tests/corpus/spec-examples/0.12/hugal-mdf.lift new file mode 100644 index 0000000..fa95326 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/hugal-mdf.lift @@ -0,0 +1,126 @@ + + + + +
+ hugal +
+
+ + + +
+ + A playing card; + a deck of playing cards. + +
+
+
+ + + +
+ + The activity of + playing cards, gambling with cards. + +
+
+
+ + + + + +
+ + + +
+ hugálon +
+
+ + + +
+ + An opponent's stake + will be won by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ humugal +
+
+ + + +
+ + Someone will win an + opponent's stake in gambling with playing cards. + +
+
+
+
+ + + +
+ ihugal +
+
+ + + +
+ + Money, an article of value, + will be lost by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ munhugal +
+
+ + + +
+ + Two or more + will play cards, gamble with playing cards. + +
+
+
+ + + +
+ + Someone will lose money, + an article of value, in gabling with playing cards. + +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/hugal-plb.lift b/tests/corpus/spec-examples/0.12/hugal-plb.lift new file mode 100644 index 0000000..f6070fa --- /dev/null +++ b/tests/corpus/spec-examples/0.12/hugal-plb.lift @@ -0,0 +1,130 @@ + + + + +
+ hugal +
+
+ + + +
+ + A playing card; + a deck of playing cards. + +
+
+
+ + + +
+ + The activity of + playing cards, gambling with cards. + +
+
+ +
+ + + + + + + + +
+ + + +
+ hugálon +
+
+ + + +
+ + An opponent's stake + will be won by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ humugal +
+
+ + + +
+ + Someone will win an + opponent's stake in gambling with playing cards. + +
+
+
+
+ + + +
+ ihugal +
+
+ + + +
+ + Money, an article of value, + will be lost by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ munhugal +
+
+ + + +
+ + Two or more + will play cards, gamble with playing cards. + +
+
+
+ + + +
+ + Someone will lose money, + an article of value, in gabling with playing cards. + +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/lexical-relations.lift b/tests/corpus/spec-examples/0.12/lexical-relations.lift new file mode 100644 index 0000000..4024a41 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/lexical-relations.lift @@ -0,0 +1,37 @@ + + + + + +
+ hete +
+
+ + + cut + + +
+ cut into sectios for use +
+
+ +
+ + +
+ hetek +
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/minimal.lift b/tests/corpus/spec-examples/0.12/minimal.lift new file mode 100644 index 0000000..c67120f --- /dev/null +++ b/tests/corpus/spec-examples/0.12/minimal.lift @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/multiple-forms.lift b/tests/corpus/spec-examples/0.12/multiple-forms.lift new file mode 100644 index 0000000..c541c6c --- /dev/null +++ b/tests/corpus/spec-examples/0.12/multiple-forms.lift @@ -0,0 +1,46 @@ + + + + + +
+ jɔ̃dẽ̀ +
+
+ ยองเด่ง +
+
+ + +
+ jə̀ŋdɐ̃̀ʲ +
+
+ + + + เอว + + + waist + + +
+ lang1.42.6 +
+
+ +
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/reversals-hierarchy.lift b/tests/corpus/spec-examples/0.12/reversals-hierarchy.lift new file mode 100644 index 0000000..5384683 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/reversals-hierarchy.lift @@ -0,0 +1,47 @@ + + + + + +
+ utan +
+
+ + + + + veg + + + sayur + + + jamu + + +
+ mushroom +
+
+
+ vegetable +
+
+
+ +
+ non-bulbous edible leafy and stalky plant and fungi +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/reversals.lift b/tests/corpus/spec-examples/0.12/reversals.lift new file mode 100644 index 0000000..fd9d93a --- /dev/null +++ b/tests/corpus/spec-examples/0.12/reversals.lift @@ -0,0 +1,47 @@ + + + + + +
+ utan +
+
+ + + + + veg + + + sayur + + + jamu + + +
+ mushroom +
+
+ +
+ vegetable +
+
+ +
+ non-bulbous edible leafy and stalky plant and fungi +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/simple.lift b/tests/corpus/spec-examples/0.12/simple.lift new file mode 100644 index 0000000..870ec8a --- /dev/null +++ b/tests/corpus/spec-examples/0.12/simple.lift @@ -0,0 +1,28 @@ + + + + + +
+ srapa +
+
+ + + + slap + + +
+ slap with open hand +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/subentries.lift b/tests/corpus/spec-examples/0.12/subentries.lift new file mode 100644 index 0000000..cd16612 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/subentries.lift @@ -0,0 +1,81 @@ + + + + + +
+ brush +
+
+ + + + bristly instrument + + +
+ + bristly instrument used for cleaning, arranging or + applying a liquid to something + +
+
+ + +
+
+ + +
+ hairbrush +
+
+ + + +
+ + kind of brush typically with stiff one inch long + bristles loosely spaced arranged perpendicularly to the + handle for rearranging hair + +
+
+
+
+ + +
+ paintbrush +
+
+ + + +
+ + kind of brush of varying sizes and varying lengths + and textures of bristles arranged as an extension of the + handle used to apply paint and similar materials + +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/subsenses.lift b/tests/corpus/spec-examples/0.12/subsenses.lift new file mode 100644 index 0000000..af341e7 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/subsenses.lift @@ -0,0 +1,63 @@ + + + + + +
+ opon +
+
+ + + + + grand kin + + +
+ + grandparent, grandchild; reciprocal term of + plus or minus two generations + +
+
+
+ + + + ancestor + + +
+ ancestor, descendent +
+
+
+
+ + + + master + + +
+ + master, lord, owner; the one with the say + over someone or something + +
+
+
+
+
\ No newline at end of file diff --git a/tests/corpus/spec-examples/0.12/traits-in-forms.lift b/tests/corpus/spec-examples/0.12/traits-in-forms.lift new file mode 100644 index 0000000..05305d6 --- /dev/null +++ b/tests/corpus/spec-examples/0.12/traits-in-forms.lift @@ -0,0 +1,24 @@ + + + + +
+ srapa + + +
+ + + + + slap + + + +
+ slap with open hand +
+
+
+
+
\ No newline at end of file diff --git a/tests/tools/xslt/LIFT-0.12-0.13.xsl b/tests/tools/xslt/LIFT-0.12-0.13.xsl new file mode 100644 index 0000000..7d1c6dd --- /dev/null +++ b/tests/tools/xslt/LIFT-0.12-0.13.xsl @@ -0,0 +1,229 @@ + + + + + + + + + 0.13 + + + + + + + + + + + + literal-meaning + + + + + + + + + + + + + + + + literal-meaning + + + summary-definition + + + comment + + + cv-pattern + + + cv-pattern + + + tone + + + import-residue + + + scientific-name + + + + + + + + + + + literal-meaning + + + summary-definition + + + comment + + + cv-pattern + + + cv-pattern + + + tone + + + import-residue + + + scientific-name + + + + + + + + + + + + + semantic-domain-ddp4 + + + semantic-domain-ddp4 + + + entry-type + + + morph-type + + + minor-entry-condition + + + exclude-as-headword + + + do-not-use-for-parsing + + + location + + + environment + + + domain-type + + + sense-type + + + usage-type + + + status + + + from-part-of-speech + + + type + + + flag-skip- + + + -slot + + + -infl-class + + + + + + + + + + + semantic-domain-ddp4 + + + semantic-domain-ddp4 + + + entry-type + + + morph-type + + + minor-entry-condition + + + exclude-as-headword + + + do-not-use-for-parsing + + + location + + + environment + + + domain-type + + + sense-type + + + usage-type + + + status + + + from-part-of-speech + + + type + + + -slot + + + -infl-class + + + + + + + + + + + + + + + + From 59556adf1b4c52b3120164ac333f4c76c60ffd27 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 15 Jul 2026 10:00:36 -0400 Subject: [PATCH 03/42] Corpus tooling (0.12->0.13 migration, synthetic generator) + corpus sanity tests Migration validated against the vendored RNG; four fixtures are documented as inherently RNG-invalid (lang-less etymology forms; FLEx file://C:/ range hrefs that fail libxml2's anyURI check - see PROVENANCE.md, affects design). All local checks green: ruff, ruff format, mypy --strict, 74 tests. Co-Authored-By: Claude Fable 5 --- tests/corpus/PROVENANCE.md | 27 ++ tests/corpus/misc/sample.0.13.lift | 259 ++++++++++++++++++ .../spec-examples/0.13/baseformrelation.lift | 81 ++++++ .../spec-examples/0.13/change-history.lift | 21 ++ tests/corpus/spec-examples/0.13/dates.lift | 22 ++ tests/corpus/spec-examples/0.13/dialects.lift | 61 +++++ .../spec-examples/0.13/fields any order.lift | 107 ++++++++ .../corpus/spec-examples/0.13/full-entry.lift | 76 +++++ tests/corpus/spec-examples/0.13/header.lift | 183 +++++++++++++ .../spec-examples/0.13/hugal-ideal.lift | 149 ++++++++++ .../corpus/spec-examples/0.13/hugal-mdf.lift | 126 +++++++++ .../corpus/spec-examples/0.13/hugal-plb.lift | 130 +++++++++ .../spec-examples/0.13/lexical-relations.lift | 37 +++ tests/corpus/spec-examples/0.13/minimal.lift | 3 + .../spec-examples/0.13/multiple-forms.lift | 46 ++++ .../0.13/reversals-hierarchy.lift | 47 ++++ .../corpus/spec-examples/0.13/reversals.lift | 47 ++++ tests/corpus/spec-examples/0.13/simple.lift | 28 ++ .../corpus/spec-examples/0.13/subentries.lift | 81 ++++++ .../corpus/spec-examples/0.13/subsenses.lift | 63 +++++ .../spec-examples/0.13/traits-in-forms.lift | 24 ++ tests/test_corpus.py | 64 +++++ tests/tools/generate_large.py | 116 ++++++++ tests/tools/migrate_corpus.py | 75 +++++ 24 files changed, 1873 insertions(+) create mode 100644 tests/corpus/misc/sample.0.13.lift create mode 100644 tests/corpus/spec-examples/0.13/baseformrelation.lift create mode 100644 tests/corpus/spec-examples/0.13/change-history.lift create mode 100644 tests/corpus/spec-examples/0.13/dates.lift create mode 100644 tests/corpus/spec-examples/0.13/dialects.lift create mode 100644 tests/corpus/spec-examples/0.13/fields any order.lift create mode 100644 tests/corpus/spec-examples/0.13/full-entry.lift create mode 100644 tests/corpus/spec-examples/0.13/header.lift create mode 100644 tests/corpus/spec-examples/0.13/hugal-ideal.lift create mode 100644 tests/corpus/spec-examples/0.13/hugal-mdf.lift create mode 100644 tests/corpus/spec-examples/0.13/hugal-plb.lift create mode 100644 tests/corpus/spec-examples/0.13/lexical-relations.lift create mode 100644 tests/corpus/spec-examples/0.13/minimal.lift create mode 100644 tests/corpus/spec-examples/0.13/multiple-forms.lift create mode 100644 tests/corpus/spec-examples/0.13/reversals-hierarchy.lift create mode 100644 tests/corpus/spec-examples/0.13/reversals.lift create mode 100644 tests/corpus/spec-examples/0.13/simple.lift create mode 100644 tests/corpus/spec-examples/0.13/subentries.lift create mode 100644 tests/corpus/spec-examples/0.13/subsenses.lift create mode 100644 tests/corpus/spec-examples/0.13/traits-in-forms.lift create mode 100644 tests/test_corpus.py create mode 100644 tests/tools/generate_large.py create mode 100644 tests/tools/migrate_corpus.py diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md index 42729f7..36703ce 100644 --- a/tests/corpus/PROVENANCE.md +++ b/tests/corpus/PROVENANCE.md @@ -97,6 +97,33 @@ that script; committed so tests don't depend on regeneration. - **libpalaso inline edge-case XML** (§C.5): extracted per-milestone as needed. - **Enggano export** (§C.8): license/permission check pending; not fetched. +## Known RNG-invalid fixtures (kept deliberately) + +Validated 2026-07-14 against the vendored `lift-0.13.rng` via `lxml.etree.RelaxNG`. +Two real-world quirk classes make some fixtures schema-invalid; they are kept +as-is — the library's losslessness contract (A2) must carry exactly this kind of +content, and the validator (M4) needs realistic subjects: + +1. **`
` without `@lang` inside ``** — the RNG requires `@lang` + on every form. Affects: `spec-examples/0.13/dialects.lift`, + `spec-examples/0.13/fields any order.lift` (and their 0.12 originals). +2. **`range/@href` of the shape `file://C:/...`** — fails the RNG's `anyURI` + datatype under libxml2 (malformed authority; often unencoded spaces too). + This is how FLEx actually writes range hrefs: **every real FLEx export in + this corpus** has it. Affects: `spec-examples/0.13/header.lift`, + `misc/sample.0.13.lift`, `flex/AllFLExFields/AllFLExFields.lift`, + `large/sango/sango.lift`. + + **M4 design implication**: the C# validator's RELAX NG engine evidently did + not enforce anyURI syntax, so "RNG-valid" per SIL.Lift ≠ RNG-valid per lxml + on real FLEx output. The validation layer must account for this (e.g. + downgrade/annotate anyURI-only failures) or it will flag virtually every + FLEx lexicon. Recorded in the planning repo's Phase 3 notes. + +RNG-valid fixtures: the other 16 migrated spec examples, +`ranges/test20080407.lift`, and `folder/Moma/Moma.lift` (WeSay writes relative +hrefs, which pass). `tests/test_corpus.py` locks in both lists. + ## generated/ — synthetic large files (not committed) Produced by `tests/tools/generate_large.py` for streaming/perf tests (M6); diff --git a/tests/corpus/misc/sample.0.13.lift b/tests/corpus/misc/sample.0.13.lift new file mode 100644 index 0000000..33c660a --- /dev/null +++ b/tests/corpus/misc/sample.0.13.lift @@ -0,0 +1,259 @@ + + + +
+ + + + + + + + + + + + + + + + + +This records the syllable pattern for a LexPronunciation in FieldWorks. + + +
This records the tone information for a LexPronunciation in FieldWorks. +
+
+
This records the multilingual "Form" field of the LexEtymology in FieldWorks. +
+
+
This records a comment (note) in a LexEtymology in FieldWorks. +
+
+
This records residue left over from importing a standard format file into FieldWorks (or LinguaLinks). +
+
+
This field is used to store a literal meaning of the entry. Typically, this field is necessary only for a compound or an idiom where the meaning of the whole is different from the sum of its parts. +
+
+
A summary definition (located at the entry level in the Entry pane) is a general definition summarizing all the senses of a primary entry. It has no theoretical value; its use is solely pragmatic. +
+
+
This field stores the scientific name pertinent to the current sense. +
+
+
+
+ + +
me
+
+ + + + + +
+ + +
blackbird
+
+ + + + + + +annoying bird + + +
+ + +
black
+
+ + + + + + + +color + +
+ + +
bird
+
+ + + + + +avian thingy + + +
+ + +
blak
+
+ + + + + +
pretend alternate spelling of black
+
+
+
+ + +
blackout
+
+ + + + + +when all the electricity in an area is off + + + +Cover up a light source + +
+ + +
toxic
+
+ + +
a note on toxic
+
+ + + + + + +poisonous + +
antrho
+
+ +
a bibnote
+
+ +
a discourse note
+
+ +
a general noteli
+
+
scientific note
+
+
+
+ + +
detox
+
+ + + + + + +a therapudic program for substance abusers + +
+ + +
detoxify
+
+ + + + + + + + +
+ + +
nontoxic
+
+ + + + + + +
+ + +
toxicity
+
+ + + + + +level of poinsonousness + +
+ + +
toxin
+
+ + + + + + + +poison + +
+ + +
de-
+
+ + + + + +remove + +
+ + +
-ify
+
+ + + + + + + + + +
+ + +
toxic waste dump
+
+ + + + +place where poisonous rubbish is stored + +
+
diff --git a/tests/corpus/spec-examples/0.13/baseformrelation.lift b/tests/corpus/spec-examples/0.13/baseformrelation.lift new file mode 100644 index 0000000..ab5da43 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/baseformrelation.lift @@ -0,0 +1,81 @@ + + + + + +
+ brush +
+
+ + + + bristly instrument + + +
+ + bristly instrument used for cleaning, arranging or + applying a liquid to something + +
+
+
+
+ + +
+ hairbrush +
+
+ + + +
+ + kind of brush typically with stiff one inch long + bristles loosely spaced arranged perpendicularly to the + handle for rearranging hair + +
+
+
+ +
+ + +
+ paintbrush +
+
+ + + +
+ + kind of brush of varying sizes and varying lengths + and textures of bristles arranged as an extension of the + handle used to apply paint and similar materials + +
+
+
+ +
+
diff --git a/tests/corpus/spec-examples/0.13/change-history.lift b/tests/corpus/spec-examples/0.13/change-history.lift new file mode 100644 index 0000000..f8779b0 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/change-history.lift @@ -0,0 +1,21 @@ + + + + +
+ test +
+
+ + +
+ Create the original record +
+
+ +
+ Add quality definitions +
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/dates.lift b/tests/corpus/spec-examples/0.13/dates.lift new file mode 100644 index 0000000..dba1d34 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/dates.lift @@ -0,0 +1,22 @@ + + + + +
+ srapa +
+
+ + + + slap + + +
+ slap with open hand +
+
+
+
+ +
diff --git a/tests/corpus/spec-examples/0.13/dialects.lift b/tests/corpus/spec-examples/0.13/dialects.lift new file mode 100644 index 0000000..5fc5eab --- /dev/null +++ b/tests/corpus/spec-examples/0.13/dialects.lift @@ -0,0 +1,61 @@ + + + + + +
+ apu +
+
+ + + + lime + + +
+ lime +
+
+ +
+ chalk +
+
+ +
+ + lime slaked from burning seashells and used as an + ingredient in chewing betelnut + +
+
+
+ +
+ apuR +
+ + lime, chalk + +
+ + + +
+ ahul +
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/fields any order.lift b/tests/corpus/spec-examples/0.13/fields any order.lift new file mode 100644 index 0000000..7c579da --- /dev/null +++ b/tests/corpus/spec-examples/0.13/fields any order.lift @@ -0,0 +1,107 @@ + + + + + +
+ det +
+
+
+ det +
+ + +
+ A comment in a variant +
+
+
+ + + +
+ A comment in a pronunciation +
+
+
+ des +
+
+ + +
+
+
+ plant +
+
+
+ vegetable +
+
+
+ mushroom +
+
+ + +
+ The fall from the cliff killed him. +
+
+ +
+ A comment in an example +
+
+
+ Werka des to kew. +
+
+ + + +
+ Takero village +
+
+ +
+ A comment in a relation +
+
+
+ +
+ +
+ etymology +
+ + English gloss + + + French gloss + + +
+ English comment +
+
+ French comment +
+
+
+ + +
+ A comment in a note +
+
+
+ The actual text of the note. +
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/full-entry.lift b/tests/corpus/spec-examples/0.13/full-entry.lift new file mode 100644 index 0000000..d464886 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/full-entry.lift @@ -0,0 +1,76 @@ + + + + + +
+ abat +
+
+ + +
+ abatke +
+
+ + + + grove + + + dusun + + +
+ Kbwai abatke to ksweruk nurare. +
+ +
+ I went to the coconut groves to clear the grass. +
+
+ Saya pergi menyiangi dusun kelapa. +
+
+
+ +
+ Kbwa ti ktwan nurke o abatke. +
+ +
+ I'm going to plant coconut trees in the grove. +
+
+ Saya pergi tanam kelapa di dusun. +
+
+
+ +
+ + This is not limited + to coconut groves but is used for mangoes, etc. + +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/header.lift b/tests/corpus/spec-examples/0.13/header.lift new file mode 100644 index 0000000..051a5b9 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/header.lift @@ -0,0 +1,183 @@ + + +
+ + + + + +
+ Eng +
+
+ +
+ + The standard alphabetic representation of English (United States + style). + +
+
+
+ + + +
+ Frn +
+
+ +
+ The standard alphabetic representation of French. +
+
+
+ + + +
+ Spn +
+
+
+ + + +
+ Por +
+
+ +
+ The standard alphabetic representation of Portuguese. +
+
+
+ + + +
+ kmk +
+
+
+
+ + + + +
+ The word is borrowed from another language +
+
+
+ + + +
+ The proto form of the word in another language +
+
+
+
+ + + + + + + + + + + + + + +
+ + +
+ This records the syllable pattern for a pronunciation in FLEX. +
+
+ +
+ This records the tone information for a pronunciation in FLEX. +
+
+ +
+ This records a comment (note) in an etymology in FLEX. +
+
+ +
+ + This records residue left over from importing a standard format file into + FieldWorks (or LinguaLinks). + +
+
+ +
+ + This field is used to store a literal meaning of the entry. Typically, + this field is necessary only for a compound or an idiom where the meaning of + the whole is different from the sum of its parts. + +
+
+ +
+ + A summary definition (located at the entry level in the Entry pane) is a + general definition summarizing all the senses of a primary entry. It has no + theoretical value; its use is solely pragmatic. + +
+
+ +
+ + This field stores the scientific name pertinent to the current + sense. + +
+
+ +
+ Type=kcptString; WsSelector=kwsVern +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/hugal-ideal.lift b/tests/corpus/spec-examples/0.13/hugal-ideal.lift new file mode 100644 index 0000000..1bae4e3 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/hugal-ideal.lift @@ -0,0 +1,149 @@ + + + + +
+ hugal +
+
+ + + +
+ + A playing card; + a deck of playing cards. + +
+
+
+ + + +
+ + The activity of + playing cards, gambling with cards. + +
+
+ +
+ + + + + + + + + + + + + + +
+ + + +
+ hugálon +
+
+ + + +
+ + An opponent's stake + will be won by someone + in gambling with playing cards. + +
+
+ +
+ + +
+ + + +
+ humugal +
+
+ + + +
+ + Someone will win an + opponent's stake in gambling with playing cards. + +
+
+ +
+ + +
+ + + +
+ ihugal +
+
+ + + +
+ + Money, an article of value, + will be lost by someone + in gambling with playing cards. + +
+
+ +
+ + +
+ + + +
+ munhugal +
+
+ + + +
+ + Two or more + will play cards, gamble with playing cards. + +
+
+ +
+ + + +
+ + Someone will lose money, + an article of value, in gabling with playing cards. + +
+
+ +
+ + +
+
diff --git a/tests/corpus/spec-examples/0.13/hugal-mdf.lift b/tests/corpus/spec-examples/0.13/hugal-mdf.lift new file mode 100644 index 0000000..59c670e --- /dev/null +++ b/tests/corpus/spec-examples/0.13/hugal-mdf.lift @@ -0,0 +1,126 @@ + + + + +
+ hugal +
+
+ + + +
+ + A playing card; + a deck of playing cards. + +
+
+
+ + + +
+ + The activity of + playing cards, gambling with cards. + +
+
+
+ + + + + +
+ + + +
+ hugálon +
+
+ + + +
+ + An opponent's stake + will be won by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ humugal +
+
+ + + +
+ + Someone will win an + opponent's stake in gambling with playing cards. + +
+
+
+
+ + + +
+ ihugal +
+
+ + + +
+ + Money, an article of value, + will be lost by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ munhugal +
+
+ + + +
+ + Two or more + will play cards, gamble with playing cards. + +
+
+
+ + + +
+ + Someone will lose money, + an article of value, in gabling with playing cards. + +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/hugal-plb.lift b/tests/corpus/spec-examples/0.13/hugal-plb.lift new file mode 100644 index 0000000..f0c0a0a --- /dev/null +++ b/tests/corpus/spec-examples/0.13/hugal-plb.lift @@ -0,0 +1,130 @@ + + + + +
+ hugal +
+
+ + + +
+ + A playing card; + a deck of playing cards. + +
+
+
+ + + +
+ + The activity of + playing cards, gambling with cards. + +
+
+ +
+ + + + + + + + +
+ + + +
+ hugálon +
+
+ + + +
+ + An opponent's stake + will be won by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ humugal +
+
+ + + +
+ + Someone will win an + opponent's stake in gambling with playing cards. + +
+
+
+
+ + + +
+ ihugal +
+
+ + + +
+ + Money, an article of value, + will be lost by someone + in gambling with playing cards. + +
+
+
+
+ + + +
+ munhugal +
+
+ + + +
+ + Two or more + will play cards, gamble with playing cards. + +
+
+
+ + + +
+ + Someone will lose money, + an article of value, in gabling with playing cards. + +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/lexical-relations.lift b/tests/corpus/spec-examples/0.13/lexical-relations.lift new file mode 100644 index 0000000..6c8d025 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/lexical-relations.lift @@ -0,0 +1,37 @@ + + + + + +
+ hete +
+
+ + + cut + + +
+ cut into sectios for use +
+
+ +
+ + +
+ hetek +
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/minimal.lift b/tests/corpus/spec-examples/0.13/minimal.lift new file mode 100644 index 0000000..bc33f46 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/minimal.lift @@ -0,0 +1,3 @@ + + + diff --git a/tests/corpus/spec-examples/0.13/multiple-forms.lift b/tests/corpus/spec-examples/0.13/multiple-forms.lift new file mode 100644 index 0000000..9639b3c --- /dev/null +++ b/tests/corpus/spec-examples/0.13/multiple-forms.lift @@ -0,0 +1,46 @@ + + + + + +
+ jɔ̃dẽ̀ +
+
+ ยองเด่ง +
+
+ + +
+ jə̀ŋdɐ̃̀ʲ +
+
+ + + + เอว + + + waist + + +
+ lang1.42.6 +
+
+ +
+
+
diff --git a/tests/corpus/spec-examples/0.13/reversals-hierarchy.lift b/tests/corpus/spec-examples/0.13/reversals-hierarchy.lift new file mode 100644 index 0000000..4d91811 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/reversals-hierarchy.lift @@ -0,0 +1,47 @@ + + + + + +
+ utan +
+
+ + + + + veg + + + sayur + + + jamu + + +
+ mushroom +
+
+
+ vegetable +
+
+
+ +
+ non-bulbous edible leafy and stalky plant and fungi +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/reversals.lift b/tests/corpus/spec-examples/0.13/reversals.lift new file mode 100644 index 0000000..27b403f --- /dev/null +++ b/tests/corpus/spec-examples/0.13/reversals.lift @@ -0,0 +1,47 @@ + + + + + +
+ utan +
+
+ + + + + veg + + + sayur + + + jamu + + +
+ mushroom +
+
+ +
+ vegetable +
+
+ +
+ non-bulbous edible leafy and stalky plant and fungi +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/simple.lift b/tests/corpus/spec-examples/0.13/simple.lift new file mode 100644 index 0000000..16a159c --- /dev/null +++ b/tests/corpus/spec-examples/0.13/simple.lift @@ -0,0 +1,28 @@ + + + + + +
+ srapa +
+
+ + + + slap + + +
+ slap with open hand +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/subentries.lift b/tests/corpus/spec-examples/0.13/subentries.lift new file mode 100644 index 0000000..667afe0 --- /dev/null +++ b/tests/corpus/spec-examples/0.13/subentries.lift @@ -0,0 +1,81 @@ + + + + + +
+ brush +
+
+ + + + bristly instrument + + +
+ + bristly instrument used for cleaning, arranging or + applying a liquid to something + +
+
+ + +
+
+ + +
+ hairbrush +
+
+ + + +
+ + kind of brush typically with stiff one inch long + bristles loosely spaced arranged perpendicularly to the + handle for rearranging hair + +
+
+
+
+ + +
+ paintbrush +
+
+ + + +
+ + kind of brush of varying sizes and varying lengths + and textures of bristles arranged as an extension of the + handle used to apply paint and similar materials + +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/subsenses.lift b/tests/corpus/spec-examples/0.13/subsenses.lift new file mode 100644 index 0000000..7a5490f --- /dev/null +++ b/tests/corpus/spec-examples/0.13/subsenses.lift @@ -0,0 +1,63 @@ + + + + + +
+ opon +
+
+ + + + + grand kin + + +
+ + grandparent, grandchild; reciprocal term of + plus or minus two generations + +
+
+
+ + + + ancestor + + +
+ ancestor, descendent +
+
+
+
+ + + + master + + +
+ + master, lord, owner; the one with the say + over someone or something + +
+
+
+
+
diff --git a/tests/corpus/spec-examples/0.13/traits-in-forms.lift b/tests/corpus/spec-examples/0.13/traits-in-forms.lift new file mode 100644 index 0000000..10801de --- /dev/null +++ b/tests/corpus/spec-examples/0.13/traits-in-forms.lift @@ -0,0 +1,24 @@ + + + + +
+ srapa + + +
+ + + + + slap + + + +
+ slap with open hand +
+
+
+
+
diff --git a/tests/test_corpus.py b/tests/test_corpus.py new file mode 100644 index 0000000..66598f5 --- /dev/null +++ b/tests/test_corpus.py @@ -0,0 +1,64 @@ +"""Corpus sanity: fixtures stay exactly as PROVENANCE.md documents them. + +Every corpus XML file must be well-formed; RNG validity must match the documented +lists (see "Known RNG-invalid fixtures" in tests/corpus/PROVENANCE.md) — a change +in either direction means the corpus or the vendored schema drifted. +""" + +from pathlib import Path + +import pytest +from lxml import etree + +import sil_lift + +CORPUS_DIR = Path(__file__).parent / "corpus" +RNG_PATH = Path(sil_lift.__file__).parent / "schemas" / "lift-0.13.rng" + +LIFT_FILES = sorted( + p for p in CORPUS_DIR.rglob("*") if p.suffix in {".lift", ".lift-ranges"} and p.is_file() +) + +# Documented in PROVENANCE.md: lang-less etymology forms / file://C:/ range hrefs. +EXPECTED_INVALID = { + "spec-examples/0.13/dialects.lift", + "spec-examples/0.13/fields any order.lift", + "spec-examples/0.13/header.lift", + "misc/sample.0.13.lift", + "flex/AllFLExFields/AllFLExFields.lift", + "large/sango/sango.lift", +} + +VALIDATABLE = [ + p + for p in LIFT_FILES + # Only version-0.13 .lift documents are subjects of the 0.13 schema: + # .lift-ranges files have a different root (no schema exists yet — M3 authors + # one), and the 0.12 originals (spec-examples/0.12/, misc/sample.lift) are + # version-guard fixtures. + if p.suffix == ".lift" and "0.12" not in p.parts and p.name != "sample.lift" +] + + +def corpus_id(path: Path) -> str: + return path.relative_to(CORPUS_DIR).as_posix() + + +def test_corpus_is_present() -> None: + assert len(LIFT_FILES) >= 45 # 19+20 spec examples, pairs, fixtures + + +@pytest.mark.parametrize("path", LIFT_FILES, ids=corpus_id) +def test_well_formed(path: Path) -> None: + etree.parse(path) + + +@pytest.mark.parametrize("path", VALIDATABLE, ids=corpus_id) +def test_rng_validity_matches_provenance(path: Path) -> None: + schema = etree.RelaxNG(etree.parse(RNG_PATH)) + valid = schema.validate(etree.parse(path)) + expected = corpus_id(path) not in EXPECTED_INVALID + assert valid == expected, ( + f"{corpus_id(path)}: RNG validity changed (now valid={valid}); " + "corpus fixtures or vendored schema drifted — see PROVENANCE.md" + ) diff --git a/tests/tools/generate_large.py b/tests/tools/generate_large.py new file mode 100644 index 0000000..2c3426e --- /dev/null +++ b/tests/tools/generate_large.py @@ -0,0 +1,116 @@ +"""Generate a synthetic large LIFT 0.13 file for streaming/perf tests (milestone M6). + +Deterministic for a given (--entries, --seed): the same arguments always produce the +same bytes. Entries average roughly 1 KB, so --entries 200000 yields a file of a few +hundred MB. Output is written incrementally (bounded memory) to +tests/corpus/generated/ (git-ignored; regenerate on demand). + +Usage: python tests/tools/generate_large.py [--entries N] [--seed N] [-o PATH] +""" + +import argparse +import random +import sys +import uuid +from pathlib import Path +from typing import TextIO +from xml.sax.saxutils import escape + +DEFAULT_DIR = Path(__file__).resolve().parents[1] / "corpus" / "generated" + +VERNACULAR = "qaa-x-syn" +ANALYSIS = "en" +CONSONANTS = "ptkbdgmnŋfsʃhwlrj" +VOWELS = "aeiouɛɔ" +POS_VALUES = ["Noun", "Verb", "Adjective", "Adverb", "Pronoun", "Conjunction"] +GLOSS_WORDS = [ + "house", + "water", + "tree", + "stone", + "fire", + "path", + "river", + "mountain", + "bird", + "fish", + "hand", + "eye", + "speak", + "walk", + "eat", + "sleep", + "big", + "small", + "red", + "old", + "new", + "good", + "child", + "woman", + "man", + "sky", +] + + +def word(rng: random.Random) -> str: + return "".join(rng.choice(CONSONANTS) + rng.choice(VOWELS) for _ in range(rng.randint(2, 4))) + + +def write_entry(out: TextIO, rng: random.Random, index: int) -> None: + guid = uuid.UUID(int=rng.getrandbits(128), version=4) + lexeme = word(rng) + out.write(f'\n') + out.write( + f'
{escape(lexeme)}
' + "
\n" + ) + for _ in range(rng.randint(1, 3)): + gloss = rng.choice(GLOSS_WORDS) + pos = rng.choice(POS_VALUES) + out.write("\n") + out.write(f'\n') + out.write(f'{escape(gloss)}\n') + out.write( + f'
{escape(gloss)} (sense of ' + f"{escape(lexeme)}, entry {index})
\n" + ) + if rng.random() < 0.5: + sentence = " ".join(word(rng) for _ in range(rng.randint(4, 9))) + translation = " ".join(rng.choice(GLOSS_WORDS) for _ in range(rng.randint(4, 9))) + out.write("\n") + out.write(f'
{escape(sentence)}
\n') + out.write( + f'
' + f"{escape(translation)}
\n" + ) + out.write("
\n") + out.write("
\n") + out.write("
\n") + + +def generate(path: Path, entries: int, seed: int) -> None: + rng = random.Random(seed) + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", encoding="utf-8", newline="\n") as out: + out.write('\n') + out.write(f'\n') + for index in range(entries): + write_entry(out, rng, index) + out.write("\n") + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--entries", type=int, default=200_000) + parser.add_argument("--seed", type=int, default=0) + parser.add_argument("-o", "--output", type=Path, default=None) + args = parser.parse_args() + output: Path = args.output or DEFAULT_DIR / f"synthetic-{args.entries}-seed{args.seed}.lift" + generate(output, args.entries, args.seed) + print(f"wrote {output} ({output.stat().st_size:,} bytes, {args.entries:,} entries)") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/tests/tools/migrate_corpus.py b/tests/tools/migrate_corpus.py new file mode 100644 index 0000000..7bc9698 --- /dev/null +++ b/tests/tools/migrate_corpus.py @@ -0,0 +1,75 @@ +"""Corpus prep: migrate the 0.12 fixtures to 0.13 (tooling, not a library feature). + +Applies the upstream migration XSLT (vendored at tests/tools/xslt/, provenance in +tests/corpus/PROVENANCE.md) to: + +- tests/corpus/spec-examples/0.12/*.lift -> tests/corpus/spec-examples/0.13/ +- tests/corpus/misc/sample.lift -> tests/corpus/misc/sample.0.13.lift + +Output honors the stylesheet's settings, then each result is checked +against the vendored 0.13 RELAX NG schema; failures are reported but still written +(so they can be inspected). + +Some source files are inherently schema-invalid in ways migration cannot (and must +not) fix — see "Known RNG-invalid fixtures" in tests/corpus/PROVENANCE.md. Those are +listed in EXPECTED_INVALID; the script exits nonzero only on unexpected results. + +Usage: python tests/tools/migrate_corpus.py +""" + +import sys +from pathlib import Path + +from lxml import etree + +TOOLS_DIR = Path(__file__).resolve().parent +CORPUS_DIR = TOOLS_DIR.parent / "corpus" +XSL_PATH = TOOLS_DIR / "xslt" / "LIFT-0.12-0.13.xsl" +RNG_PATH = TOOLS_DIR.parents[1] / "src" / "sil_lift" / "schemas" / "lift-0.13.rng" + +EXPECTED_INVALID = { + "dialects.lift", #
without @lang inside + "fields any order.lift", # same + "header.lift", # range/@href "file://C:/..." fails the anyURI datatype + "sample.0.13.lift", # same +} + + +def migrate(src: Path, dst: Path, transform: etree.XSLT, schema: etree.RelaxNG) -> bool: + result = transform(etree.parse(src)) + dst.parent.mkdir(parents=True, exist_ok=True) + # lxml-stubs is missing write_output(); it's the one API that honors . + result.write_output(str(dst)) # type: ignore[attr-defined] + if schema.validate(etree.parse(dst)): + print(f" ok {src.name} -> {dst.relative_to(CORPUS_DIR)}") + return True + print(f" INVALID {src.name} -> {dst.relative_to(CORPUS_DIR)}") + for error in schema.error_log: + print(f" {error.line}: {error.message}") + return False + + +def main() -> int: + transform = etree.XSLT(etree.parse(XSL_PATH)) + schema = etree.RelaxNG(etree.parse(RNG_PATH)) + + jobs: list[tuple[Path, Path]] = [ + (src, CORPUS_DIR / "spec-examples" / "0.13" / src.name) + for src in sorted((CORPUS_DIR / "spec-examples" / "0.12").glob("*.lift")) + ] + jobs.append((CORPUS_DIR / "misc" / "sample.lift", CORPUS_DIR / "misc" / "sample.0.13.lift")) + + unexpected: list[str] = [] + for src, dst in jobs: + valid = migrate(src, dst, transform, schema) + if valid == (dst.name in EXPECTED_INVALID): + unexpected.append(dst.name) + print(f"{len(jobs)} migrated, {len(EXPECTED_INVALID)} known-invalid expected") + if unexpected: + print(f"UNEXPECTED validity change: {', '.join(unexpected)}") + return 1 + return 0 + + +if __name__ == "__main__": + sys.exit(main()) From 2766bb45a14baba1b74b9ef50ae220e13842a69f Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 15 Jul 2026 10:12:55 -0400 Subject: [PATCH 04/42] Text model + full-document reader All 35 RNG elements as slotted dataclasses (quirks honored: two field variants, form-shaped gloss, three-way extensibility split). Parser never rejects well-formed 0.13: out-of-schema content lands in per-node opaque Extras residue (unknown attrs/elements, comments, PIs, stray text, malformed typed attributes). Version guard names the version. 128 tests, all checks green (ruff, mypy --strict). Co-Authored-By: Claude Fable 5 --- src/sil_lift/__init__.py | 66 ++++- src/sil_lift/_errors.py | 16 ++ src/sil_lift/_extras.py | 43 +++ src/sil_lift/_header.py | 69 +++++ src/sil_lift/_model.py | 265 ++++++++++++++++++ src/sil_lift/_reader.py | 581 +++++++++++++++++++++++++++++++++++++++ src/sil_lift/_text.py | 152 ++++++++++ tests/test_reader.py | 222 +++++++++++++++ 8 files changed, 1413 insertions(+), 1 deletion(-) create mode 100644 src/sil_lift/_errors.py create mode 100644 src/sil_lift/_extras.py create mode 100644 src/sil_lift/_header.py create mode 100644 src/sil_lift/_model.py create mode 100644 src/sil_lift/_reader.py create mode 100644 src/sil_lift/_text.py create mode 100644 tests/test_reader.py diff --git a/src/sil_lift/__init__.py b/src/sil_lift/__init__.py index 51e897f..7a6610b 100644 --- a/src/sil_lift/__init__.py +++ b/src/sil_lift/__init__.py @@ -4,6 +4,70 @@ modules are implementation details. """ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from ._errors import LiftError, LiftParseError +from ._extras import Extras +from ._header import FieldDefinition, Header, Range, RangeElement +from ._model import ( + Entry, + Etymology, + Example, + Field, + GrammaticalInfo, + Lexicon, + Note, + Pronunciation, + Relation, + Reversal, + ReversalMain, + Sense, + Translation, + URLRef, + Variant, +) +from ._text import Annotation, Form, Multitext, Span, Text, Trait + +if TYPE_CHECKING: + import os + __version__ = "0.1.0.dev0" -__all__: list[str] = [] +__all__ = [ + "Annotation", + "Entry", + "Etymology", + "Example", + "Extras", + "Field", + "FieldDefinition", + "Form", + "GrammaticalInfo", + "Header", + "Lexicon", + "LiftError", + "LiftParseError", + "Multitext", + "Note", + "Pronunciation", + "Range", + "RangeElement", + "Relation", + "Reversal", + "ReversalMain", + "Sense", + "Span", + "Text", + "Trait", + "Translation", + "URLRef", + "Variant", + "load", +] + + +def load(path: str | os.PathLike[str]) -> Lexicon: + """Parse a ``.lift`` file (LIFT 0.13 only) into a :class:`Lexicon`.""" + return Lexicon.load(path) diff --git a/src/sil_lift/_errors.py b/src/sil_lift/_errors.py new file mode 100644 index 0000000..be59d5b --- /dev/null +++ b/src/sil_lift/_errors.py @@ -0,0 +1,16 @@ +"""Exception hierarchy.""" + +__all__ = ["LiftError", "LiftParseError"] + + +class LiftError(Exception): + """Base class for all sil-lift errors.""" + + +class LiftParseError(LiftError): + """A document could not be read as LIFT 0.13. + + Raised for non-XML input, a non-LIFT root element, or a LIFT version other + than 0.13 (sil-lift does not migrate; see the lift-standard repo's XSLTs + for one-off migration of legacy files). + """ diff --git a/src/sil_lift/_extras.py b/src/sil_lift/_extras.py new file mode 100644 index 0000000..5350ffb --- /dev/null +++ b/src/sil_lift/_extras.py @@ -0,0 +1,43 @@ +"""The opaque out-of-schema residue bucket (decision A2). + +Every model node carries an ``Extras`` holding whatever the parser found that the +LIFT 0.13 schema does not define: unknown attributes, unknown child elements, XML +comments/processing instructions, and stray text in element-only contexts. The +writer (M2) re-emits it so nothing is dropped. + +The public surface is deliberately tiny — equality, repr, emptiness, to_string() +— so the internal representation stays swappable and no lxml type ever leaks. +""" + +from dataclasses import dataclass, field + +__all__ = ["Extras"] + + +@dataclass(slots=True) +class _ExtraNode: + kind: str # "element" | "comment" | "pi" | "text" + xml: str # serialized fragment (for "text": the raw character data) + index: int # child position in the original parent, the re-emit anchor + + +@dataclass(slots=True, repr=False) +class Extras: + """Out-of-schema content carried losslessly (opaque; see module docstring).""" + + _attrs: dict[str, str] = field(default_factory=dict) + _nodes: list[_ExtraNode] = field(default_factory=list) + + def __bool__(self) -> bool: + return bool(self._attrs or self._nodes) + + def __repr__(self) -> str: + if not self: + return "Extras()" + return f"Extras({len(self._attrs)} attrs, {len(self._nodes)} nodes)" + + def to_string(self) -> str: + """Human-readable dump of the carried content (not a serialization format).""" + parts = [f"@{name}={value!r}" for name, value in self._attrs.items()] + parts += [node.xml for node in self._nodes] + return "\n".join(parts) diff --git a/src/sil_lift/_header.py b/src/sil_lift/_header.py new file mode 100644 index 0000000..70207f2 --- /dev/null +++ b/src/sil_lift/_header.py @@ -0,0 +1,69 @@ +"""Header-side model: Header, FieldDefinition, Range, RangeElement. + +The header ```` (a field *definition*) is a structurally +different element from the entry-level ```` usage variant +(data-model quirk 1) — hence ``FieldDefinition`` here vs ``Field`` in +``_model``. None of these elements are extensible. +""" + +from __future__ import annotations + +from dataclasses import dataclass, field + +from ._extras import Extras +from ._text import Multitext + +__all__ = ["FieldDefinition", "Header", "Range", "RangeElement"] + + +@dataclass(slots=True, kw_only=True) +class FieldDefinition: + """A header ````: documents a field type used in the document.""" + + tag: str + content: Multitext = field(default_factory=Multitext) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class RangeElement: + """A ````: one value in a range; ``parent`` builds hierarchies.""" + + id: str + parent: str | None = None + guid: str | None = None + description: Multitext = field(default_factory=Multitext) + label: Multitext = field(default_factory=Multitext) + abbrev: Multitext = field(default_factory=Multitext) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class Range: + """A ````: a controlled vocabulary, inline and/or via ``href``. + + ``href`` points at an external ``.lift-ranges`` resource; its contents are + carried unresolved here (resolution/tracking is milestone M3). + """ + + id: str + href: str | None = None + guid: str | None = None + description: Multitext = field(default_factory=Multitext) + label: Multitext = field(default_factory=Multitext) + abbrev: Multitext = field(default_factory=Multitext) + elements: list[RangeElement] = field(default_factory=list) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class Header: + """The optional ``
``: description, ranges, field definitions.""" + + description: Multitext = field(default_factory=Multitext) + ranges: list[Range] = field(default_factory=list) + fields: list[FieldDefinition] = field(default_factory=list) + extra: Extras = field(default_factory=Extras) + + def __bool__(self) -> bool: + return bool(self.description or self.ranges or self.fields or self.extra) diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py new file mode 100644 index 0000000..329e797 --- /dev/null +++ b/src/sil_lift/_model.py @@ -0,0 +1,265 @@ +"""Entry-side model: Entry, Sense, and everything below them, plus Lexicon. + +Shapes follow the LIFT 0.13 RNG inventory exactly. Extensibility is a +three-way split (data-model quirk 4): the eight fully-extensible elements +derive from ``_Extensible``; the usage ```` gets the field-less variant +``_ExtensibleNoFields`` (no field-in-field recursion); ``GrammaticalInfo`` is +the outlier with bare traits only. Typed attributes that fail to parse +(malformed dates/integers in real-world files) are preserved verbatim in the +node's ``extra`` and the model field stays ``None``. +""" + +from __future__ import annotations + +from dataclasses import dataclass, field +from datetime import date, datetime +from pathlib import Path +from typing import TYPE_CHECKING + +from ._extras import Extras +from ._header import Header +from ._text import Annotation, Form, Multitext, Text, Trait + +if TYPE_CHECKING: + import os + +__all__ = [ + "Entry", + "Etymology", + "Example", + "Field", + "GrammaticalInfo", + "Lexicon", + "Note", + "Pronunciation", + "Relation", + "Reversal", + "ReversalMain", + "Sense", + "Translation", + "URLRef", + "Variant", +] + + +@dataclass(slots=True, kw_only=True) +class _ExtensibleNoFields: + """The extensible bundle minus ````: dates, annotations, traits, residue.""" + + date_created: datetime | date | None = None + date_modified: datetime | date | None = None + annotations: list[Annotation] = field(default_factory=list) + traits: list[Trait] = field(default_factory=list) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class _Extensible(_ExtensibleNoFields): + """The full extensible bundle (entry, sense, note, example, ...).""" + + fields: list[Field] = field(default_factory=list) + + +@dataclass(slots=True, kw_only=True) +class Field(_ExtensibleNoFields): + """An entry-level usage ```` (extensible, but no nested field).""" + + type: str + content: Multitext = field(default_factory=Multitext) + + +@dataclass(slots=True) +class GrammaticalInfo: + """A ````; carries traits only (quirk 4 outlier).""" + + value: str + traits: list[Trait] = field(default_factory=list) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True) +class URLRef: + """A ```` or ````: an href with an optional label.""" + + href: str + label: Multitext = field(default_factory=Multitext) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class Translation: + """A ```` of an example (not extensible).""" + + type: str | None = None + forms: Multitext = field(default_factory=Multitext) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class Note(_Extensible): + """A ````; sibling notes conventionally have distinct types.""" + + type: str | None = None + forms: Multitext = field(default_factory=Multitext) + + +@dataclass(slots=True, kw_only=True) +class Example(_Extensible): + """An ```` under a sense.""" + + source: str | None = None + forms: Multitext = field(default_factory=Multitext) + translations: list[Translation] = field(default_factory=list) + notes: list[Note] = field(default_factory=list) + + +@dataclass(slots=True, kw_only=True) +class Relation(_Extensible): + """A ```` cross-reference to another entry/sense.""" + + type: str + ref: str + order: int | None = None + usage: Multitext = field(default_factory=Multitext) + + +@dataclass(slots=True, kw_only=True) +class Etymology(_Extensible): + """An ````; glosses are form-shaped (quirk 3).""" + + type: str + source: str + forms: Multitext = field(default_factory=Multitext) + glosses: list[Form] = field(default_factory=list) + + +@dataclass(slots=True, kw_only=True) +class ReversalMain: + """A reversal ``
``: the parent node in a reversal-index chain (recursive).""" + + forms: Multitext = field(default_factory=Multitext) + main: ReversalMain | None = None + grammatical_info: GrammaticalInfo | None = None + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class Reversal: + """A ```` index entry (not extensible).""" + + type: str | None = None + forms: Multitext = field(default_factory=Multitext) + main: ReversalMain | None = None + grammatical_info: GrammaticalInfo | None = None + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, kw_only=True) +class Pronunciation(_Extensible): + """A ```` with optional ```` references.""" + + forms: Multitext = field(default_factory=Multitext) + media: list[URLRef] = field(default_factory=list) + + +@dataclass(slots=True, kw_only=True) +class Variant(_Extensible): + """A ````: an inline variant form and/or a ``ref`` cross-reference.""" + + ref: str | None = None + forms: Multitext = field(default_factory=Multitext) + pronunciations: list[Pronunciation] = field(default_factory=list) + relations: list[Relation] = field(default_factory=list) + + +@dataclass(slots=True, kw_only=True) +class Sense(_Extensible): + """A ```` (or ```` — same content model, recursive).""" + + id: str | None = None + order: int | None = None + grammatical_info: GrammaticalInfo | None = None + glosses: list[Form] = field(default_factory=list) + definition: Multitext = field(default_factory=Multitext) + relations: list[Relation] = field(default_factory=list) + notes: list[Note] = field(default_factory=list) + examples: list[Example] = field(default_factory=list) + reversals: list[Reversal] = field(default_factory=list) + illustrations: list[URLRef] = field(default_factory=list) + subsenses: list[Sense] = field(default_factory=list) + + def gloss(self, lang: str) -> Text | None: + """The gloss text in ``lang``, or None (first match; quirk-3 helper).""" + for gloss_form in self.glosses: + if gloss_form.lang == lang: + return gloss_form.text + return None + + +@dataclass(slots=True, kw_only=True) +class Entry(_Extensible): + """An ````. A set ``date_deleted`` marks a tombstone.""" + + id: str | None = None + guid: str | None = None + order: int | None = None + date_deleted: datetime | date | None = None + lexical_unit: Multitext = field(default_factory=Multitext) + citation: Multitext = field(default_factory=Multitext) + pronunciations: list[Pronunciation] = field(default_factory=list) + variants: list[Variant] = field(default_factory=list) + senses: list[Sense] = field(default_factory=list) + notes: list[Note] = field(default_factory=list) + relations: list[Relation] = field(default_factory=list) + etymologies: list[Etymology] = field(default_factory=list) + + def gloss_langs(self) -> set[str]: + """Every language that has a gloss in any sense or subsense.""" + langs: set[str] = set() + stack = list(self.senses) + while stack: + sense = stack.pop() + langs.update(g.lang for g in sense.glosses if g.lang is not None) + stack.extend(sense.subsenses) + return langs + + +class Lexicon: + """The root handle: a parsed ``.lift`` document (and, from M3, its folder).""" + + __slots__ = ("entries", "extra", "header", "path", "producer") + + def __init__( + self, + *, + header: Header | None = None, + entries: list[Entry] | None = None, + producer: str | None = None, + path: Path | None = None, + extra: Extras | None = None, + ) -> None: + self.header = header if header is not None else Header() + self.entries = entries if entries is not None else [] + self.producer = producer + self.path = path + self.extra = extra if extra is not None else Extras() + + @classmethod + def load(cls, path: str | os.PathLike[str]) -> Lexicon: + """Parse a ``.lift`` file (LIFT 0.13 only) into a full object graph.""" + from ._reader import parse_document + + return parse_document(Path(path)) + + def find(self, *, id: str | None = None, guid: str | None = None) -> Entry | None: + """The first entry matching the given id and/or guid, or None.""" + if id is None and guid is None: + raise ValueError("find() needs id= and/or guid=") + for entry in self.entries: + if (id is None or entry.id == id) and (guid is None or entry.guid == guid): + return entry + return None + + def __repr__(self) -> str: + source = f", path={str(self.path)!r}" if self.path else "" + return f"Lexicon({len(self.entries)} entries{source})" diff --git a/src/sil_lift/_reader.py b/src/sil_lift/_reader.py new file mode 100644 index 0000000..91df6f0 --- /dev/null +++ b/src/sil_lift/_reader.py @@ -0,0 +1,581 @@ +"""Full-document parser: lxml tree -> model graph. + +Parsing never rejects schema-invalid-but-well-formed LIFT 0.13: anything the +model does not define lands verbatim in the nearest node's ``Extras`` (unknown +attributes/elements, comments, PIs, stray text, malformed typed attributes). +The only refusals are non-XML input, a non-```` root, and a version +other than 0.13. + +Interleave everywhere (data-model quirk 2) means child order is never assumed: +every parser dispatches children by tag, whatever their order. +""" + +from __future__ import annotations + +from datetime import date, datetime +from typing import TYPE_CHECKING + +from lxml import etree + +from ._errors import LiftParseError +from ._extras import Extras, _ExtraNode +from ._header import FieldDefinition, Header, Range, RangeElement +from ._model import ( + Entry, + Etymology, + Example, + Field, + GrammaticalInfo, + Lexicon, + Note, + Pronunciation, + Relation, + Reversal, + ReversalMain, + Sense, + Translation, + URLRef, + Variant, +) +from ._text import Annotation, Form, Multitext, Span, Text, Trait + +if TYPE_CHECKING: + from collections.abc import Callable, Collection, Mapping + from pathlib import Path + + Handler = Callable[[etree._Element], None] + +SUPPORTED_VERSION = "0.13" + +_PARSER = etree.XMLParser(resolve_entities=False, no_network=True) + + +def parse_document(path: Path) -> Lexicon: + try: + tree = etree.parse(path, parser=_PARSER) + except etree.XMLSyntaxError as exc: + raise LiftParseError(f"{path}: not well-formed XML: {exc}") from exc + return parse_root(tree.getroot(), path=path) + + +def parse_root(root: etree._Element, *, path: Path | None = None) -> Lexicon: + if root.tag != "lift": + raise LiftParseError(f"root element is <{root.tag}>, expected ") + version = root.get("version") + if version != SUPPORTED_VERSION: + raise LiftParseError( + f"unsupported LIFT version {version!r}: sil-lift reads LIFT 0.13 only " + "(one-off migration XSLTs are available in sillsdev/lift-standard)" + ) + lexicon = Lexicon(path=path) + attrs = _split_attrs(root, ("version", "producer"), lexicon.extra) + lexicon.producer = attrs.get("producer") + + def handle_header(el: etree._Element) -> None: + if lexicon.header: + _push_node(lexicon.extra, el) # duplicate
is out-of-schema + else: + lexicon.header = _parse_header(el) + + _walk( + root, + lexicon.extra, + { + "header": handle_header, + "entry": lambda el: lexicon.entries.append(_parse_entry(el)), + }, + ) + return lexicon + + +# --- residue plumbing --------------------------------------------------------- + + +def _push_node(extra: Extras, el: etree._Element, index: int | None = None) -> None: + if isinstance(el, etree._Comment): + kind = "comment" + elif isinstance(el, etree._ProcessingInstruction): + kind = "pi" + else: + kind = "element" + parent = el.getparent() + if index is None: + index = parent.index(el) if parent is not None else 0 + xml = etree.tostring(el, encoding="unicode", with_tail=False) + extra._nodes.append(_ExtraNode(kind=kind, xml=xml, index=index)) + + +def _split_attrs(el: etree._Element, known: Collection[str], extra: Extras) -> dict[str, str]: + found: dict[str, str] = {} + for raw_name, raw_value in el.attrib.items(): + name = raw_name if isinstance(raw_name, str) else raw_name.decode() + value = raw_value if isinstance(raw_value, str) else raw_value.decode() + if name in known: + found[name] = value + else: + extra._attrs[name] = value + return found + + +def _walk(el: etree._Element, extra: Extras, handlers: Mapping[str, Handler]) -> None: + """Dispatch children by tag; everything unhandled becomes residue.""" + if el.text and el.text.strip(): + extra._nodes.append(_ExtraNode(kind="text", xml=el.text, index=0)) + for index, child in enumerate(el): + tag = child.tag + if isinstance(tag, str) and tag in handlers: + handlers[tag](child) + else: + _push_node(extra, child, index) + if child.tail and child.tail.strip(): + extra._nodes.append(_ExtraNode(kind="text", xml=child.tail, index=index)) + + +# --- typed attributes (malformed values become residue, field stays None) ------ + + +def _take_date(attrs: dict[str, str], key: str, extra: Extras) -> datetime | date | None: + raw = attrs.get(key) + if raw is None: + return None + value = raw.strip() + try: + if "T" in value: + return datetime.fromisoformat(value) + return date.fromisoformat(value) + except ValueError: + try: + return datetime.fromisoformat(value) + except ValueError: + extra._attrs[key] = raw + return None + + +def _take_int(attrs: dict[str, str], key: str, extra: Extras) -> int | None: + raw = attrs.get(key) + if raw is None: + return None + try: + return int(raw.strip()) + except ValueError: + extra._attrs[key] = raw + return None + + +# --- text model ----------------------------------------------------------------- + + +def _parse_mixed(el: etree._Element, host_extra: Extras) -> list[str | Span]: + """Mixed content of /: text and nested spans, in order. + + Comments/PIs/unknown elements inside mixed content are hoisted to the + nearest host node's residue (position within the run is not preserved — + untouched-entry passthrough covers exact bytes). + """ + fragments: list[str | Span] = [] + if el.text: + fragments.append(el.text) + for index, child in enumerate(el): + if child.tag == "span": + fragments.append(_parse_span(child)) + else: + _push_node(host_extra, child, index) + if child.tail: + fragments.append(child.tail) + return fragments + + +def _parse_span(el: etree._Element) -> Span: + span = Span() + attrs = _split_attrs(el, ("lang", "href", "class"), span.extra) + span.lang = attrs.get("lang") + span.href = attrs.get("href") + span.class_ = attrs.get("class") + span.content = _parse_mixed(el, span.extra) + return span + + +def _parse_form(el: etree._Element) -> Form: + """A or (form-shaped, quirk 3) .""" + form = Form(None) + attrs = _split_attrs(el, ("lang",), form.extra) + form.lang = attrs.get("lang") + texts: list[Text] = [] + + def handle_text(child: etree._Element) -> None: + if texts: # more than one is out-of-schema + _push_node(form.extra, child) + else: + texts.append(Text(_parse_mixed(child, form.extra))) + + _walk( + el, + form.extra, + { + "text": handle_text, + "annotation": lambda c: form.annotations.append(_parse_annotation(c)), + }, + ) + if texts: + form.text = texts[0] + return form + + +def _parse_multitext(el: etree._Element) -> Multitext: + """An element whose entire content model is multitext (definition, label, ...).""" + multitext = Multitext() + _split_attrs(el, (), multitext.extra) + _walk(el, multitext.extra, {"form": lambda c: multitext.forms.append(_parse_form(c))}) + return multitext + + +def _parse_annotation(el: etree._Element) -> Annotation: + annotation = Annotation("") + attrs = _split_attrs(el, ("name", "value", "who", "when"), annotation.extra) + annotation.name = attrs.get("name", "") + annotation.value = attrs.get("value") + annotation.who = attrs.get("who") + annotation.when = _take_date(attrs, "when", annotation.extra) + _walk( + el, + annotation.extra, + {"form": lambda c: annotation.content.forms.append(_parse_form(c))}, + ) + return annotation + + +def _parse_trait(el: etree._Element) -> Trait: + trait = Trait("", "") + attrs = _split_attrs(el, ("name", "value"), trait.extra) + trait.name = attrs.get("name", "") + trait.value = attrs.get("value", "") + _walk( + el, + trait.extra, + {"annotation": lambda c: trait.annotations.append(_parse_annotation(c))}, + ) + return trait + + +# --- extensible plumbing ---------------------------------------------------------- + + +def _extensible_handlers( + annotations: list[Annotation], + traits: list[Trait], + fields: list[Field] | None, +) -> dict[str, Handler]: + handlers: dict[str, Handler] = { + "annotation": lambda c: annotations.append(_parse_annotation(c)), + "trait": lambda c: traits.append(_parse_trait(c)), + } + if fields is not None: + handlers["field"] = lambda c: fields.append(_parse_field(c)) + return handlers + + +def _parse_field(el: etree._Element) -> Field: + field = Field(type="") + attrs = _split_attrs(el, ("type", "dateCreated", "dateModified"), field.extra) + field.type = attrs.get("type", "") + field.date_created = _take_date(attrs, "dateCreated", field.extra) + field.date_modified = _take_date(attrs, "dateModified", field.extra) + handlers = _extensible_handlers(field.annotations, field.traits, None) + handlers["form"] = lambda c: field.content.forms.append(_parse_form(c)) + _walk(el, field.extra, handlers) + return field + + +# --- entry-side elements ----------------------------------------------------------- + + +def _parse_url_ref(el: etree._Element) -> URLRef: + ref = URLRef("") + attrs = _split_attrs(el, ("href",), ref.extra) + ref.href = attrs.get("href", "") + _walk(el, ref.extra, {"label": lambda c: _set_multitext(ref, "label", c)}) + return ref + + +def _set_multitext(obj: object, attr: str, el: etree._Element) -> None: + setattr(obj, attr, _parse_multitext(el)) + + +def _parse_grammatical_info(el: etree._Element) -> GrammaticalInfo: + info = GrammaticalInfo("") + attrs = _split_attrs(el, ("value",), info.extra) + info.value = attrs.get("value", "") + _walk(el, info.extra, {"trait": lambda c: info.traits.append(_parse_trait(c))}) + return info + + +def _parse_translation(el: etree._Element) -> Translation: + translation = Translation() + attrs = _split_attrs(el, ("type",), translation.extra) + translation.type = attrs.get("type") + _walk( + el, + translation.extra, + {"form": lambda c: translation.forms.forms.append(_parse_form(c))}, + ) + return translation + + +def _parse_note(el: etree._Element) -> Note: + note = Note() + attrs = _split_attrs(el, ("type", "dateCreated", "dateModified"), note.extra) + note.type = attrs.get("type") + note.date_created = _take_date(attrs, "dateCreated", note.extra) + note.date_modified = _take_date(attrs, "dateModified", note.extra) + handlers = _extensible_handlers(note.annotations, note.traits, note.fields) + handlers["form"] = lambda c: note.forms.forms.append(_parse_form(c)) + _walk(el, note.extra, handlers) + return note + + +def _parse_example(el: etree._Element) -> Example: + example = Example() + attrs = _split_attrs(el, ("source", "dateCreated", "dateModified"), example.extra) + example.source = attrs.get("source") + example.date_created = _take_date(attrs, "dateCreated", example.extra) + example.date_modified = _take_date(attrs, "dateModified", example.extra) + handlers = _extensible_handlers(example.annotations, example.traits, example.fields) + handlers["form"] = lambda c: example.forms.forms.append(_parse_form(c)) + handlers["translation"] = lambda c: example.translations.append(_parse_translation(c)) + handlers["note"] = lambda c: example.notes.append(_parse_note(c)) + _walk(el, example.extra, handlers) + return example + + +def _parse_relation(el: etree._Element) -> Relation: + relation = Relation(type="", ref="") + attrs = _split_attrs( + el, ("type", "ref", "order", "dateCreated", "dateModified"), relation.extra + ) + relation.type = attrs.get("type", "") + relation.ref = attrs.get("ref", "") + relation.order = _take_int(attrs, "order", relation.extra) + relation.date_created = _take_date(attrs, "dateCreated", relation.extra) + relation.date_modified = _take_date(attrs, "dateModified", relation.extra) + handlers = _extensible_handlers(relation.annotations, relation.traits, relation.fields) + handlers["usage"] = lambda c: _set_multitext(relation, "usage", c) + _walk(el, relation.extra, handlers) + return relation + + +def _parse_etymology(el: etree._Element) -> Etymology: + etymology = Etymology(type="", source="") + attrs = _split_attrs(el, ("type", "source", "dateCreated", "dateModified"), etymology.extra) + etymology.type = attrs.get("type", "") + etymology.source = attrs.get("source", "") + etymology.date_created = _take_date(attrs, "dateCreated", etymology.extra) + etymology.date_modified = _take_date(attrs, "dateModified", etymology.extra) + handlers = _extensible_handlers(etymology.annotations, etymology.traits, etymology.fields) + handlers["form"] = lambda c: etymology.forms.forms.append(_parse_form(c)) + handlers["gloss"] = lambda c: etymology.glosses.append(_parse_form(c)) + _walk(el, etymology.extra, handlers) + return etymology + + +def _parse_reversal_main(el: etree._Element) -> ReversalMain: + main = ReversalMain() + _split_attrs(el, (), main.extra) + _walk( + el, + main.extra, + { + "form": lambda c: main.forms.forms.append(_parse_form(c)), + "main": lambda c: setattr(main, "main", _parse_reversal_main(c)), + "grammatical-info": lambda c: setattr( + main, "grammatical_info", _parse_grammatical_info(c) + ), + }, + ) + return main + + +def _parse_reversal(el: etree._Element) -> Reversal: + reversal = Reversal() + attrs = _split_attrs(el, ("type",), reversal.extra) + reversal.type = attrs.get("type") + _walk( + el, + reversal.extra, + { + "form": lambda c: reversal.forms.forms.append(_parse_form(c)), + "main": lambda c: setattr(reversal, "main", _parse_reversal_main(c)), + "grammatical-info": lambda c: setattr( + reversal, "grammatical_info", _parse_grammatical_info(c) + ), + }, + ) + return reversal + + +def _parse_pronunciation(el: etree._Element) -> Pronunciation: + pronunciation = Pronunciation() + attrs = _split_attrs(el, ("dateCreated", "dateModified"), pronunciation.extra) + pronunciation.date_created = _take_date(attrs, "dateCreated", pronunciation.extra) + pronunciation.date_modified = _take_date(attrs, "dateModified", pronunciation.extra) + handlers = _extensible_handlers( + pronunciation.annotations, pronunciation.traits, pronunciation.fields + ) + handlers["form"] = lambda c: pronunciation.forms.forms.append(_parse_form(c)) + handlers["media"] = lambda c: pronunciation.media.append(_parse_url_ref(c)) + _walk(el, pronunciation.extra, handlers) + return pronunciation + + +def _parse_variant(el: etree._Element) -> Variant: + variant = Variant() + attrs = _split_attrs(el, ("ref", "dateCreated", "dateModified"), variant.extra) + variant.ref = attrs.get("ref") + variant.date_created = _take_date(attrs, "dateCreated", variant.extra) + variant.date_modified = _take_date(attrs, "dateModified", variant.extra) + handlers = _extensible_handlers(variant.annotations, variant.traits, variant.fields) + handlers["form"] = lambda c: variant.forms.forms.append(_parse_form(c)) + handlers["pronunciation"] = lambda c: variant.pronunciations.append(_parse_pronunciation(c)) + handlers["relation"] = lambda c: variant.relations.append(_parse_relation(c)) + _walk(el, variant.extra, handlers) + return variant + + +def _parse_sense(el: etree._Element) -> Sense: + sense = Sense() + attrs = _split_attrs(el, ("id", "order", "dateCreated", "dateModified"), sense.extra) + sense.id = attrs.get("id") + sense.order = _take_int(attrs, "order", sense.extra) + sense.date_created = _take_date(attrs, "dateCreated", sense.extra) + sense.date_modified = _take_date(attrs, "dateModified", sense.extra) + handlers = _extensible_handlers(sense.annotations, sense.traits, sense.fields) + handlers.update( + { + "grammatical-info": lambda c: setattr( + sense, "grammatical_info", _parse_grammatical_info(c) + ), + "gloss": lambda c: sense.glosses.append(_parse_form(c)), + "definition": lambda c: _set_multitext(sense, "definition", c), + "relation": lambda c: sense.relations.append(_parse_relation(c)), + "note": lambda c: sense.notes.append(_parse_note(c)), + "example": lambda c: sense.examples.append(_parse_example(c)), + "reversal": lambda c: sense.reversals.append(_parse_reversal(c)), + "illustration": lambda c: sense.illustrations.append(_parse_url_ref(c)), + "subsense": lambda c: sense.subsenses.append(_parse_sense(c)), + } + ) + _walk(el, sense.extra, handlers) + return sense + + +def _parse_entry(el: etree._Element) -> Entry: + entry = Entry() + attrs = _split_attrs( + el, + ("id", "guid", "order", "dateCreated", "dateModified", "dateDeleted"), + entry.extra, + ) + entry.id = attrs.get("id") + entry.guid = attrs.get("guid") + entry.order = _take_int(attrs, "order", entry.extra) + entry.date_created = _take_date(attrs, "dateCreated", entry.extra) + entry.date_modified = _take_date(attrs, "dateModified", entry.extra) + entry.date_deleted = _take_date(attrs, "dateDeleted", entry.extra) + handlers = _extensible_handlers(entry.annotations, entry.traits, entry.fields) + handlers.update( + { + "lexical-unit": lambda c: _set_multitext(entry, "lexical_unit", c), + "citation": lambda c: _set_multitext(entry, "citation", c), + "pronunciation": lambda c: entry.pronunciations.append(_parse_pronunciation(c)), + "variant": lambda c: entry.variants.append(_parse_variant(c)), + "sense": lambda c: entry.senses.append(_parse_sense(c)), + "note": lambda c: entry.notes.append(_parse_note(c)), + "relation": lambda c: entry.relations.append(_parse_relation(c)), + "etymology": lambda c: entry.etymologies.append(_parse_etymology(c)), + } + ) + _walk(el, entry.extra, handlers) + return entry + + +# --- header side ------------------------------------------------------------------- + + +def _parse_field_definition(el: etree._Element) -> FieldDefinition: + definition = FieldDefinition(tag="") + attrs = _split_attrs(el, ("tag",), definition.extra) + definition.tag = attrs.get("tag", "") + _walk( + el, + definition.extra, + {"form": lambda c: definition.content.forms.append(_parse_form(c))}, + ) + return definition + + +def _parse_range_element(el: etree._Element) -> RangeElement: + element = RangeElement(id="") + attrs = _split_attrs(el, ("id", "parent", "guid"), element.extra) + element.id = attrs.get("id", "") + element.parent = attrs.get("parent") + element.guid = attrs.get("guid") + _walk( + el, + element.extra, + { + "description": lambda c: _set_multitext(element, "description", c), + "label": lambda c: _set_multitext(element, "label", c), + "abbrev": lambda c: _set_multitext(element, "abbrev", c), + }, + ) + return element + + +def _parse_range(el: etree._Element) -> Range: + range_ = Range(id="") + attrs = _split_attrs(el, ("id", "href", "guid"), range_.extra) + range_.id = attrs.get("id", "") + range_.href = attrs.get("href") # carried unresolved (M3) + range_.guid = attrs.get("guid") + _walk( + el, + range_.extra, + { + "description": lambda c: _set_multitext(range_, "description", c), + "label": lambda c: _set_multitext(range_, "label", c), + "abbrev": lambda c: _set_multitext(range_, "abbrev", c), + "range-element": lambda c: range_.elements.append(_parse_range_element(c)), + }, + ) + return range_ + + +def _parse_header(el: etree._Element) -> Header: + header = Header() + _split_attrs(el, (), header.extra) + + def handle_ranges(ranges_el: etree._Element) -> None: + _split_attrs(ranges_el, (), header.extra) + _walk( + ranges_el, + header.extra, + {"range": lambda c: header.ranges.append(_parse_range(c))}, + ) + + def handle_fields(fields_el: etree._Element) -> None: + _split_attrs(fields_el, (), header.extra) + _walk( + fields_el, + header.extra, + {"field": lambda c: header.fields.append(_parse_field_definition(c))}, + ) + + _walk( + el, + header.extra, + { + "description": lambda c: _set_multitext(header, "description", c), + "ranges": handle_ranges, + "fields": handle_fields, + }, + ) + return header diff --git a/src/sil_lift/_text.py b/src/sil_lift/_text.py new file mode 100644 index 0000000..287dd54 --- /dev/null +++ b/src/sil_lift/_text.py @@ -0,0 +1,152 @@ +"""The text model: Span, Text, Form, Multitext, plus Trait and Annotation. + +```` is mixed content with recursively nestable ```` (data-model +quirk 11), so ``Text`` is structured — an ordered list of ``str | Span`` +fragments — with ``str(...)`` as the flattening escape hatch. ``Multitext`` is +the "one localized text per language" collection used all over LIFT; ``gloss`` +is form-shaped rather than multitext-shaped (quirk 3), which is why ``Form`` is +a public type of its own. +""" + +from __future__ import annotations + +from dataclasses import dataclass, field +from datetime import date, datetime +from typing import TYPE_CHECKING + +from ._extras import Extras + +if TYPE_CHECKING: + from collections.abc import Iterator + +__all__ = ["Annotation", "Form", "Multitext", "Span", "Text", "Trait"] + + +@dataclass(slots=True) +class Span: + """An inline markup run inside a ````; nests recursively.""" + + content: list[str | Span] = field(default_factory=list) + lang: str | None = None # None inherits the enclosing form's language + href: str | None = None + class_: str | None = None # the XML attribute is named 'class' + extra: Extras = field(default_factory=Extras) + + def __str__(self) -> str: + return "".join(str(fragment) for fragment in self.content) + + +@dataclass(slots=True) +class Text: + """Mixed content of a ````: ordered ``str`` and ``Span`` fragments.""" + + fragments: list[str | Span] = field(default_factory=list) + + def __str__(self) -> str: + """Plain-text flattening; span markup is stripped, span text kept.""" + return "".join(str(fragment) for fragment in self.fragments) + + +@dataclass(slots=True) +class Trait: + """A ````: a name/value pair, typically keyed to a range.""" + + name: str + value: str + annotations: list[Annotation] = field(default_factory=list) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True) +class Annotation: + """An ````: reviewer/editorial metadata on a node.""" + + name: str + value: str | None = None + who: str | None = None + when: datetime | date | None = None + content: Multitext = field(default_factory=lambda: Multitext()) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True) +class Form: + """A single-language text unit: ````, also ````. + + ``lang`` is required by the schema; it is ``None`` only when reading + schema-invalid real-world files (which sil-lift loads rather than rejects). + """ + + lang: str | None + text: Text = field(default_factory=Text) + annotations: list[Annotation] = field(default_factory=list) + extra: Extras = field(default_factory=Extras) + + +@dataclass(slots=True, repr=False) +class Multitext: + """An insertion-ordered collection of forms, one per language. + + Behaves like a ``Mapping[str, Text]`` keyed by language (``mt["en"]``), + with assignment coercing plain strings (``mt["en"] = "dog"``). The + underlying ``forms`` list is the full truth — forms with a ``None`` lang + (schema-invalid input) are reachable there but not via mapping keys. + """ + + forms: list[Form] = field(default_factory=list) + extra: Extras = field(default_factory=Extras) + + def _find(self, lang: str) -> Form | None: + for form in self.forms: + if form.lang == lang: + return form + return None + + def __getitem__(self, lang: str) -> Text: + form = self._find(lang) + if form is None: + raise KeyError(lang) + return form.text + + def __setitem__(self, lang: str, value: Text | str) -> None: + text = Text([value]) if isinstance(value, str) else value + form = self._find(lang) + if form is None: + self.forms.append(Form(lang, text)) + else: + form.text = text + + def __delitem__(self, lang: str) -> None: + form = self._find(lang) + if form is None: + raise KeyError(lang) + self.forms.remove(form) + + def get(self, lang: str, default: Text | None = None) -> Text | None: + form = self._find(lang) + return default if form is None else form.text + + def __contains__(self, lang: object) -> bool: + return isinstance(lang, str) and self._find(lang) is not None + + def __iter__(self) -> Iterator[str]: + return iter(self.keys()) + + def __len__(self) -> int: + return len(self.forms) + + def __bool__(self) -> bool: + return bool(self.forms) or bool(self.extra) + + def keys(self) -> list[str]: + return [form.lang for form in self.forms if form.lang is not None] + + def values(self) -> list[Text]: + return [form.text for form in self.forms if form.lang is not None] + + def items(self) -> list[tuple[str, Text]]: + return [(form.lang, form.text) for form in self.forms if form.lang is not None] + + def __repr__(self) -> str: + inner = ", ".join(f"{form.lang!r}: {str(form.text)!r}" for form in self.forms) + return f"Multitext({{{inner}}})" diff --git a/tests/test_reader.py b/tests/test_reader.py new file mode 100644 index 0000000..6c16043 --- /dev/null +++ b/tests/test_reader.py @@ -0,0 +1,222 @@ +"""M1 acceptance: every 0.13 corpus file loads; content spot-checks; version guard.""" + +from datetime import UTC, date, datetime +from pathlib import Path + +import pytest + +import sil_lift +from sil_lift import LiftParseError, Span + +CORPUS_DIR = Path(__file__).parent / "corpus" + +LOADABLE = sorted( + p + for p in CORPUS_DIR.rglob("*.lift") + if "0.12" not in p.parts and p.name != "sample.lift" # 0.12 originals: see guard tests +) +V012_FILES = [ + *sorted((CORPUS_DIR / "spec-examples" / "0.12").glob("*.lift")), + CORPUS_DIR / "misc" / "sample.lift", +] + + +def corpus_id(path: Path) -> str: + return path.relative_to(CORPUS_DIR).as_posix() + + +@pytest.mark.parametrize("path", LOADABLE, ids=corpus_id) +def test_loads(path: Path) -> None: + lexicon = sil_lift.load(path) + assert lexicon.path == path + for entry in lexicon.entries: + assert entry.lexical_unit is not None + + +def test_minimal_loads_empty() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "spec-examples" / "0.13" / "minimal.lift") + assert lexicon.entries == [] + assert not lexicon.header + + +@pytest.mark.parametrize("path", V012_FILES, ids=corpus_id) +def test_version_guard_names_the_version(path: Path) -> None: + with pytest.raises(LiftParseError, match=r"0\.12"): + sil_lift.load(path) + + +def test_not_xml() -> None: + with pytest.raises(LiftParseError, match="not well-formed"): + sil_lift.load(CORPUS_DIR / "PROVENANCE.md") + + +def test_full_entry_spot_check() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift") + assert len(lexicon.entries) == 1 + entry = lexicon.entries[0] + assert entry.id == "abat" + assert entry.date_modified == date(1990, 2, 26) + assert str(entry.lexical_unit["zxx-Latn"]) == "abat" + + (variant,) = entry.variants + assert variant.traits[0].name == "paradigm" + assert variant.traits[0].value == "singular" + assert str(variant.forms["zxx-Latn"]) == "abatke" + + (sense,) = entry.senses + assert sense.id == "abat_" + assert sense.grammatical_info is not None + assert sense.grammatical_info.value == "n" + assert entry.gloss_langs() == {"en", "id"} + assert str(sense.gloss("en") or "") == "grove" + assert str(sense.gloss("id") or "") == "dusun" + + first, second = sense.examples + assert first.source == "d2.077.03" + (translation,) = first.translations + assert str(translation.forms["id"]) == "Saya pergi menyiangi dusun kelapa." + assert second.source == "d4.079.16" + + (note,) = sense.notes + assert note.type == "encyclopedic" + text = note.forms["en"] + spans = [f for f in text.fragments if isinstance(f, Span)] + assert len(spans) == 1 + assert spans[0].class_ == "emphasis" + assert str(spans[0]) == "not" + assert "not limited" in " ".join(str(text).split()) + + # The top-of-file MDF comment is residue on the lexicon, not lost. + assert lexicon.extra + + +def test_subsenses_spot_check() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "spec-examples" / "0.13" / "subsenses.lift") + entry = lexicon.find(id="opon") + assert entry is not None + sense_1, sense_2 = entry.senses + assert sense_1.order == 1 + assert [s.id for s in sense_1.subsenses] == ["opon_1a", "opon_1b"] + assert str(sense_1.subsenses[0].gloss("en") or "") == "grand kin" + assert sense_2.subsenses == [] + assert str(sense_2.gloss("en") or "") == "master" + + +def test_reversal_main_chain() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "spec-examples" / "0.13" / "reversals-hierarchy.lift") + (entry,) = lexicon.entries + (sense,) = entry.senses + (reversal,) = sense.reversals + assert reversal.type == "eng" + assert str(reversal.forms["en"]) == "mushroom" + assert reversal.main is not None + assert str(reversal.main.forms["en"]) == "vegetable" + assert reversal.main.main is None + + +def test_all_flex_fields_spot_check() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "flex" / "AllFLExFields" / "AllFLExFields.lift") + assert lexicon.producer == "SIL.FLEx 8.0.9.41689" + + header = lexicon.header + assert len(header.ranges) == 22 + assert header.ranges[0].id == "dialect" + assert header.ranges[0].href is not None + assert header.ranges[0].href.startswith("file://C:/") + assert [f.tag for f in header.fields] == [ + "cv-pattern", + "tone", + "comment", + "import-residue", + "literal-meaning", + "summary-definition", + "scientific-name", + ] + # The two comments inside are carried as header residue. + assert header.extra + + entry = lexicon.find(guid="0a18bb95-0eb2-422e-bf7e-c1fd90274670") + assert entry is not None + assert entry.id == "คาม_0a18bb95-0eb2-422e-bf7e-c1fd90274670" + assert entry.date_created == datetime(2014, 9, 25, 9, 13, 41, tzinfo=UTC) + assert str(entry.lexical_unit["th"]) == "คาม" + assert str(entry.citation["th"]) == "คาม" + assert entry.traits[0].name == "morph-type" + assert {f.type for f in entry.fields} == { + "literal-meaning", + "summary-definition", + "import-residue", + } + assert {n.type for n in entry.notes} == {"bibliography", None, "restrictions"} + + (etymology,) = entry.etymologies + assert etymology.type == "proto" + assert etymology.source == "A Etymology Source" + assert [f.lang for f in etymology.forms.forms] == ["th", "en"] + assert etymology.glosses[0].lang == "en" + assert etymology.fields[0].type == "comment" + + (relation,) = entry.relations + assert relation.type == "_component-lexeme" + assert relation.order == 0 + assert relation.fields[0].type == "summary" + + (pronunciation,) = entry.pronunciations + assert pronunciation.media[0].href == "Kalimba.mp3" + assert {f.type for f in pronunciation.fields} == {"cv-pattern", "tone"} + + (sense,) = entry.senses + assert sense.grammatical_info is not None + assert sense.grammatical_info.value == "Noun" + hyperlink_note = next(n for n in sense.notes if n.type == "encyclopedic") + (span,) = [f for f in hyperlink_note.forms["en"].fragments if isinstance(f, Span)] + assert span.href == "http://angular.github.io/" + assert span.class_ == "Hyperlink" + (illustration,) = sense.illustrations + assert illustration.href == "Desert.jpg" + assert illustration.label.keys() == ["th", "en", "fr"] + + other = lexicon.find(id="คาม ๒_dc4106ac-13fd-4ae0-a32b-b737f413d515") + assert other is not None + assert len(other.relations) == 2 + + +def test_sango_loads_and_is_big() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "large" / "sango" / "sango.lift") + assert len(lexicon.entries) == 3507 + assert lexicon.producer == "SIL.FLEx 9.1.15.658" + + +def test_multitext_mapping_behavior() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift") + lexical_unit = lexicon.entries[0].lexical_unit + assert "zxx-Latn" in lexical_unit + assert list(lexical_unit) == ["zxx-Latn"] + assert lexical_unit.get("nope") is None + with pytest.raises(KeyError): + lexical_unit["nope"] + lexical_unit["en"] = "grove-tree" + assert str(lexical_unit["en"]) == "grove-tree" + del lexical_unit["en"] + assert "en" not in lexical_unit + + +def test_find_requires_criteria() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift") + with pytest.raises(ValueError, match="find"): + lexicon.find() + assert lexicon.find(id="no-such-entry") is None + + +def test_schema_invalid_content_is_carried_not_dropped() -> None: + """dialects.lift has
without lang inside (see PROVENANCE.md).""" + lexicon = sil_lift.load(CORPUS_DIR / "spec-examples" / "0.13" / "dialects.lift") + lang_less = [ + form + for entry in lexicon.entries + for etymology in entry.etymologies + for form in etymology.forms.forms + if form.lang is None + ] + assert lang_less, "expected the schema-invalid lang-less etymology form to load" + assert str(lang_less[0].text) # its text content survives From c464f443f8e9fac2c70c8a6c5ea51653fe14f024 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 15 Jul 2026 13:13:41 -0400 Subject: [PATCH 05/42] Writer + losslessness Canonical serializer (custom indenter that never touches mixed content - lxml pretty_print corrupts whitespace, caught on the Sango corpus); byte-span scanner for top-level entry/header spans; unchanged documents save byte-identically, untouched entries stay verbatim under edits, touched entries re-serialize canonically with residue re-emitted at clamped anchors. Hypothesis round-trip properties (caught the empty-fragment vs asymmetry); no-lxml-leakage public API test; fidelity contract documented (README, docs/en/fidelity.md). 187 tests green. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 8 + README.md | 9 +- docs/en/fidelity.md | 56 ++- src/sil_lift/_model.py | 20 +- src/sil_lift/_reader.py | 42 +- src/sil_lift/_scan.py | 178 ++++++++ src/sil_lift/_writer.py | 724 +++++++++++++++++++++++++++++++ tests/test_property_roundtrip.py | 159 +++++++ tests/test_public_api.py | 38 ++ tests/test_writer.py | 204 +++++++++ 10 files changed, 1425 insertions(+), 13 deletions(-) create mode 100644 src/sil_lift/_scan.py create mode 100644 src/sil_lift/_writer.py create mode 100644 tests/test_property_roundtrip.py create mode 100644 tests/test_public_api.py create mode 100644 tests/test_writer.py diff --git a/CHANGELOG.md b/CHANGELOG.md index c416d92..0a6b2f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,3 +12,11 @@ During 0.x, minor releases may contain breaking changes. - Project scaffolding: package skeleton, vendored LIFT 0.13 RELAX NG schema, test corpus with provenance, corpus-prep and large-file-generator tooling. +- M1: full object model (all 35 LIFT 0.13 elements as typed dataclasses), + `sil_lift.load()` / `Lexicon.load()` full-document reader with per-node + `Extras` residue capture, LIFT-version guard. +- M2: `Lexicon.save()` writer with byte-fidelity passthrough — unchanged + documents and untouched entries are written byte-identically; touched + entries re-serialize canonically with all out-of-schema content preserved. + Fidelity contract documented in `docs/en/fidelity.md` and enforced by + corpus byte-identity tests plus Hypothesis round-trip properties. diff --git a/README.md b/README.md index f3d8907..4fa0d87 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,16 @@ lex.save() `sil-lift` treats LIFT as an *interchange* format: it never drops what it does not understand. -- Entries you did not modify are written back **byte-identical**. +- Saving an unchanged document is **byte-identical** (no reformatting, ever). +- Entries you did not modify are written back **byte-identical**, even when + other entries changed. - Entries you did modify are re-serialized in a documented canonical form, with all out-of-schema content (unknown elements, attributes, comments) preserved. +- Whitespace inside `` is never altered — not even for indentation. + +The precise rules and their few edge cases are documented in +[docs/en/fidelity.md](docs/en/fidelity.md); they are enforced by corpus-wide +byte-identity tests and property-based (Hypothesis) round-trip tests. ## Scope diff --git a/docs/en/fidelity.md b/docs/en/fidelity.md index a69bdc2..ffaf91e 100644 --- a/docs/en/fidelity.md +++ b/docs/en/fidelity.md @@ -1,14 +1,52 @@ # Fidelity guarantees LIFT is an *interchange* format: the cardinal rule is **never drop what you do -not understand**. `sil-lift`'s contract: +not understand**. `sil-lift`'s contract, verified by the test suite on every +run (corpus files plus property-based generation): -- **Untouched entries are written back byte-identical.** Opening a file and - saving it does not reformat, reorder, or re-escape entries you did not - modify. -- **Modified entries are re-serialized canonically and completely.** All - out-of-schema content — unknown elements, unknown attributes, XML comments — - is preserved in place. +## Reading -The precise rules (including the short list of documented normalizations at -the document level) will be specified here as the writer lands. +Any well-formed LIFT 0.13 document loads — schema-invalid content included. +Whatever the model does not define is carried in the nearest node's opaque +`Extras` bucket: unknown attributes and elements, XML comments and processing +instructions, stray text, and malformed typed attributes (a bad date stays as +the original string in `Extras`; the typed field is `None`). + +## Saving an unchanged document + +`load()` → `save()` with no edits writes **byte-identical output** — no +reformatting, no re-escaping, no reordering, byte-order marks and XML +declarations included. There is currently no normalization list: identity is +exact. + +Exceptions (the writer falls back to full canonical serialization, which is +semantically complete but not byte-preserving): + +- the source encoding is not ASCII-compatible (not UTF-8/US-ASCII), or +- the source contains a DOCTYPE, or +- the source was built in memory rather than loaded from a file. + +## Saving an edited document + +- **Untouched entries are emitted verbatim from their original bytes.** + An entry counts as touched if any part of its model object changed since + parse (detected by canonical-serialization snapshot, not a dirty flag). +- **Touched entries are re-serialized canonically and completely**: UTF-8, + 2-space indentation *outside* mixed content (whitespace inside `` and + `` is never altered), a documented child grouping per element + (e.g. entry: lexical-unit, citation, pronunciations, variants, senses, + notes, relations, etymologies, annotations, traits, fields), fixed + attribute order, dates in ISO-8601 (`Z` for UTC). All residue is re-emitted; + its position is restored to the original child index, clamped to the new + child list (an approximation — exact byte positions are only guaranteed for + untouched entries). +- Adding, removing, or reordering entries re-serializes the document + structure but still emits every unchanged entry's bytes verbatim. + +## Known approximations (touched nodes only) + +- Comments *inside* a `` run are preserved but hoisted next to the run, + not at their exact character offset. +- Cross-type child order within an edited element is normalized to the + canonical grouping (the LIFT schema's `interleave` makes this order + semantically insignificant). diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 329e797..d87269b 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -23,6 +23,8 @@ if TYPE_CHECKING: import os + from ._writer import _SourceInfo + __all__ = [ "Entry", "Etymology", @@ -227,7 +229,7 @@ def gloss_langs(self) -> set[str]: class Lexicon: """The root handle: a parsed ``.lift`` document (and, from M3, its folder).""" - __slots__ = ("entries", "extra", "header", "path", "producer") + __slots__ = ("_source", "entries", "extra", "header", "path", "producer") def __init__( self, @@ -243,6 +245,7 @@ def __init__( self.producer = producer self.path = path self.extra = extra if extra is not None else Extras() + self._source: _SourceInfo | None = None # set by the reader (A2 passthrough) @classmethod def load(cls, path: str | os.PathLike[str]) -> Lexicon: @@ -251,6 +254,21 @@ def load(cls, path: str | os.PathLike[str]) -> Lexicon: return parse_document(Path(path)) + def save(self, path: str | os.PathLike[str] | None = None) -> None: + """Write the ``.lift`` file. + + Untouched entries are emitted byte-identical to the source; modified + entries are re-serialized canonically with all residue preserved (A2). + With no ``path``, saves to where the lexicon was loaded from. + """ + from ._writer import render_document + + target = Path(path) if path is not None else self.path + if target is None: + raise ValueError("no target path: pass save(path) or load the lexicon from a file") + target.write_bytes(render_document(self)) + self.path = target + def find(self, *, id: str | None = None, guid: str | None = None) -> Entry | None: """The first entry matching the given id and/or guid, or None.""" if id is None and guid is None: diff --git a/src/sil_lift/_reader.py b/src/sil_lift/_reader.py index 91df6f0..5372d24 100644 --- a/src/sil_lift/_reader.py +++ b/src/sil_lift/_reader.py @@ -51,11 +51,49 @@ def parse_document(path: Path) -> Lexicon: + data = path.read_bytes() try: - tree = etree.parse(path, parser=_PARSER) + root = etree.fromstring(data, parser=_PARSER) except etree.XMLSyntaxError as exc: raise LiftParseError(f"{path}: not well-formed XML: {exc}") from exc - return parse_root(tree.getroot(), path=path) + lexicon = parse_root(root, path=path) + _attach_source(lexicon, data, root) + return lexicon + + +def _attach_source(lexicon: Lexicon, data: bytes, root: etree._Element) -> None: + """Capture what the A2 passthrough needs; on any doubt, capture nothing. + + Without source info the writer falls back to canonical serialization — + semantically complete, just not byte-preserving. + """ + import copy + + from ._scan import scan + from ._writer import _EntryRecord, _SourceInfo, entry_digest, header_digest + + encoding = root.getroottree().docinfo.encoding + if encoding is not None and encoding.lower() not in ("utf-8", "us-ascii", "ascii"): + return # byte scanning assumes an ASCII-compatible encoding + result = scan(data) + if result is None: + return + entry_spans = [span for span in result.children if span.tag == "entry"] + header_spans = [span for span in result.children if span.tag == "header"] + if len(entry_spans) != len(lexicon.entries) or len(header_spans) > 1: + return # scanner and parser disagree: distrust the scan + lexicon._source = _SourceInfo( + data=data, + root_open_start=result.root_open_start, + root_open_end=result.root_open_end, + root_self_closing=result.root_self_closing, + children=result.children, + entry_records=[_EntryRecord(entry, entry_digest(entry)) for entry in lexicon.entries], + header_digest=header_digest(lexicon.header) if header_spans else None, + producer=lexicon.producer, + root_extra_attrs=dict(lexicon.extra._attrs), + root_extra_snapshot=copy.deepcopy(lexicon.extra), + ) def parse_root(root: etree._Element, *, path: Path | None = None) -> Lexicon: diff --git a/src/sil_lift/_scan.py b/src/sil_lift/_scan.py new file mode 100644 index 0000000..1c0f9ad --- /dev/null +++ b/src/sil_lift/_scan.py @@ -0,0 +1,178 @@ +"""Byte-span scanner: locate the exact source bytes of each root child. + +The passthrough layer (decision A2) emits untouched entries verbatim from +their original bytes, which requires knowing each top-level ````'s +(and ``
``'s) exact byte span in the source. lxml exposes no byte +offsets, so this module walks the raw bytes with a small state machine that +understands tags, quoted attribute values, comments, CDATA sections, and PIs. + +It is deliberately conservative: anything unexpected (DOCTYPE, malformed +nesting, non-ASCII-compatible encoding — checked by the caller) returns +``None`` and the writer falls back to canonical serialization, which keeps +the semantic guarantee and waives only byte identity. +""" + +from __future__ import annotations + +from dataclasses import dataclass + +__all__ = ["ChildSpan", "ScanResult", "scan"] + + +@dataclass(slots=True) +class ChildSpan: + tag: str # "header", "entry", or any other root-child tag + start: int + end: int # exclusive + + +@dataclass(slots=True) +class ScanResult: + root_open_start: int + root_open_end: int # exclusive; end of the open tag + root_self_closing: bool + children: list[ChildSpan] # document order; empty for a self-closing root + + +def _skip_comment(data: bytes, i: int) -> int | None: + end = data.find(b"-->", i + 4) + return None if end < 0 else end + 3 + + +def _skip_pi(data: bytes, i: int) -> int | None: + end = data.find(b"?>", i + 2) + return None if end < 0 else end + 2 + + +def _skip_cdata(data: bytes, i: int) -> int | None: + end = data.find(b"]]>", i + 9) + return None if end < 0 else end + 3 + + +def _skip_tag(data: bytes, i: int) -> tuple[int, bool] | None: + """From ``<`` of a start/end tag to just past ``>``; reports self-closing.""" + n = len(data) + j = i + 1 + quote: int | None = None + while j < n: + c = data[j] + if quote is not None: + if c == quote: + quote = None + elif c in (0x22, 0x27): # " or ' + quote = c + elif c == 0x3E: # > + return j + 1, data[j - 1] == 0x2F # preceded by / + j += 1 + return None + + +def _tag_name(data: bytes, i: int) -> str: + j = i + 1 + n = len(data) + while j < n and data[j] not in b" \t\r\n/>": + j += 1 + return data[i + 1 : j].decode("utf-8", errors="replace") + + +def _skip_element(data: bytes, i: int) -> int | None: + """From ``<`` of a start tag to just past the matching end tag.""" + step = _skip_tag(data, i) + if step is None: + return None + pos, self_closing = step + if self_closing: + return pos + depth = 1 + n = len(data) + while depth > 0: + lt = data.find(b"<", pos) + if lt < 0: + return None + if data.startswith(b" + +one +payload + + +ONE + + + +
two
+
+
+""" + + +def test_out_of_schema_content_survives_touched_reserialization(tmp_path: Path) -> None: + source = tmp_path / "injected.lift" + source.write_bytes(INJECTED) + lexicon = sil_lift.load(source) + + # Unchanged save: byte-identical, trivially lossless. + out = tmp_path / "roundtrip.lift" + lexicon.save(out) + assert out.read_bytes() == INJECTED + + # Touch the entry carrying the residue: everything must survive canonically. + entry = lexicon.find(id="one") + assert entry is not None + entry.senses[0].glosses[0].text = sil_lift.Text(["ONE (edited)"]) + lexicon.save(out) + result = out.read_bytes() + assert b'x-flavor="strawberry"' in result + assert b"payload" in result + assert b"inner comment" in result + assert b'x-custom="root-extra"' in result + assert b"leading comment" in result + + reloaded = sil_lift.load(out) + reloaded_entry = reloaded.find(id="one") + assert reloaded_entry is not None + assert reloaded_entry.extra # unknown attr + element still carried + assert _semantic_bytes(result) != b"" # well-formed enough to canonicalize From f28e63f6f98b1a54ef8e9c94ea7baec07648225f Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 15 Jul 2026 13:44:54 -0400 Subject: [PATCH 06/42] Ranges + folder handling RangesFile with the same passthrough fidelity as .lift (per-range verbatim reuse); companion discovery (sibling + href-basename fallback for FLEx's dangling file://C:/ hrefs); save() writes companions together; all_ranges() merged view; media_refs()/missing_media() handling backslash hrefs with spaces (WeSay). Authored lift-ranges-0.13.rng from the vendored grammar's defines - validates the hand-crafted pair; FLEx files fail it (trait/field inside range-element, third documented FLEx deviation, carried in Extras). 200 tests green. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 7 + src/sil_lift/__init__.py | 14 +- src/sil_lift/_model.py | 190 +++++++++++++++++++++- src/sil_lift/_reader.py | 47 ++++++ src/sil_lift/_writer.py | 117 ++++++++++++- src/sil_lift/schemas/lift-ranges-0.13.rng | 170 +++++++++++++++++++ tests/corpus/PROVENANCE.md | 8 + tests/test_ranges_folder.py | 164 +++++++++++++++++++ tests/tools/build_ranges_schema.py | 83 ++++++++++ 9 files changed, 787 insertions(+), 13 deletions(-) create mode 100644 src/sil_lift/schemas/lift-ranges-0.13.rng create mode 100644 tests/test_ranges_folder.py create mode 100644 tests/tools/build_ranges_schema.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a6b2f9..544ead6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,3 +20,10 @@ During 0.x, minor releases may contain breaking changes. entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. +- M3: LIFT-folder handling — `RangesFile` (standalone `.lift-ranges` + documents, same fidelity guarantees), automatic companion + discovery/tracking on load (`Lexicon.ranges_files`), `save()` writes + companions together, `all_ranges()` merged view, `media_refs()` / + `missing_media()` helpers; authored `schemas/lift-ranges-0.13.rng` — the + first schema for standalone ranges documents (spec-faithful, built from + the vendored grammar's own defines). diff --git a/src/sil_lift/__init__.py b/src/sil_lift/__init__.py index 7a6610b..c4e2063 100644 --- a/src/sil_lift/__init__.py +++ b/src/sil_lift/__init__.py @@ -18,8 +18,10 @@ Field, GrammaticalInfo, Lexicon, + MediaRef, Note, Pronunciation, + RangesFile, Relation, Reversal, ReversalMain, @@ -49,11 +51,13 @@ "Lexicon", "LiftError", "LiftParseError", + "MediaRef", "Multitext", "Note", "Pronunciation", "Range", "RangeElement", + "RangesFile", "Relation", "Reversal", "ReversalMain", @@ -68,6 +72,10 @@ ] -def load(path: str | os.PathLike[str]) -> Lexicon: - """Parse a ``.lift`` file (LIFT 0.13 only) into a :class:`Lexicon`.""" - return Lexicon.load(path) +def load(path: str | os.PathLike[str], *, resolve_ranges: bool = True) -> Lexicon: + """Parse a ``.lift`` file (LIFT 0.13 only) into a :class:`Lexicon`. + + Companion ``.lift-ranges`` files are located and loaded too unless + ``resolve_ranges=False``; see :meth:`Lexicon.load`. + """ + return Lexicon.load(path, resolve_ranges=resolve_ranges) diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index d87269b..102d160 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -17,13 +17,15 @@ from typing import TYPE_CHECKING from ._extras import Extras -from ._header import Header +from ._header import Header, Range from ._text import Annotation, Form, Multitext, Text, Trait if TYPE_CHECKING: import os + from collections.abc import Iterator + from typing import Literal - from ._writer import _SourceInfo + from ._writer import _RangesSourceInfo, _SourceInfo __all__ = [ "Entry", @@ -32,8 +34,10 @@ "Field", "GrammaticalInfo", "Lexicon", + "MediaRef", "Note", "Pronunciation", + "RangesFile", "Relation", "Reversal", "ReversalMain", @@ -226,10 +230,78 @@ def gloss_langs(self) -> set[str]: return langs +@dataclass(slots=True) +class MediaRef: + """One media reference in the document, with its owner's identity.""" + + href: str + kind: Literal["media", "illustration"] + entry_id: str | None + entry_guid: str | None + sense_id: str | None = None # set for illustrations (they live on senses) + + +class RangesFile: + """A standalone ``.lift-ranges`` document (root ````).""" + + __slots__ = ("_source", "extra", "path", "ranges") + + def __init__( + self, + *, + ranges: list[Range] | None = None, + path: Path | None = None, + extra: Extras | None = None, + ) -> None: + self.ranges = ranges if ranges is not None else [] + self.path = path + self.extra = extra if extra is not None else Extras() + self._source: _RangesSourceInfo | None = None + + @classmethod + def load(cls, path: str | os.PathLike[str]) -> RangesFile: + from ._reader import parse_ranges_document + + return parse_ranges_document(Path(path)) + + def save(self, path: str | os.PathLike[str] | None = None) -> None: + """Write the ``.lift-ranges`` file (byte-identical when unchanged).""" + from ._writer import render_ranges_document + + target = Path(path) if path is not None else self.path + if target is None: + raise ValueError("no target path: pass save(path) or load the file from disk") + target.write_bytes(render_ranges_document(self)) + self.path = target + + def find(self, id: str) -> Range | None: + for range_ in self.ranges: + if range_.id == id: + return range_ + return None + + def __repr__(self) -> str: + source = f", path={str(self.path)!r}" if self.path else "" + return f"RangesFile({len(self.ranges)} ranges{source})" + + +def _normalize_href(href: str) -> Path | None: + """A relative filesystem path for an href, or None if it isn't one. + + Real-world hrefs use backslashes and literal spaces (WeSay) or dangling + absolute ``file://C:/...`` URIs from the exporting machine (FLEx) — for + the latter, only the basename is meaningful. + """ + if "://" in href or href.startswith(("http:", "https:", "file:")): + return None + path = Path(href.replace("\\", "/")) + return None if path.is_absolute() else path + + class Lexicon: - """The root handle: a parsed ``.lift`` document (and, from M3, its folder).""" + """The root handle: a parsed ``.lift`` document and its folder companions.""" - __slots__ = ("_source", "entries", "extra", "header", "path", "producer") + __slots__ = ("_source", "entries", "extra", "header", "path", "producer", "ranges_files") def __init__( self, @@ -245,29 +317,129 @@ def __init__( self.producer = producer self.path = path self.extra = extra if extra is not None else Extras() + self.ranges_files: dict[Path, RangesFile] = {} self._source: _SourceInfo | None = None # set by the reader (A2 passthrough) @classmethod - def load(cls, path: str | os.PathLike[str]) -> Lexicon: - """Parse a ``.lift`` file (LIFT 0.13 only) into a full object graph.""" + def load(cls, path: str | os.PathLike[str], *, resolve_ranges: bool = True) -> Lexicon: + """Parse a ``.lift`` file (LIFT 0.13 only) into a full object graph. + + With ``resolve_ranges`` (the default), companion ``.lift-ranges`` + files are loaded and tracked in :attr:`ranges_files`: any existing + file a header ``range/@href`` points at (falling back to the href's + basename next to the ``.lift`` file — FLEx hrefs are usually dangling + absolute paths from the exporting machine) plus the conventional + ``.lift-ranges`` sibling. + """ from ._reader import parse_document - return parse_document(Path(path)) + lexicon = parse_document(Path(path)) + if resolve_ranges: + lexicon._resolve_ranges() + return lexicon + + def _resolve_ranges(self) -> None: + if self.path is None: + return + base = self.path.parent + candidates: list[Path] = [] + sibling = self.path.with_suffix(self.path.suffix + "-ranges") + candidates.append(sibling) + for range_ in self.header.ranges: + if range_.href is None: + continue + relative = _normalize_href(range_.href) + if relative is not None: + candidates.append(base / relative) + basename = range_.href.replace("\\", "/").rpartition("/")[2] + if basename: + candidates.append(base / basename) + for candidate in candidates: + try: + resolved = candidate.resolve() + exists = candidate.is_file() + except OSError: + continue + if exists and resolved not in self.ranges_files: + self.ranges_files[resolved] = RangesFile.load(candidate) def save(self, path: str | os.PathLike[str] | None = None) -> None: - """Write the ``.lift`` file. + """Write the ``.lift`` file and every tracked ``.lift-ranges`` companion. Untouched entries are emitted byte-identical to the source; modified entries are re-serialized canonically with all residue preserved (A2). - With no ``path``, saves to where the lexicon was loaded from. + With no ``path``, saves to where the lexicon was loaded from. When + saving into a different directory, companions are written next to the + new ``.lift`` file under their original basenames. """ from ._writer import render_document target = Path(path) if path is not None else self.path if target is None: raise ValueError("no target path: pass save(path) or load the lexicon from a file") + original_dir = self.path.parent if self.path is not None else None target.write_bytes(render_document(self)) self.path = target + for ranges_file in self.ranges_files.values(): + if ranges_file.path is not None and target.parent != original_dir: + ranges_file.save(target.parent / ranges_file.path.name) + else: + ranges_file.save() + + def all_ranges(self) -> dict[str, Range]: + """Inline and external ranges, merged by id. + + An inline header range that enumerates its own elements wins; + otherwise the external definition (from any tracked ranges file) is + used. External ranges never referenced by the header are included too. + """ + merged: dict[str, Range] = {} + for ranges_file in self.ranges_files.values(): + for range_ in ranges_file.ranges: + merged.setdefault(range_.id, range_) + for range_ in self.header.ranges: + if range_.elements or range_.id not in merged: + merged[range_.id] = range_ + return merged + + def media_refs(self) -> Iterator[MediaRef]: + """Every ```` and ```` reference, with its owner.""" + for entry in self.entries: + pronunciations = list(entry.pronunciations) + for variant in entry.variants: + pronunciations.extend(variant.pronunciations) + for pronunciation in pronunciations: + for media in pronunciation.media: + yield MediaRef(media.href, "media", entry.id, entry.guid) + stack = list(entry.senses) + while stack: + sense = stack.pop() + for illustration in sense.illustrations: + yield MediaRef( + illustration.href, "illustration", entry.id, entry.guid, sense.id + ) + stack.extend(sense.subsenses) + + def missing_media(self) -> list[MediaRef]: + """Media references whose files don't exist in the LIFT folder layout. + + A relative href is checked as given (backslashes normalized) and under + the conventional subfolder (``audio/`` for media, ``pictures/`` for + illustrations). Remote/absolute hrefs can't be checked and are skipped. + """ + if self.path is None: + return [] + base = self.path.parent + subfolder = {"media": "audio", "illustration": "pictures"} + missing = [] + for ref in self.media_refs(): + relative = _normalize_href(ref.href) + if relative is None: + continue + candidates = [base / relative, base / subfolder[ref.kind] / relative] + if not any(candidate.is_file() for candidate in candidates): + missing.append(ref) + return missing def find(self, *, id: str | None = None, guid: str | None = None) -> Entry | None: """The first entry matching the given id and/or guid, or None.""" diff --git a/src/sil_lift/_reader.py b/src/sil_lift/_reader.py index 5372d24..1ce04b1 100644 --- a/src/sil_lift/_reader.py +++ b/src/sil_lift/_reader.py @@ -29,6 +29,7 @@ Lexicon, Note, Pronunciation, + RangesFile, Relation, Reversal, ReversalMain, @@ -61,6 +62,52 @@ def parse_document(path: Path) -> Lexicon: return lexicon +def parse_ranges_document(path: Path) -> RangesFile: + data = path.read_bytes() + try: + root = etree.fromstring(data, parser=_PARSER) + except etree.XMLSyntaxError as exc: + raise LiftParseError(f"{path}: not well-formed XML: {exc}") from exc + if root.tag != "lift-ranges": + raise LiftParseError(f"{path}: root element is <{root.tag}>, expected ") + ranges_file = RangesFile(path=path) + _split_attrs(root, (), ranges_file.extra) + _walk( + root, + ranges_file.extra, + {"range": lambda el: ranges_file.ranges.append(_parse_range(el))}, + ) + _attach_ranges_source(ranges_file, data, root) + return ranges_file + + +def _attach_ranges_source(ranges_file: RangesFile, data: bytes, root: etree._Element) -> None: + import copy + + from ._scan import scan + from ._writer import _RangeRecord, _RangesSourceInfo, range_digest + + encoding = root.getroottree().docinfo.encoding + if encoding is not None and encoding.lower() not in ("utf-8", "us-ascii", "ascii"): + return + result = scan(data) + if result is None: + return + range_spans = [span for span in result.children if span.tag == "range"] + if len(range_spans) != len(ranges_file.ranges): + return + ranges_file._source = _RangesSourceInfo( + data=data, + root_open_start=result.root_open_start, + root_open_end=result.root_open_end, + root_self_closing=result.root_self_closing, + children=result.children, + range_records=[_RangeRecord(range_, range_digest(range_)) for range_ in ranges_file.ranges], + root_extra_attrs=dict(ranges_file.extra._attrs), + root_extra_snapshot=copy.deepcopy(ranges_file.extra), + ) + + def _attach_source(lexicon: Lexicon, data: bytes, root: etree._Element) -> None: """Capture what the A2 passthrough needs; on any doubt, capture nothing. diff --git a/src/sil_lift/_writer.py b/src/sil_lift/_writer.py index ecc3fab..53cb254 100644 --- a/src/sil_lift/_writer.py +++ b/src/sil_lift/_writer.py @@ -36,6 +36,7 @@ Lexicon, Note, Pronunciation, + RangesFile, Relation, Reversal, ReversalMain, @@ -53,7 +54,15 @@ from ._extras import _ExtraNode from ._scan import ChildSpan -__all__ = ["canonical_document", "entry_digest", "header_digest", "render_document"] +__all__ = [ + "canonical_document", + "canonical_ranges_document", + "entry_digest", + "header_digest", + "range_digest", + "render_document", + "render_ranges_document", +] _FRAGMENT_PARSER = etree.XMLParser(resolve_entities=False, no_network=True) @@ -81,6 +90,24 @@ class _SourceInfo: root_extra_snapshot: Extras +@dataclass(slots=True) +class _RangeRecord: + range: Range + digest: bytes + + +@dataclass(slots=True) +class _RangesSourceInfo: + data: bytes + root_open_start: int + root_open_end: int + root_self_closing: bool + children: list[ChildSpan] + range_records: list[_RangeRecord] # parallel to the "range" spans in children + root_extra_attrs: dict[str, str] + root_extra_snapshot: Extras + + def entry_digest(entry: Entry) -> bytes: return hashlib.sha256(_node_bytes(_entry_el(entry))).digest() @@ -89,6 +116,10 @@ def header_digest(header: Header) -> bytes: return hashlib.sha256(_node_bytes(_header_el(header))).digest() +def range_digest(range_: Range) -> bytes: + return hashlib.sha256(_node_bytes(_range_el(range_))).digest() + + # --- canonical building blocks --------------------------------------------------- @@ -722,3 +753,87 @@ def render_document(lexicon: Lexicon) -> bytes: position = span.end parts.append(data[position:]) return b"".join(parts) + + +# --- .lift-ranges documents ---------------------------------------------------------- + + +def canonical_ranges_document( + ranges_file: RangesFile, + range_bytes: Callable[[Range], bytes] | None = None, +) -> bytes: + if range_bytes is None: + range_bytes = lambda r: _node_bytes(_range_el(r)) # noqa: E731 + chunks = [range_bytes(range_) for range_ in ranges_file.ranges] + for node in sorted(ranges_file.extra._nodes, key=lambda n: n.index): + if node.kind == "text": + continue + chunks.insert(min(node.index, len(chunks)), node.xml.encode("utf-8") + b"\n") + root = _element("lift-ranges", [], ranges_file.extra) + serialized = etree.tostring(root, encoding="unicode").encode("utf-8") + parts = [b'\n', serialized[:-2] + b">", b"\n"] + parts.extend(chunks) + parts.append(b"\n") + return b"".join(parts) + + +def _range_bytes_fn(source: _RangesSourceInfo) -> Callable[[Range], bytes]: + spans = [span for span in source.children if span.tag == "range"] + by_identity = { + id(record.range): (record, span) + for record, span in zip(source.range_records, spans, strict=True) + } + + def fn(range_: Range) -> bytes: + found = by_identity.get(id(range_)) + if found is not None: + record, span = found + if range_digest(range_) == record.digest: + return source.data[span.start : span.end] + return _node_bytes(_range_el(range_)) + + return fn + + +def render_ranges_document(ranges_file: RangesFile) -> bytes: + source = ranges_file._source + if source is None: + return canonical_ranges_document(ranges_file) + + range_fn = _range_bytes_fn(source) + root_unchanged = dict(ranges_file.extra._attrs) == source.root_extra_attrs + + if ranges_file.extra._nodes != source.root_extra_snapshot._nodes: + return canonical_ranges_document(ranges_file, range_fn) + if source.root_self_closing: + if not ranges_file.ranges and root_unchanged: + return source.data + return canonical_ranges_document(ranges_file, range_fn) + + aligned = len(ranges_file.ranges) == len(source.range_records) and all( + current is record.range + for current, record in zip(ranges_file.ranges, source.range_records, strict=True) + ) + if not aligned: + return canonical_ranges_document(ranges_file, range_fn) + + data = source.data + parts = [data[: source.root_open_start]] + if root_unchanged: + parts.append(data[source.root_open_start : source.root_open_end]) + else: + root = _element("lift-ranges", [], ranges_file.extra) + serialized = etree.tostring(root, encoding="unicode").encode("utf-8") + parts.append(serialized[:-2] + b">") + position = source.root_open_end + range_index = 0 + for span in source.children: + parts.append(data[position : span.start]) + if span.tag == "range": + parts.append(range_fn(ranges_file.ranges[range_index])) + range_index += 1 + else: + parts.append(data[span.start : span.end]) + position = span.end + parts.append(data[position:]) + return b"".join(parts) diff --git a/src/sil_lift/schemas/lift-ranges-0.13.rng b/src/sil_lift/schemas/lift-ranges-0.13.rng new file mode 100644 index 0000000..5bfb675 --- /dev/null +++ b/src/sil_lift/schemas/lift-ranges-0.13.rng @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Forms should be in different langs. + There is only one form with a given lang allowed in any parent element. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md index 36703ce..9218bc9 100644 --- a/tests/corpus/PROVENANCE.md +++ b/tests/corpus/PROVENANCE.md @@ -124,6 +124,14 @@ RNG-valid fixtures: the other 16 migrated spec examples, `ranges/test20080407.lift`, and `folder/Moma/Moma.lift` (WeSay writes relative hrefs, which pass). `tests/test_corpus.py` locks in both lists. +3. **`trait`/`field` inside `range-element`** (`.lift-ranges` files, validated + against the project-authored `lift-ranges-0.13.rng`): FLEx extends range + elements beyond the spec's description/label/abbrev content model (e.g. + morph-type traits). Affects `flex/AllFLExFields/AllFLExFields.lift-ranges` + and `large/sango/sango.lift-ranges`; the hand-crafted + `ranges/test20080407.lift-ranges` validates. Carried losslessly in + `Extras`; same M4 implication as the anyURI quirk. + ## generated/ — synthetic large files (not committed) Produced by `tests/tools/generate_large.py` for streaming/perf tests (M6); diff --git a/tests/test_ranges_folder.py b/tests/test_ranges_folder.py new file mode 100644 index 0000000..bb9a718 --- /dev/null +++ b/tests/test_ranges_folder.py @@ -0,0 +1,164 @@ +"""M3 acceptance: ranges pair round-trips byte-identically, edits save back to +the right file, merged range view, media helpers against a real folder.""" + +import shutil +from pathlib import Path + +import pytest +from lxml import etree + +import sil_lift +from sil_lift import LiftParseError, RangesFile, Text + +CORPUS_DIR = Path(__file__).parent / "corpus" +PAIR_DIR = CORPUS_DIR / "ranges" +SANGO_DIR = CORPUS_DIR / "large" / "sango" + + +def _copy_pair(src_dir: Path, stem: str, dst: Path) -> Path: + for suffix in (".lift", ".lift-ranges"): + shutil.copy(src_dir / f"{stem}{suffix}", dst / f"{stem}{suffix}") + return dst / f"{stem}.lift" + + +def test_sibling_ranges_file_is_discovered_and_tracked() -> None: + lexicon = sil_lift.load(PAIR_DIR / "test20080407.lift") + assert len(lexicon.ranges_files) == 1 + (ranges_file,) = lexicon.ranges_files.values() + assert ranges_file.path is not None + assert ranges_file.path.name == "test20080407.lift-ranges" + assert [r.id for r in ranges_file.ranges] == ["grammatical-info"] + assert [e.id for e in ranges_file.ranges[0].elements] == ["Adverb", "Noun", "Verb"] + + +def test_resolve_ranges_false_tracks_nothing() -> None: + lexicon = sil_lift.load(PAIR_DIR / "test20080407.lift", resolve_ranges=False) + assert lexicon.ranges_files == {} + + +def test_pair_roundtrips_byte_identically(tmp_path: Path) -> None: + lift_path = _copy_pair(PAIR_DIR, "test20080407", tmp_path) + lexicon = sil_lift.load(lift_path) + lexicon.save() + for suffix in (".lift", ".lift-ranges"): + name = f"test20080407{suffix}" + assert (tmp_path / name).read_bytes() == (PAIR_DIR / name).read_bytes(), name + + +def test_save_to_new_directory_carries_companions(tmp_path: Path) -> None: + lexicon = sil_lift.load(PAIR_DIR / "test20080407.lift") + target_dir = tmp_path / "elsewhere" + target_dir.mkdir() + lexicon.save(target_dir / "test20080407.lift") + assert (target_dir / "test20080407.lift").read_bytes() == ( + PAIR_DIR / "test20080407.lift" + ).read_bytes() + assert (target_dir / "test20080407.lift-ranges").read_bytes() == ( + PAIR_DIR / "test20080407.lift-ranges" + ).read_bytes() + + +def test_ranges_edit_saves_back_to_the_right_file(tmp_path: Path) -> None: + lift_path = _copy_pair(SANGO_DIR, "sango", tmp_path) + lexicon = sil_lift.load(lift_path) + (ranges_file,) = lexicon.ranges_files.values() + assert len(ranges_file.ranges) == 16 + + target = ranges_file.find("etymology") + assert target is not None + target.elements[0].label["en"] = Text(["borrowed (edited)"]) + lexicon.save() + + # The .lift itself is untouched -> byte-identical. + assert (tmp_path / "sango.lift").read_bytes() == (SANGO_DIR / "sango.lift").read_bytes() + # The ranges file changed, but every untouched range kept its exact bytes. + original = (SANGO_DIR / "sango.lift-ranges").read_bytes() + result = (tmp_path / "sango.lift-ranges").read_bytes() + assert result != original + from sil_lift._scan import scan + + spans = scan(original) + assert spans is not None + range_spans = [s for s in spans.children if s.tag == "range"] + assert len(range_spans) == 16 + for span in range_spans[1:]: # etymology is the first range in the file + assert original[span.start : span.end] in result + + reloaded = RangesFile.load(tmp_path / "sango.lift-ranges") + edited = reloaded.find("etymology") + assert edited is not None + assert str(edited.elements[0].label["en"]) == "borrowed (edited)" + + +def test_all_ranges_merges_inline_and_external() -> None: + lexicon = sil_lift.load(PAIR_DIR / "test20080407.lift") + merged = lexicon.all_ranges() + # External definition (only in the .lift-ranges file): + assert [e.id for e in merged["grammatical-info"].elements] == ["Adverb", "Noun", "Verb"] + # Inline definitions in the header keep winning: + inline_ids = {r.id for r in lexicon.header.ranges if r.elements} + for range_id in inline_ids: + assert merged[range_id] is next(r for r in lexicon.header.ranges if r.id == range_id) + + +def test_all_ranges_resolves_flex_href_basenames() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "flex" / "AllFLExFields" / "AllFLExFields.lift") + # Every header range is href-only (dangling file://C:/ URI); resolution + # falls back to the basename sibling. + assert len(lexicon.ranges_files) == 1 + merged = lexicon.all_ranges() + grammatical = merged["grammatical-info"] + assert grammatical.elements, "external definition should supply the elements" + assert any(e.id == "Noun" for e in grammatical.elements) + + +def test_flex_range_element_extensions_are_carried() -> None: + """FLEx writes trait/field inside range-element (out of schema, see PROVENANCE).""" + ranges_file = RangesFile.load(SANGO_DIR / "sango.lift-ranges") + with_residue = [ + element for range_ in ranges_file.ranges for element in range_.elements if element.extra + ] + assert with_residue, "expected FLEx trait/field extensions to land in Extras" + + +def test_ranges_file_version_guard() -> None: + with pytest.raises(LiftParseError, match="lift-ranges"): + RangesFile.load(PAIR_DIR / "test20080407.lift") # a .lift is not a ranges doc + + +def test_authored_ranges_schema_is_loadable_and_spec_faithful() -> None: + schema_path = Path(sil_lift.__file__).parent / "schemas" / "lift-ranges-0.13.rng" + schema = etree.RelaxNG(etree.parse(schema_path)) + assert schema.validate(etree.parse(PAIR_DIR / "test20080407.lift-ranges")) + # FLEx files carry out-of-schema extensions (documented in PROVENANCE.md). + assert not schema.validate(etree.parse(SANGO_DIR / "sango.lift-ranges")) + assert not schema.validate( + etree.parse(CORPUS_DIR / "flex" / "AllFLExFields" / "AllFLExFields.lift-ranges") + ) + + +def test_media_refs_and_missing_media_on_moma_folder() -> None: + lexicon = sil_lift.load(CORPUS_DIR / "folder" / "Moma" / "Moma.lift") + refs = list(lexicon.media_refs()) + assert {r.href for r in refs} == {"pictures\\cultural law.png", "pictures\\sdd.png"} + assert all(r.kind == "illustration" for r in refs) + assert all(r.entry_id for r in refs) + assert lexicon.missing_media() == [] + + +def test_missing_media_on_all_flex_fields() -> None: + # The corpus deliberately omits the upstream filler media (PROVENANCE.md), + # so these references must be reported missing. + lexicon = sil_lift.load(CORPUS_DIR / "flex" / "AllFLExFields" / "AllFLExFields.lift") + missing = {(r.kind, r.href) for r in lexicon.missing_media()} + assert ("media", "Kalimba.mp3") in missing + assert ("illustration", "Desert.jpg") in missing + + +def test_missing_media_flags_broken_ref(tmp_path: Path) -> None: + src = CORPUS_DIR / "folder" / "Moma" + shutil.copytree(src, tmp_path / "Moma") + lexicon = sil_lift.load(tmp_path / "Moma" / "Moma.lift") + (tmp_path / "Moma" / "pictures" / "sdd.png").unlink() + missing = lexicon.missing_media() + assert [r.href for r in missing] == ["pictures\\sdd.png"] diff --git a/tests/tools/build_ranges_schema.py b/tests/tools/build_ranges_schema.py new file mode 100644 index 0000000..f2ceb0e --- /dev/null +++ b/tests/tools/build_ranges_schema.py @@ -0,0 +1,83 @@ +"""Author schemas/lift-ranges-0.13.rng from the vendored lift-0.13.rng. + +No schema for standalone ``.lift-ranges`` documents exists anywhere (research +finding 05): the LIFT RNG defines ```` only inside ``
``. This +tool builds one by copying the relevant ```` blocks verbatim from the +vendored grammar and adding a ```` root, so the range content +model stays byte-faithful to the spec's. + +Usage: python tests/tools/build_ranges_schema.py +""" + +import re +import sys +from pathlib import Path + +SCHEMAS_DIR = Path(__file__).resolve().parents[2] / "src" / "sil_lift" / "schemas" +SOURCE = SCHEMAS_DIR / "lift-0.13.rng" +TARGET = SCHEMAS_DIR / "lift-ranges-0.13.rng" + +# range-content and everything it transitively references. +DEFINES = [ + "date.or.dateTime", + "span-content", + "inner-span-content", + "form-content", + "form-no-lang-content", + "multitext-content", + "annotation-content", + "range-content", + "range-element-content", +] + +HEADER = """\ + + +""" + + +def main() -> int: + source = SOURCE.read_text(encoding="utf-8") + grammar_match = re.match(r"(]*>)", source.lstrip()) + if grammar_match is None: + print("cannot find open tag in the vendored schema") + return 1 + blocks: list[str] = [] + for name in DEFINES: + pattern = rf']*>.*?' + match = re.search(pattern, source, re.S) + if match is None: + print(f"define {name!r} not found in the vendored schema") + return 1 + blocks.append(" " + match.group(0)) + start = ( + " \n" + ' \n' + " \n" + ' \n' + ' \n' + " \n" + " \n" + " \n" + " \n" + ) + body = "\n\n".join(blocks) + TARGET.write_text( + f"{HEADER}{grammar_match.group(1)}\n\n{start}\n{body}\n\n\n", + encoding="utf-8", + newline="\n", + ) + print(f"wrote {TARGET}") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) From dcb186233a407b4fa83acbc65e3d8d172c186e5a Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 15 Jul 2026 13:57:40 -0400 Subject: [PATCH 07/42] Validation module Problem stream with file/entry/line addressing; RNG layer with two deliberate deviations from raw libxml2 (documented in _validate.py): href masking (anyURI false-flags every FLEx file; sil-lift reports uri-not-rfc warnings instead) and tag-grouped validation (libxml2 rejects legal interleave once an element type appears in >1 run - minimal repro: 'f n f n' invalid, 'f f n n' valid). Ranges-schema layer over companions; semantic checks: duplicate-guid, dangling-ref (entry id/guid/sense id targets), range-parent integrity, undefined-range-value (NFC-normalized: FLEx writes .lift in NFC but .lift-ranges in NFD), duplicate-form-lang (the RNG's Schematron rule), missing-media. Finds real defects in the Sango export (2 dangling range parents, 1 undefined POS value). Fail-fast wrappers raise on first error. Co-Authored-By: Claude Fable 5 --- src/sil_lift/__init__.py | 7 +- src/sil_lift/_errors.py | 18 +- src/sil_lift/_model.py | 12 ++ src/sil_lift/_validate.py | 351 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 386 insertions(+), 2 deletions(-) create mode 100644 src/sil_lift/_validate.py diff --git a/src/sil_lift/__init__.py b/src/sil_lift/__init__.py index c4e2063..c3df01e 100644 --- a/src/sil_lift/__init__.py +++ b/src/sil_lift/__init__.py @@ -8,7 +8,7 @@ from typing import TYPE_CHECKING -from ._errors import LiftError, LiftParseError +from ._errors import LiftError, LiftParseError, LiftValidationError from ._extras import Extras from ._header import FieldDefinition, Header, Range, RangeElement from ._model import ( @@ -31,6 +31,7 @@ Variant, ) from ._text import Annotation, Form, Multitext, Span, Text, Trait +from ._validate import Problem, iter_problems, validate_file if TYPE_CHECKING: import os @@ -51,9 +52,11 @@ "Lexicon", "LiftError", "LiftParseError", + "LiftValidationError", "MediaRef", "Multitext", "Note", + "Problem", "Pronunciation", "Range", "RangeElement", @@ -68,7 +71,9 @@ "Translation", "URLRef", "Variant", + "iter_problems", "load", + "validate_file", ] diff --git a/src/sil_lift/_errors.py b/src/sil_lift/_errors.py index be59d5b..43571f0 100644 --- a/src/sil_lift/_errors.py +++ b/src/sil_lift/_errors.py @@ -1,6 +1,13 @@ """Exception hierarchy.""" -__all__ = ["LiftError", "LiftParseError"] +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from ._validate import Problem + +__all__ = ["LiftError", "LiftParseError", "LiftValidationError"] class LiftError(Exception): @@ -14,3 +21,12 @@ class LiftParseError(LiftError): than 0.13 (sil-lift does not migrate; see the lift-standard repo's XSLTs for one-off migration of legacy files). """ + + +class LiftValidationError(LiftError): + """Raised by the fail-fast validation wrappers on the first error-level + :class:`~sil_lift.Problem` (warnings never raise).""" + + def __init__(self, problem: Problem) -> None: + super().__init__(str(problem)) + self.problem = problem diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 102d160..be2f06e 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -25,6 +25,7 @@ from collections.abc import Iterator from typing import Literal + from ._validate import Problem from ._writer import _RangesSourceInfo, _SourceInfo __all__ = [ @@ -386,6 +387,17 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: else: ranges_file.save() + def iter_problems(self) -> Iterator[Problem]: + """Validate the in-memory state (schema layers + semantic checks). + + The schema layers need serialized bytes: an unedited loaded document + is validated from its source bytes; otherwise the in-memory state is + canonically serialized first (a documented cost on large lexicons). + """ + from ._validate import iter_lexicon_problems + + return iter_lexicon_problems(self) + def all_ranges(self) -> dict[str, Range]: """Inline and external ranges, merged by id. diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py new file mode 100644 index 0000000..53a71de --- /dev/null +++ b/src/sil_lift/_validate.py @@ -0,0 +1,351 @@ +"""Validation: schema layers + semantic checks -> a stream of Problems (A5). + +Three layers, all explicit-call (never implicit on load/save): + +1. RELAX NG against the vendored ``lift-0.13.rng`` — with two deliberate + deviations from raw libxml2 behavior: + + - ``href`` attributes are masked before validation. libxml2's ``anyURI`` + check rejects the ``file://C:/...`` URIs that FLEx systematically writes + (the C# validator's engine never enforced anyURI), which would flag + virtually every real lexicon. Instead, sil-lift runs its own URI + plausibility check and reports offenders as *warnings* (``uri-not-rfc``). + - children are grouped by tag before validation. libxml2's interleave + support rejects legally-interleaved documents once an element type + appears in more than one run (e.g. ``field, note, field, note`` inside a + sense — real FLEx output). Grouping same-tag siblings contiguously is + semantics-preserving here: every content model in the LIFT grammar is + interleave-based except the root's (header before entries), which is + left untouched. +2. The project-authored ``lift-ranges-0.13.rng`` over each tracked + ``.lift-ranges`` companion. +3. Semantic checks the grammar cannot express: duplicate entry GUIDs, + dangling ``relation/@ref`` and ``variant/@ref``, ``range-element/@parent`` + integrity, undefined range values (grammatical-info and range-keyed + traits), duplicate form languages (the RNG's Schematron rule, which lxml + ignores), and missing media files. +""" + +from __future__ import annotations + +import unicodedata +from dataclasses import dataclass +from pathlib import Path +from typing import TYPE_CHECKING, Literal + +from lxml import etree + +from ._errors import LiftValidationError +from ._model import Lexicon + +if TYPE_CHECKING: + import os + from collections.abc import Iterator + + from ._header import Range + from ._model import Entry, Sense + from ._text import Multitext + +__all__ = ["Problem", "iter_problems", "validate_file"] + +_SCHEMAS_DIR = Path(__file__).parent / "schemas" + + +@dataclass(slots=True) +class Problem: + """One validation finding, addressable to a file/entry/line.""" + + level: Literal["error", "warning"] + code: str # "schema", "duplicate-guid", "dangling-ref", "range-parent", + # "undefined-range-value", "duplicate-form-lang", "missing-media", "uri-not-rfc" + message: str + file: Path | None = None + entry_id: str | None = None + guid: str | None = None + line: int | None = None + + def __str__(self) -> str: + where = self.file.name if self.file else "" + if self.line is not None: + where += f":{self.line}" + entry = f" (entry {self.entry_id or self.guid})" if self.entry_id or self.guid else "" + return f"{self.level} [{self.code}] {where}{entry}: {self.message}" + + +def iter_problems(path: str | os.PathLike[str]) -> Iterator[Problem]: + """All problems in the document and its tracked companions, lazily.""" + return Lexicon.load(path).iter_problems() + + +def validate_file(path: str | os.PathLike[str]) -> None: + """Raise :class:`LiftValidationError` on the first error-level problem.""" + for problem in iter_problems(path): + if problem.level == "error": + raise LiftValidationError(problem) + + +def iter_lexicon_problems(lexicon: Lexicon) -> Iterator[Problem]: + from ._writer import canonical_document, canonical_ranges_document + + lift_schema = etree.RelaxNG(etree.parse(_SCHEMAS_DIR / "lift-0.13.rng")) + ranges_schema = etree.RelaxNG(etree.parse(_SCHEMAS_DIR / "lift-ranges-0.13.rng")) + + data = lexicon._source.data if lexicon._source else canonical_document(lexicon) + entry_lines, problems = _schema_problems(data, lift_schema, lexicon.path) + yield from problems + for ranges_file in lexicon.ranges_files.values(): + rdata = ( + ranges_file._source.data + if ranges_file._source + else canonical_ranges_document(ranges_file) + ) + _, range_problems = _schema_problems(rdata, ranges_schema, ranges_file.path) + yield from range_problems + yield from _semantic_problems(lexicon, entry_lines) + + +# --- schema layer ---------------------------------------------------------------- + + +def _suspicious_uri(value: str) -> str | None: + """Why a URI would fail RFC parsing, or None. Mirrors the real-world quirks.""" + if " " in value: + return "contains an unencoded space" + if "\\" in value: + return "contains backslashes (not a URI path separator)" + if value.startswith("file://") and not value.startswith("file:///"): + rest = value[len("file://") :] + if rest and rest[0].isalpha() and rest[1:2] == ":": + return "Windows drive letter used as URI authority (FLEx-style file://C:/)" + return None + + +def _line(el: etree._Element) -> int | None: + line = el.sourceline # lxml-stubs give this a non-int placeholder type + return line if isinstance(line, int) else None + + +def _group_children_by_tag(el: etree._Element, *, is_root: bool) -> None: + """Stable-sort same-tag siblings together (see module docstring, layer 1). + + The document root keeps its order (its content model is a sequence); + mixed content (````/````) is never touched. sourceline info + survives the moves, so line addressing stays intact. + """ + if not isinstance(el.tag, str) or el.tag in ("text", "span"): + return + if not is_root and len(el) > 1: + el[:] = sorted(el, key=lambda c: c.tag if isinstance(c.tag, str) else "￿") + for child in el: + _group_children_by_tag(child, is_root=False) + + +def _schema_problems( + data: bytes, schema: etree.RelaxNG, file: Path | None +) -> tuple[list[tuple[int | None, str | None, str | None]], list[Problem]]: + """Validate one document; returns (per-entry line/id/guid table, problems).""" + problems: list[Problem] = [] + root = etree.fromstring(data) + _group_children_by_tag(root, is_root=True) + entry_lines: list[tuple[int | None, str | None, str | None]] = [] + for child in root: + if isinstance(child.tag, str) and child.tag == "entry": + entry_lines.append((_line(child), child.get("id"), child.get("guid"))) + for el in root.iter(): + if not isinstance(el.tag, str): + continue + href = el.get("href") + if href is None: + continue + reason = _suspicious_uri(href) + if reason is not None: + problems.append( + Problem( + "warning", + "uri-not-rfc", + f"<{el.tag} href={href!r}>: {reason}", + file=file, + line=_line(el), + ) + ) + el.set("href", "masked:uri") # see module docstring: anyURI is ours to report + if not schema.validate(root.getroottree()): + for error in schema.error_log: + line = error.line if error.line and error.line > 0 else None + entry_id, guid = _nearest_entry(entry_lines, line) + problems.append( + Problem( + "error", + "schema", + error.message, + file=file, + entry_id=entry_id, + guid=guid, + line=line, + ) + ) + return entry_lines, problems + + +def _nearest_entry( + entry_lines: list[tuple[int | None, str | None, str | None]], line: int | None +) -> tuple[str | None, str | None]: + if line is None: + return None, None + best: tuple[str | None, str | None] = (None, None) + for entry_line, entry_id, guid in entry_lines: + if entry_line is None or entry_line > line: + break + best = (entry_id, guid) + return best + + +# --- semantic layer ---------------------------------------------------------------- + + +def _iter_senses(entry: Entry) -> Iterator[Sense]: + stack = list(entry.senses) + while stack: + sense = stack.pop() + yield sense + stack.extend(sense.subsenses) + + +def _semantic_problems( + lexicon: Lexicon, + entry_lines: list[tuple[int | None, str | None, str | None]], +) -> Iterator[Problem]: + file = lexicon.path + + def at(index: int) -> int | None: + return entry_lines[index][0] if index < len(entry_lines) else None + + # Duplicate GUIDs (C# Validator parity case). + seen_guids: dict[str, int] = {} + for index, entry in enumerate(lexicon.entries): + if entry.guid is None: + continue + if entry.guid in seen_guids: + yield Problem( + "error", + "duplicate-guid", + f"guid {entry.guid} already used by entry index {seen_guids[entry.guid]}", + file=file, + entry_id=entry.id, + guid=entry.guid, + line=at(index), + ) + else: + seen_guids[entry.guid] = index + + # Dangling refs: relation/@ref and variant/@ref may target an entry id, + # an entry guid, or a sense id (FLEx does all three). + targets: set[str] = set() + for entry in lexicon.entries: + targets.update(t for t in (entry.id, entry.guid) if t) + for sense in _iter_senses(entry): + if sense.id: + targets.add(sense.id) + for index, entry in enumerate(lexicon.entries): + refs: list[str] = [r.ref for r in entry.relations] + refs.extend(v.ref for v in entry.variants if v.ref) + for sense in _iter_senses(entry): + refs.extend(r.ref for r in sense.relations) + for ref in refs: + if ref and ref not in targets: + yield Problem( + "error", + "dangling-ref", + f"ref {ref!r} matches no entry id/guid or sense id", + file=file, + entry_id=entry.id, + guid=entry.guid, + line=at(index), + ) + + # Duplicate form languages (the RNG's Schematron rule; lxml ignores it). + for index, entry in enumerate(lexicon.entries): + multitexts: list[tuple[str, Multitext]] = [ + ("lexical-unit", entry.lexical_unit), + ("citation", entry.citation), + ] + for sense in _iter_senses(entry): + multitexts.append(("definition", sense.definition)) + for label, multitext in multitexts: + langs = [f.lang for f in multitext.forms if f.lang is not None] + for lang in sorted({lang for lang in langs if langs.count(lang) > 1}): + yield Problem( + "warning", + "duplicate-form-lang", + f"{label} has more than one form with lang {lang!r}", + file=file, + entry_id=entry.id, + guid=entry.guid, + line=at(index), + ) + + # Range integrity over the merged view (inline + companions). + all_ranges = lexicon.all_ranges() + for range_ in all_ranges.values(): + element_ids = {element.id for element in range_.elements} + for element in range_.elements: + if element.parent and element.parent not in element_ids: + yield Problem( + "error", + "range-parent", + f"range {range_.id!r}: range-element {element.id!r} has " + f"parent {element.parent!r} which is not a sibling id", + file=file, + ) + + # Undefined range values: grammatical-info against the grammatical-info + # range; traits whose name matches a known range. Only ranges that + # actually enumerate elements can vouch for values; empty values skipped + # (FLEx writes them). Comparison is NFC-normalized: FLEx writes the .lift + # in NFC but the companion .lift-ranges in NFD within the same export. + def nfc(value: str) -> str: + return unicodedata.normalize("NFC", value) + + def defined(range_id: str) -> set[str] | None: + range_: Range | None = all_ranges.get(range_id) + if range_ is None or not range_.elements: + return None + return {nfc(element.id) for element in range_.elements} + + grammatical_values = defined("grammatical-info") + for index, entry in enumerate(lexicon.entries): + checks: list[tuple[str, str, set[str]]] = [] # (label, value, allowed) + for sense in _iter_senses(entry): + info = sense.grammatical_info + if info is not None and info.value and grammatical_values is not None: + checks.append(("grammatical-info", info.value, grammatical_values)) + for trait in sense.traits: + allowed = defined(trait.name) + if allowed is not None and trait.value: + checks.append((f"trait {trait.name!r}", trait.value, allowed)) + for trait in entry.traits: + allowed = defined(trait.name) + if allowed is not None and trait.value: + checks.append((f"trait {trait.name!r}", trait.value, allowed)) + for label, value, allowed in checks: + if nfc(value) not in allowed: + yield Problem( + "warning", + "undefined-range-value", + f"{label} value {value!r} is not defined in the range", + file=file, + entry_id=entry.id, + guid=entry.guid, + line=at(index), + ) + + # Missing media files. + for media_ref in lexicon.missing_media(): + yield Problem( + "warning", + "missing-media", + f"{media_ref.kind} file not found: {media_ref.href!r}", + file=file, + entry_id=media_ref.entry_id, + guid=media_ref.entry_guid, + ) From c8521b136afb1ed63f4b5deea4de609a9c4cb14b Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 15 Jul 2026 20:41:26 -0400 Subject: [PATCH 08/42] Negative-test corpus + validator test suite Eight hand-authored fixtures, each documenting its defect and expected Problem; tests verify addressing (entry id/guid/line), warning-vs-error levels, fail-fast behavior, clean-corpus cleanliness, C# parity case (duplicate-guid), and the real Sango defects (2 dangling range parents, 1 undefined POS). 263 tests green. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 8 + tests/corpus/PROVENANCE.md | 15 +- tests/corpus/negative/dangling-ref.lift | 20 +++ .../corpus/negative/duplicate-form-lang.lift | 12 ++ tests/corpus/negative/duplicate-guid.lift | 11 ++ tests/corpus/negative/flex-quirks.lift | 14 ++ .../negative/missing-media/missing-media.lift | 15 ++ tests/corpus/negative/range-parent.lift | 17 ++ tests/corpus/negative/schema-invalid.lift | 10 ++ .../negative/undefined-range-value.lift | 31 ++++ tests/test_corpus.py | 5 +- tests/test_validate.py | 165 ++++++++++++++++++ 12 files changed, 318 insertions(+), 5 deletions(-) create mode 100644 tests/corpus/negative/dangling-ref.lift create mode 100644 tests/corpus/negative/duplicate-form-lang.lift create mode 100644 tests/corpus/negative/duplicate-guid.lift create mode 100644 tests/corpus/negative/flex-quirks.lift create mode 100644 tests/corpus/negative/missing-media/missing-media.lift create mode 100644 tests/corpus/negative/range-parent.lift create mode 100644 tests/corpus/negative/schema-invalid.lift create mode 100644 tests/corpus/negative/undefined-range-value.lift create mode 100644 tests/test_validate.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 544ead6..d59148c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,14 @@ During 0.x, minor releases may contain breaking changes. entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. +- M4: validation — `validate_file()` / `iter_problems()` / + `Lexicon.iter_problems()` returning an addressable `Problem` stream + (file/entry/line). RELAX NG layer with two documented deviations from raw + libxml2 (href masking with `uri-not-rfc` warnings; tag-grouped validation + to sidestep libxml2's interleave limitation); authored ranges schema over + companions; semantic checks: duplicate-guid, dangling-ref, range-parent, + undefined-range-value (NFC-normalized), duplicate-form-lang, + missing-media. Hand-authored negative corpus under `tests/corpus/negative/`. - M3: LIFT-folder handling — `RangesFile` (standalone `.lift-ranges` documents, same fidelity guarantees), automatic companion discovery/tracking on load (`Lexicon.ranges_files`), `save()` writes diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md index 9218bc9..e0fa761 100644 --- a/tests/corpus/PROVENANCE.md +++ b/tests/corpus/PROVENANCE.md @@ -137,7 +137,14 @@ hrefs, which pass). `tests/test_corpus.py` locks in both lists. Produced by `tests/tools/generate_large.py` for streaming/perf tests (M6); git-ignored, regenerated on demand. -## negative/ — invalid fixtures (milestone M4) - -Hand-authored schema-invalid / semantically-broken files; authored with the -validator (§C.7), each documenting the defect it carries. +## negative/ — invalid fixtures (hand-authored, milestone M4) + +Each file carries an XML comment documenting its defect and the expected +Problem code: `duplicate-guid`, `dangling-ref`, `range-parent`, +`undefined-range-value` (2 warnings + a clean control entry), +`duplicate-form-lang` (the Schematron-only rule), `schema-invalid` +(structural), `missing-media/` (a folder fixture), and `flex-quirks` +(URI quirks that must yield warnings, never schema errors). +`schema-invalid.lift` and `flex-quirks.lift` are raw-RNG-invalid (the +latter only under libxml2's anyURI check) and appear in the corpus test's +expected-invalid list. diff --git a/tests/corpus/negative/dangling-ref.lift b/tests/corpus/negative/dangling-ref.lift new file mode 100644 index 0000000..e4404c0 --- /dev/null +++ b/tests/corpus/negative/dangling-ref.lift @@ -0,0 +1,20 @@ + + + + +
one
+ + +first + +
+ +
two
+ + + + +
+
diff --git a/tests/corpus/negative/duplicate-form-lang.lift b/tests/corpus/negative/duplicate-form-lang.lift new file mode 100644 index 0000000..0a30d22 --- /dev/null +++ b/tests/corpus/negative/duplicate-form-lang.lift @@ -0,0 +1,12 @@ + + + + + +
colour
+
color
+
+
+
diff --git a/tests/corpus/negative/duplicate-guid.lift b/tests/corpus/negative/duplicate-guid.lift new file mode 100644 index 0000000..ffd1805 --- /dev/null +++ b/tests/corpus/negative/duplicate-guid.lift @@ -0,0 +1,11 @@ + + + + +
one
+
+ +
two
+
+
diff --git a/tests/corpus/negative/flex-quirks.lift b/tests/corpus/negative/flex-quirks.lift new file mode 100644 index 0000000..1141ac9 --- /dev/null +++ b/tests/corpus/negative/flex-quirks.lift @@ -0,0 +1,14 @@ + + + +
+ + + +
+ +
one
+
+
diff --git a/tests/corpus/negative/missing-media/missing-media.lift b/tests/corpus/negative/missing-media/missing-media.lift new file mode 100644 index 0000000..e65de59 --- /dev/null +++ b/tests/corpus/negative/missing-media/missing-media.lift @@ -0,0 +1,15 @@ + + + + +
one
+ +
wan
+ +
+ + + +
+
diff --git a/tests/corpus/negative/range-parent.lift b/tests/corpus/negative/range-parent.lift new file mode 100644 index 0000000..a8d92f8 --- /dev/null +++ b/tests/corpus/negative/range-parent.lift @@ -0,0 +1,17 @@ + + + +
+ + + + + + +
+ +
one
+
+
diff --git a/tests/corpus/negative/schema-invalid.lift b/tests/corpus/negative/schema-invalid.lift new file mode 100644 index 0000000..46a637d --- /dev/null +++ b/tests/corpus/negative/schema-invalid.lift @@ -0,0 +1,10 @@ + + + + +
x
+ +
+
diff --git a/tests/corpus/negative/undefined-range-value.lift b/tests/corpus/negative/undefined-range-value.lift new file mode 100644 index 0000000..9709fd0 --- /dev/null +++ b/tests/corpus/negative/undefined-range-value.lift @@ -0,0 +1,31 @@ + + + +
+ + + + + + + + +
+ +
one
+ + + + +
+ +
two
+ + + + +
+
diff --git a/tests/test_corpus.py b/tests/test_corpus.py index 66598f5..0f65e51 100644 --- a/tests/test_corpus.py +++ b/tests/test_corpus.py @@ -19,7 +19,8 @@ p for p in CORPUS_DIR.rglob("*") if p.suffix in {".lift", ".lift-ranges"} and p.is_file() ) -# Documented in PROVENANCE.md: lang-less etymology forms / file://C:/ range hrefs. +# Documented in PROVENANCE.md: lang-less etymology forms / file://C:/ range +# hrefs / hand-authored negative fixtures (raw libxml2 validation, no masking). EXPECTED_INVALID = { "spec-examples/0.13/dialects.lift", "spec-examples/0.13/fields any order.lift", @@ -27,6 +28,8 @@ "misc/sample.0.13.lift", "flex/AllFLExFields/AllFLExFields.lift", "large/sango/sango.lift", + "negative/schema-invalid.lift", + "negative/flex-quirks.lift", } VALIDATABLE = [ diff --git a/tests/test_validate.py b/tests/test_validate.py new file mode 100644 index 0000000..c2cb273 --- /dev/null +++ b/tests/test_validate.py @@ -0,0 +1,165 @@ +"""M4 acceptance: every negative fixture caught with correct addressing; +clean corpus validates; C# Validator parity on shared cases (duplicate-guid).""" + +from pathlib import Path + +import pytest + +import sil_lift +from sil_lift import LiftValidationError, Problem + +CORPUS_DIR = Path(__file__).parent / "corpus" +NEGATIVE_DIR = CORPUS_DIR / "negative" + + +def problems_for(path: Path) -> list[Problem]: + return list(sil_lift.iter_problems(path)) + + +def codes(problems: list[Problem]) -> set[tuple[str, str]]: + return {(p.level, p.code) for p in problems} + + +def test_duplicate_guid_is_error_with_addressing() -> None: + problems = problems_for(NEGATIVE_DIR / "duplicate-guid.lift") + (problem,) = problems + assert (problem.level, problem.code) == ("error", "duplicate-guid") + assert problem.entry_id == "two" + assert problem.guid == "11111111-1111-1111-1111-111111111111" + assert problem.line is not None and problem.line > 1 + + +def test_dangling_ref_only_flags_the_broken_one() -> None: + problems = problems_for(NEGATIVE_DIR / "dangling-ref.lift") + (problem,) = problems + assert (problem.level, problem.code) == ("error", "dangling-ref") + assert problem.entry_id == "one" + assert "no-such-target" in problem.message + + +def test_range_parent_integrity() -> None: + problems = problems_for(NEGATIVE_DIR / "range-parent.lift") + (problem,) = problems + assert (problem.level, problem.code) == ("error", "range-parent") + assert "Nooun" in problem.message + + +def test_undefined_range_values_are_warnings() -> None: + problems = problems_for(NEGATIVE_DIR / "undefined-range-value.lift") + assert codes(problems) == {("warning", "undefined-range-value")} + assert len(problems) == 2 + assert all(p.entry_id == "one" for p in problems) + messages = " | ".join(p.message for p in problems) + assert "Klingon" in messages and "south" in messages + + +def test_duplicate_form_lang_is_schematron_only_warning() -> None: + problems = problems_for(NEGATIVE_DIR / "duplicate-form-lang.lift") + (problem,) = problems + assert (problem.level, problem.code) == ("warning", "duplicate-form-lang") + assert problem.entry_id == "one" + + +def test_schema_violation_is_error_addressed_to_entry() -> None: + problems = problems_for(NEGATIVE_DIR / "schema-invalid.lift") + schema_errors = [p for p in problems if p.code == "schema"] + assert schema_errors + assert all(p.level == "error" for p in schema_errors) + assert any(p.entry_id == "broken" for p in schema_errors) + assert any(p.line is not None for p in schema_errors) + + +def test_missing_media_folder_fixture() -> None: + problems = problems_for(NEGATIVE_DIR / "missing-media" / "missing-media.lift") + assert codes(problems) == {("warning", "missing-media")} + hrefs = {p.message for p in problems} + assert any("none.wav" in m for m in hrefs) + assert any("gone.png" in m for m in hrefs) + + +def test_flex_uri_quirks_warn_but_never_error() -> None: + problems = problems_for(NEGATIVE_DIR / "flex-quirks.lift") + assert problems, "the quirky URIs must be reported" + assert codes(problems) == {("warning", "uri-not-rfc")} + + +def test_validate_file_raises_on_first_error() -> None: + with pytest.raises(LiftValidationError) as info: + sil_lift.validate_file(NEGATIVE_DIR / "duplicate-guid.lift") + assert info.value.problem.code == "duplicate-guid" + + +def test_validate_file_passes_on_warning_only_files() -> None: + sil_lift.validate_file(NEGATIVE_DIR / "flex-quirks.lift") + sil_lift.validate_file(NEGATIVE_DIR / "duplicate-form-lang.lift") + + +CLEAN = [ + "spec-examples/0.13/full-entry.lift", + "spec-examples/0.13/subsenses.lift", + "spec-examples/0.13/reversals-hierarchy.lift", + "spec-examples/0.13/simple.lift", + "spec-examples/0.13/header.lift", # its file://C:/ hrefs become warnings + "ranges/test20080407.lift", + "folder/Moma/Moma.lift", + "misc/sample.0.13.lift", +] + + +@pytest.mark.parametrize("name", CLEAN) +def test_clean_corpus_has_no_errors(name: str) -> None: + problems = problems_for(CORPUS_DIR / name) + errors = [p for p in problems if p.level == "error"] + assert errors == [] + + +def test_test20080407_pair_is_fully_clean() -> None: + assert problems_for(CORPUS_DIR / "ranges" / "test20080407.lift") == [] + + +def test_flex_lift_is_schema_clean_but_companion_is_not() -> None: + problems = problems_for(CORPUS_DIR / "flex" / "AllFLExFields" / "AllFLExFields.lift") + lift_errors = [ + p for p in problems if p.level == "error" and p.file and p.file.suffix == ".lift" + ] + ranges_errors = [ + p for p in problems if p.level == "error" and p.file and p.file.suffix == ".lift-ranges" + ] + assert lift_errors == [] # href-masking + tag-grouping make the .lift clean + assert ranges_errors, "FLEx trait/field in range-element (see PROVENANCE.md)" + assert {p.code for p in ranges_errors} == {"schema"} + + +def test_sango_real_defects_are_found() -> None: + problems = problems_for(CORPUS_DIR / "large" / "sango" / "sango.lift") + by_code: dict[str, int] = {} + for problem in problems: + by_code[problem.code] = by_code.get(problem.code, 0) + 1 + # Two genuinely dangling range-element parents + one undefined POS value + # ('prenom') in the real export; NFC-normalization keeps the count at 1. + assert by_code.get("range-parent") == 2 + assert by_code.get("undefined-range-value") == 1 + assert by_code.get("schema", 0) > 0 # companion's trait/field extensions + assert all( + p.file is not None and p.file.suffix == ".lift-ranges" + for p in problems + if p.code == "schema" + ) + + +def test_in_memory_lexicon_validation() -> None: + lexicon = sil_lift.Lexicon() + for entry_id in ("a", "b"): + entry = sil_lift.Entry(id=entry_id, guid="33333333-3333-3333-3333-333333333333") + entry.lexical_unit["en"] = entry_id + lexicon.entries.append(entry) + problems = list(lexicon.iter_problems()) + assert ("error", "duplicate-guid") in codes(problems) + + +def test_problem_str_format() -> None: + problems = problems_for(NEGATIVE_DIR / "duplicate-guid.lift") + text = str(problems[0]) + assert "error [duplicate-guid]" in text + assert "duplicate-guid.lift:" in text + assert "entry two" in text From eb07a33f5ba967b59ee6c96547430a700cbfe3f8 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 15 Jul 2026 20:48:17 -0400 Subject: [PATCH 09/42] Canonical sort Native implementation mirroring C# LiftSorter's rules (consulted at libpalaso 4840de8): entries by case-insensitive guid (extended to (guid,id) casefold so guidless entries sort deterministically), header ranges/ range-elements by id, field definitions by tag, senses in file order, text/span whitespace untouched. Lexicon.sort()/RangesFile.sort() in-place; canonicalize(src, dst) for diff-ready fully-canonical output. Acceptance: idempotent, byte-deterministic, sorted output RNG-valid + semantically equal, sort+save keeps untouched entry bytes verbatim. 275 tests green. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 6 ++ src/sil_lift/__init__.py | 2 + src/sil_lift/_canonical.py | 79 +++++++++++++++++ src/sil_lift/_model.py | 19 +++++ tests/test_canonical.py | 171 +++++++++++++++++++++++++++++++++++++ 5 files changed, 277 insertions(+) create mode 100644 src/sil_lift/_canonical.py create mode 100644 tests/test_canonical.py diff --git a/CHANGELOG.md b/CHANGELOG.md index d59148c..398cbd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,12 @@ During 0.x, minor releases may contain breaking changes. entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. +- M5: canonical sort — `Lexicon.sort()` / `RangesFile.sort()` (entries by + case-folded guid/id, ranges/range-elements by id, field definitions by + tag; LiftSorter-informed, locale-independent) and `sil_lift.canonicalize()` + for fully re-serialized diff-ready output. Sorting composes with the + passthrough: sort + save moves untouched entries' bytes without rewriting + them. Text whitespace is never normalized (unlike `canonicalizeLift.xsl`). - M4: validation — `validate_file()` / `iter_problems()` / `Lexicon.iter_problems()` returning an addressable `Problem` stream (file/entry/line). RELAX NG layer with two documented deviations from raw diff --git a/src/sil_lift/__init__.py b/src/sil_lift/__init__.py index c3df01e..0ee4288 100644 --- a/src/sil_lift/__init__.py +++ b/src/sil_lift/__init__.py @@ -8,6 +8,7 @@ from typing import TYPE_CHECKING +from ._canonical import canonicalize from ._errors import LiftError, LiftParseError, LiftValidationError from ._extras import Extras from ._header import FieldDefinition, Header, Range, RangeElement @@ -71,6 +72,7 @@ "Translation", "URLRef", "Variant", + "canonicalize", "iter_problems", "load", "validate_file", diff --git a/src/sil_lift/_canonical.py b/src/sil_lift/_canonical.py new file mode 100644 index 0000000..1590f16 --- /dev/null +++ b/src/sil_lift/_canonical.py @@ -0,0 +1,79 @@ +"""Canonical sort (decision A6): a native implementation, LiftSorter-informed. + +The C# oracle (libpalaso ``SIL.Lift/LiftSorter.cs`` @ 4840de8) sorts entries +by case-insensitive guid, orders header children description → ranges → +fields, sorts ranges/range-elements by id and header field definitions by +tag, keeps senses in file order, and never re-indents ``text``/``span``. +sil-lift mirrors those rules with two deliberate strengthenings and one +narrowing: + +- entries sort by (guid, id), both case-folded — files whose entries lack + guids still sort deterministically (LiftSorter assumes a guid); +- output is byte-deterministic across runs and platforms (no locale-dependent + collation: plain casefolded-codepoint ordering); +- within-type sibling lists other than the above (notes, relations, forms, + ...) keep their document order — the canonical writer already groups them + by type deterministically, and reordering them adds diff noise without + determinism gains. + +The reference ``canonicalizeLift.xsl`` is deliberately NOT used: it +whitespace-normalizes all text nodes (destructive to lexical data) and its +generated ids are session-specific (research finding, decision A6). +""" + +from __future__ import annotations + +from pathlib import Path +from typing import TYPE_CHECKING + +from ._model import Lexicon + +if TYPE_CHECKING: + import os + + from ._header import Header, Range + from ._model import Entry, RangesFile + +__all__ = ["canonicalize"] + + +def entry_sort_key(entry: Entry) -> tuple[str, str]: + return ((entry.guid or "").casefold(), (entry.id or "").casefold()) + + +def _sort_range(range_: Range) -> None: + range_.elements.sort(key=lambda element: element.id.casefold()) + + +def sort_header(header: Header) -> None: + header.ranges.sort(key=lambda range_: range_.id.casefold()) + for range_ in header.ranges: + _sort_range(range_) + header.fields.sort(key=lambda definition: definition.tag.casefold()) + + +def sort_lexicon(lexicon: Lexicon) -> None: + lexicon.entries.sort(key=entry_sort_key) + sort_header(lexicon.header) + + +def sort_ranges_file(ranges_file: RangesFile) -> None: + ranges_file.ranges.sort(key=lambda range_: range_.id.casefold()) + for range_ in ranges_file.ranges: + _sort_range(range_) + + +def canonicalize(src: str | os.PathLike[str], dst: str | os.PathLike[str]) -> None: + """Write a fully canonical copy of a ``.lift`` file: sorted entries and + ranges, documented child grouping and attribute order, 2-space layout. + + Unlike :meth:`Lexicon.save`, the output is *entirely* re-serialized (no + byte passthrough) — that is the point: two canonicalized files diff + cleanly. Text content is never whitespace-normalized. The whole document + is held in memory (sorting requires it; the C# oracle buffers too). + """ + from ._writer import canonical_document + + lexicon = Lexicon.load(src, resolve_ranges=False) + sort_lexicon(lexicon) + Path(dst).write_bytes(canonical_document(lexicon)) diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index be2f06e..711d23b 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -281,6 +281,12 @@ def find(self, id: str) -> Range | None: return range_ return None + def sort(self) -> None: + """Sort ranges and their elements into canonical (id) order.""" + from ._canonical import sort_ranges_file + + sort_ranges_file(self) + def __repr__(self) -> str: source = f", path={str(self.path)!r}" if self.path else "" return f"RangesFile({len(self.ranges)} ranges{source})" @@ -387,6 +393,19 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: else: ranges_file.save() + def sort(self) -> None: + """Sort into canonical order, in place: entries by (guid, id), header + ranges/range-elements by id, field definitions by tag (decision A6). + + Sorting alone does not mark entries as modified — a subsequent + :meth:`save` still emits untouched entries byte-identically, just in + the new order. For fully re-serialized diff-ready output use + :func:`sil_lift.canonicalize`. + """ + from ._canonical import sort_lexicon + + sort_lexicon(self) + def iter_problems(self) -> Iterator[Problem]: """Validate the in-memory state (schema layers + semantic checks). diff --git a/tests/test_canonical.py b/tests/test_canonical.py new file mode 100644 index 0000000..903fa78 --- /dev/null +++ b/tests/test_canonical.py @@ -0,0 +1,171 @@ +"""M5 acceptance: idempotent, deterministic, LiftSorter-rule-faithful sort; +canonicalized output stays RNG-valid and semantically equal to its input.""" + +from pathlib import Path + +import pytest +from lxml import etree + +import sil_lift +from sil_lift import canonicalize +from test_writer import _semantic_bytes + +CORPUS_DIR = Path(__file__).parent / "corpus" + +# header.lift is excluded: raw-RNG-invalid per PROVENANCE.md (file://C:/ hrefs). +RNG_VALID = [ + "spec-examples/0.13/full-entry.lift", + "spec-examples/0.13/subsenses.lift", + "spec-examples/0.13/reversals.lift", + "spec-examples/0.13/hugal-mdf.lift", + "ranges/test20080407.lift", + "folder/Moma/Moma.lift", +] + +UNSORTED = b""" + +
+ +
z
+
a
+
+ + + + +
+ +
mid
+
+ +
last
+
+ +
first
+
+ +
guidless
+
+
+""" + + +def test_sort_mirrors_liftsorter_rules(tmp_path: Path) -> None: + source = tmp_path / "unsorted.lift" + source.write_bytes(UNSORTED) + lexicon = sil_lift.load(source) + lexicon.sort() + # Entries by casefolded guid (guidless first: empty key), LiftSorter-style. + assert [e.id for e in lexicon.entries] == ["no-guid", "first", "mid", "last"] + # Header ranges by casefolded id; range-elements by casefolded id. + assert [r.id for r in lexicon.header.ranges] == ["Alpha", "zoo"] + assert [e.id for e in lexicon.header.ranges[1].elements] == ["A", "b"] + # Header field definitions by tag. + assert [f.tag for f in lexicon.header.fields] == ["alpha", "zeta"] + + +def test_sort_is_idempotent(tmp_path: Path) -> None: + source = tmp_path / "unsorted.lift" + source.write_bytes(UNSORTED) + lexicon = sil_lift.load(source) + lexicon.sort() + once = [e.id for e in lexicon.entries] + lexicon.sort() + assert [e.id for e in lexicon.entries] == once + + +def test_sort_then_save_keeps_untouched_entries_verbatim(tmp_path: Path) -> None: + source = tmp_path / "unsorted.lift" + source.write_bytes(UNSORTED) + lexicon = sil_lift.load(source) + lexicon.sort() + out = tmp_path / "sorted.lift" + lexicon.save(out) + result = out.read_bytes() + + from sil_lift._scan import scan + + spans = scan(UNSORTED) + assert spans is not None + for span in (s for s in spans.children if s.tag == "entry"): + assert UNSORTED[span.start : span.end] in result # bytes moved, not rewritten + reloaded = sil_lift.load(out) + assert [e.id for e in reloaded.entries] == ["no-guid", "first", "mid", "last"] + + +def test_canonicalize_is_deterministic_and_idempotent(tmp_path: Path) -> None: + source = tmp_path / "unsorted.lift" + source.write_bytes(UNSORTED) + first = tmp_path / "c1.lift" + second = tmp_path / "c2.lift" + canonicalize(source, first) + canonicalize(source, second) + assert first.read_bytes() == second.read_bytes() # deterministic across runs + third = tmp_path / "c3.lift" + canonicalize(first, third) + assert third.read_bytes() == first.read_bytes() # sort . sort = sort + + +def _entries_sorted(data: bytes) -> bytes: + """Comparer aid: normalize exactly the orderings canonicalize changes — + entries by (guid, id), ranges/range-elements by id, field defs by tag + (all unordered/id-keyed collections per the LIFT spec).""" + root = etree.fromstring(data) + entries = [e for e in root if isinstance(e.tag, str) and e.tag == "entry"] + for entry in entries: + root.remove(entry) + for entry in sorted( + entries, key=lambda e: ((e.get("guid") or "").casefold(), (e.get("id") or "").casefold()) + ): + root.append(entry) + for parent_tag, child_tag, key in [ + ("ranges", "range", "id"), + ("range", "range-element", "id"), + ("fields", "field", "tag"), + ]: + for parent in list(root.iter(parent_tag)): + children = [c for c in parent if isinstance(c.tag, str) and c.tag == child_tag] + for child in children: + parent.remove(child) + for child in sorted(children, key=lambda c: (c.get(key) or "").casefold()): + parent.append(child) + return etree.tostring(root) + + +@pytest.mark.parametrize("name", RNG_VALID) +def test_canonicalized_output_is_rng_valid_and_semantically_equal( + name: str, tmp_path: Path +) -> None: + source = CORPUS_DIR / name + out = tmp_path / "canonical.lift" + canonicalize(source, out) + schema = etree.RelaxNG( + etree.parse(Path(sil_lift.__file__).parent / "schemas" / "lift-0.13.rng") + ) + assert schema.validate(etree.parse(out)) + assert _semantic_bytes(_entries_sorted(out.read_bytes())) == _semantic_bytes( + _entries_sorted(source.read_bytes()) + ) + + +def test_canonicalize_never_touches_text_whitespace(tmp_path: Path) -> None: + source = CORPUS_DIR / "spec-examples" / "0.13" / "subsenses.lift" + out = tmp_path / "canonical.lift" + canonicalize(source, out) + reloaded = sil_lift.load(out) + original = sil_lift.load(source) + for a, b in zip(reloaded.entries, original.entries, strict=True): + for sense_a, sense_b in zip(a.senses, b.senses, strict=True): + assert str(sense_a.definition.get("en") or "") == str( + sense_b.definition.get("en") or "" + ) + + +def test_ranges_file_sort(tmp_path: Path) -> None: + import shutil + + shutil.copy(CORPUS_DIR / "ranges" / "test20080407.lift-ranges", tmp_path / "r.lift-ranges") + ranges_file = sil_lift.RangesFile.load(tmp_path / "r.lift-ranges") + ranges_file.ranges[0].elements.reverse() + ranges_file.sort() + assert [e.id for e in ranges_file.ranges[0].elements] == ["Adverb", "Noun", "Verb"] From b0517057fa4f0ff7faba8f36e34d105ec884c4bc Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 04:25:10 -0400 Subject: [PATCH 10/42] Streaming read/write LiftReader (iterparse; header parsed eagerly, entries lazy, clear()/sibling cleanup internal, version guard at open) and LiftWriter (canonical chunk per entry; output byte-identical to canonical_document by construction; exception leaves the file visibly unterminated). Same Entry types as full mode; full-vs-streaming model equality verified over the whole corpus; stream-copy of Sango preserves models; bounded memory measured: 400k-entry / ~340MB file stream-copied with <100MB working-set growth (40k-entry variant in the default suite). Extras anchor index excluded from equality (position hint, not content). 313 tests green. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 6 ++ src/sil_lift/__init__.py | 5 + src/sil_lift/_extras.py | 4 +- src/sil_lift/_stream.py | 206 +++++++++++++++++++++++++++++++++++++++ tests/test_stream.py | 152 +++++++++++++++++++++++++++++ 5 files changed, 372 insertions(+), 1 deletion(-) create mode 100644 src/sil_lift/_stream.py create mode 100644 tests/test_stream.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 398cbd2..abeee70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,12 @@ During 0.x, minor releases may contain breaking changes. entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. +- M6: streaming — `open_reader()` (lazy entry iterator with the parsed + header available up front; iterparse cleanup internal) and `open_writer()` + (header + one canonical chunk per entry; byte-identical to + `canonical_document` output by construction), both over the same `Entry` + types as full-document mode and O(one entry) in memory (verified on a + ~340 MB generated file). - M5: canonical sort — `Lexicon.sort()` / `RangesFile.sort()` (entries by case-folded guid/id, ranges/range-elements by id, field definitions by tag; LiftSorter-informed, locale-independent) and `sil_lift.canonicalize()` diff --git a/src/sil_lift/__init__.py b/src/sil_lift/__init__.py index 0ee4288..8513525 100644 --- a/src/sil_lift/__init__.py +++ b/src/sil_lift/__init__.py @@ -31,6 +31,7 @@ URLRef, Variant, ) +from ._stream import LiftReader, LiftWriter, open_reader, open_writer from ._text import Annotation, Form, Multitext, Span, Text, Trait from ._validate import Problem, iter_problems, validate_file @@ -53,7 +54,9 @@ "Lexicon", "LiftError", "LiftParseError", + "LiftReader", "LiftValidationError", + "LiftWriter", "MediaRef", "Multitext", "Note", @@ -75,6 +78,8 @@ "canonicalize", "iter_problems", "load", + "open_reader", + "open_writer", "validate_file", ] diff --git a/src/sil_lift/_extras.py b/src/sil_lift/_extras.py index 5350ffb..5891cb3 100644 --- a/src/sil_lift/_extras.py +++ b/src/sil_lift/_extras.py @@ -18,7 +18,9 @@ class _ExtraNode: kind: str # "element" | "comment" | "pi" | "text" xml: str # serialized fragment (for "text": the raw character data) - index: int # child position in the original parent, the re-emit anchor + # Child position in the original parent — a re-emit anchor, not content: + # the same residue at a slightly different position is still equal. + index: int = field(compare=False, default=0) @dataclass(slots=True, repr=False) diff --git a/src/sil_lift/_stream.py b/src/sil_lift/_stream.py new file mode 100644 index 0000000..d690280 --- /dev/null +++ b/src/sil_lift/_stream.py @@ -0,0 +1,206 @@ +"""Streaming read/write (decision A4): same Entry types, O(one entry) memory. + +The reader wraps ``lxml.etree.iterparse`` with all ``clear()``/preceding-sibling +bookkeeping internal; the writer emits the same bytes ``canonical_document`` +would produce for the same content, one entry chunk at a time (each entry's +subtree is built normally, serialized, and flushed — the byte layout is shared +with the canonical serializer by construction, so full and streaming output +never drift apart). + +Streaming mode has no byte-passthrough layer (A2: its memory cost is "absent +in streaming mode"): output is always canonical. Root-level residue (comments +between entries) is not carried either — entries and the header are. +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING + +from lxml import etree + +from ._errors import LiftParseError +from ._header import Header +from ._reader import SUPPORTED_VERSION, _parse_entry, _parse_header + +if TYPE_CHECKING: + import os + from collections.abc import Iterator + from types import TracebackType + + from ._model import Entry + +__all__ = ["LiftReader", "LiftWriter", "open_reader", "open_writer"] + + +class LiftReader: + """Lazy entry iterator over a ``.lift`` file; the header is parsed eagerly. + + Use as a context manager. The version guard runs at open time; the header + (which precedes entries in a conforming file) is available immediately as + :attr:`header`. + """ + + def __init__(self, path: str | os.PathLike[str]) -> None: + self.header = Header() + self.producer: str | None = None + self._header_seen = False + self._first_entry: Entry | None = None + self._file = open(path, "rb") # noqa: SIM115 - lifetime managed by close() + try: + self._events = etree.iterparse( + self._file, + events=("start", "end"), + resolve_entities=False, + no_network=True, + ) + self._root = self._read_prologue(path) + except Exception: + self._file.close() + raise + + def _read_prologue(self, path: str | os.PathLike[str]) -> etree._Element: + """Pump events until the header (or first entry) has been read.""" + root: etree._Element | None = None + try: + for event, el in self._events: + if event == "start": + if root is None: + root = el + if el.tag != "lift": + raise LiftParseError( + f"{path}: root element is <{el.tag}>, expected " + ) + version = el.get("version") + if version != SUPPORTED_VERSION: + raise LiftParseError( + f"unsupported LIFT version {version!r}: sil-lift reads " + "LIFT 0.13 only (one-off migration XSLTs are available " + "in sillsdev/lift-standard)" + ) + self.producer = el.get("producer") + continue + if root is None or el.getparent() is not root: + continue + if el.tag == "header" and not self._header_seen: + self._header_seen = True + self.header = _parse_header(el) + self._cleanup(el) + return root + if el.tag == "entry": + self._first_entry = _parse_entry(el) + self._cleanup(el) + return root + except etree.XMLSyntaxError as exc: + raise LiftParseError(f"{path}: not well-formed XML: {exc}") from exc + if root is None: + raise LiftParseError(f"{path}: not well-formed XML: no root element") + return root # empty document: no header, no entries + + @staticmethod + def _cleanup(el: etree._Element) -> None: + el.clear() + parent = el.getparent() + if parent is not None: + while el.getprevious() is not None: + del parent[0] + + def __iter__(self) -> Iterator[Entry]: + if self._first_entry is not None: + entry, self._first_entry = self._first_entry, None + yield entry + try: + for event, el in self._events: + if event != "end" or el.getparent() is not self._root: + continue + if el.tag == "entry": + entry = _parse_entry(el) + self._cleanup(el) + yield entry + elif el.tag == "header" and not self._header_seen: + self._header_seen = True # out-of-spec late header: still read + self.header = _parse_header(el) + self._cleanup(el) + except etree.XMLSyntaxError as exc: + raise LiftParseError(f"not well-formed XML: {exc}") from exc + + def close(self) -> None: + self._file.close() + + def __enter__(self) -> LiftReader: + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc: BaseException | None, + tb: TracebackType | None, + ) -> None: + self.close() + + +class LiftWriter: + """Streaming writer: header up front, then one canonical chunk per entry. + + Use as a context manager; the closing ```` is written only on a + clean exit (an exception leaves an unterminated file, deliberately — a + half-written lexicon must not look complete). + """ + + def __init__( + self, + path: str | os.PathLike[str], + *, + header: Header | None = None, + producer: str | None = None, + ) -> None: + from ._model import Lexicon + from ._writer import _root_open_bytes, canonical_header_bytes + + self._file = open(path, "wb") # noqa: SIM115 - lifetime managed by close() + self._closed = False + prototype = Lexicon(producer=producer) + self._file.write(b'\n') + self._file.write(_root_open_bytes(prototype) + b"\n") + if header is not None and header: + self._file.write(canonical_header_bytes(header)) + + def write(self, entry: Entry) -> None: + from ._writer import canonical_entry_bytes + + self._file.write(canonical_entry_bytes(entry)) + + def close(self) -> None: + if not self._closed: + self._closed = True + self._file.write(b"\n") + self._file.close() + + def __enter__(self) -> LiftWriter: + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc: BaseException | None, + tb: TracebackType | None, + ) -> None: + if exc_type is not None: + self._closed = True # leave the file visibly unterminated + self._file.close() + else: + self.close() + + +def open_reader(path: str | os.PathLike[str]) -> LiftReader: + """Open a ``.lift`` file for streaming reads (O(one entry) memory).""" + return LiftReader(path) + + +def open_writer( + path: str | os.PathLike[str], + *, + header: Header | None = None, + producer: str | None = None, +) -> LiftWriter: + """Open a ``.lift`` file for streaming writes (O(one entry) memory).""" + return LiftWriter(path, header=header, producer=producer) diff --git a/tests/test_stream.py b/tests/test_stream.py new file mode 100644 index 0000000..30daafc --- /dev/null +++ b/tests/test_stream.py @@ -0,0 +1,152 @@ +"""M6 acceptance: full-vs-streaming parse equality on the whole corpus, +stream-copy fidelity, bounded memory on a generated large file (measured).""" + +import os +import sys +from pathlib import Path + +import pytest + +import sil_lift +from sil_lift import LiftParseError, open_reader, open_writer + +CORPUS_DIR = Path(__file__).parent / "corpus" + +LOADABLE = sorted( + p for p in CORPUS_DIR.rglob("*.lift") if "0.12" not in p.parts and p.name != "sample.lift" +) + + +def corpus_id(path: Path) -> str: + return path.relative_to(CORPUS_DIR).as_posix() + + +@pytest.mark.parametrize("path", LOADABLE, ids=corpus_id) +def test_streaming_parse_equals_full_parse(path: Path) -> None: + full = sil_lift.load(path, resolve_ranges=False) + with open_reader(path) as reader: + assert reader.producer == full.producer + assert reader.header == full.header + streamed = list(reader) + assert streamed == full.entries + + +def test_streaming_version_guard() -> None: + with pytest.raises(LiftParseError, match=r"0\.12"): + open_reader(CORPUS_DIR / "spec-examples" / "0.12" / "simple.lift") + + +def test_streaming_not_xml() -> None: + with pytest.raises(LiftParseError, match="not well-formed"): + open_reader(CORPUS_DIR / "PROVENANCE.md") + + +def test_stream_copy_preserves_models(tmp_path: Path) -> None: + source = CORPUS_DIR / "large" / "sango" / "sango.lift" + out = tmp_path / "copy.lift" + with ( + open_reader(source) as reader, + open_writer(out, header=reader.header, producer=reader.producer) as writer, + ): + count = 0 + for entry in reader: + writer.write(entry) + count += 1 + assert count == 3507 + + original = sil_lift.load(source, resolve_ranges=False) + copied = sil_lift.load(out, resolve_ranges=False) + assert copied.producer == original.producer + assert copied.header == original.header + assert copied.entries == original.entries + + +def test_streaming_write_matches_canonical_document(tmp_path: Path) -> None: + from sil_lift._writer import canonical_document + + source = CORPUS_DIR / "spec-examples" / "0.13" / "subsenses.lift" + lexicon = sil_lift.load(source, resolve_ranges=False) + lexicon.extra._nodes.clear() # streaming carries no root-level residue + out = tmp_path / "streamed.lift" + with open_writer(out, header=lexicon.header, producer=lexicon.producer) as writer: + for entry in lexicon.entries: + writer.write(entry) + assert out.read_bytes() == canonical_document(lexicon) + + +def test_writer_leaves_unterminated_file_on_error(tmp_path: Path) -> None: + out = tmp_path / "broken.lift" + with pytest.raises(RuntimeError), open_writer(out, producer="t") as writer: + writer.write(sil_lift.Entry(id="only")) + raise RuntimeError("boom") + assert not out.read_bytes().rstrip().endswith(b"") + + +def _working_set_bytes() -> int | None: + if not sys.platform.startswith("win"): + return None + import ctypes + import ctypes.wintypes as wintypes + + class PROCESS_MEMORY_COUNTERS(ctypes.Structure): + _fields_ = [ + ("cb", wintypes.DWORD), + ("PageFaultCount", wintypes.DWORD), + ("PeakWorkingSetSize", ctypes.c_size_t), + ("WorkingSetSize", ctypes.c_size_t), + ("QuotaPeakPagedPoolUsage", ctypes.c_size_t), + ("QuotaPagedPoolUsage", ctypes.c_size_t), + ("QuotaPeakNonPagedPoolUsage", ctypes.c_size_t), + ("QuotaNonPagedPoolUsage", ctypes.c_size_t), + ("PagefileUsage", ctypes.c_size_t), + ("PeakPagefileUsage", ctypes.c_size_t), + ] + + counters = PROCESS_MEMORY_COUNTERS() + counters.cb = ctypes.sizeof(counters) + handle = ctypes.windll.kernel32.GetCurrentProcess() + if not ctypes.windll.psapi.GetProcessMemoryInfo(handle, ctypes.byref(counters), counters.cb): + return None + return int(counters.WorkingSetSize) + + +# The default run uses a ~35 MB file (quick); set SIL_LIFT_PERF=1 for the +# multi-hundred-MB variant the implementation plan calls for. +_PERF = os.environ.get("SIL_LIFT_PERF") == "1" +_ENTRIES = 400_000 if _PERF else 40_000 + + +def test_large_file_streams_in_bounded_memory(tmp_path: Path) -> None: + sys.path.insert(0, str(Path(__file__).parent / "tools")) + try: + from generate_large import generate + finally: + sys.path.pop(0) + + big = tmp_path / "big.lift" + generate(big, _ENTRIES, seed=0) + size = big.stat().st_size + assert size > (300_000_000 if _PERF else 30_000_000) + + out = tmp_path / "copy.lift" + baseline = _working_set_bytes() + peak_delta = 0 + count = 0 + with ( + open_reader(big) as reader, + open_writer(out, header=reader.header, producer=reader.producer) as writer, + ): + for entry in reader: + writer.write(entry) + count += 1 + if baseline is not None and count % 5000 == 0: + current = _working_set_bytes() + if current is not None: + peak_delta = max(peak_delta, current - baseline) + assert count == _ENTRIES + assert out.stat().st_size > size // 2 # the copy really contains the data + + if baseline is not None: + # O(one entry): far below file size (full DOM would exceed it severalfold). + limit = 100 * 1024 * 1024 if _PERF else 60 * 1024 * 1024 + assert peak_delta < limit, f"working-set delta {peak_delta / 1e6:.0f} MB" From b638102c3abed09511c3a7bb29df75cf925f0bad Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 04:34:24 -0400 Subject: [PATCH 11/42] CLI demo, documentation site, release polish sil-lift CLI (validate/stats/sort/check-media; stdlib argparse; exit codes 0/1/2) exercising every scope pillar, verified against the corpus incl. the filename-with-space fixture. Docs: task-oriented guides (read/edit/write, validate, large files, folder+media, CLI), fidelity page, mkdocstrings API reference; mkdocs build --strict green. Wheel built and verified in a fresh Python 3.12 venv (import, load, CLI). 323 tests green. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 4 + README.md | 11 +- docs/en/guides/cli.md | 28 ++++++ docs/en/guides/folder-media.md | 46 +++++++++ docs/en/guides/large-files.md | 34 +++++++ docs/en/guides/read-edit-write.md | 75 ++++++++++++++ docs/en/guides/validate.md | 44 ++++++++ docs/en/index.md | 34 ++++++- docs/en/reference.md | 10 ++ mkdocs.yml | 7 ++ pyproject.toml | 7 +- src/sil_lift/_cli.py | 161 ++++++++++++++++++++++++++++++ tests/test_cli.py | 80 +++++++++++++++ 13 files changed, 532 insertions(+), 9 deletions(-) create mode 100644 docs/en/guides/cli.md create mode 100644 docs/en/guides/folder-media.md create mode 100644 docs/en/guides/large-files.md create mode 100644 docs/en/guides/read-edit-write.md create mode 100644 docs/en/guides/validate.md create mode 100644 docs/en/reference.md create mode 100644 src/sil_lift/_cli.py create mode 100644 tests/test_cli.py diff --git a/CHANGELOG.md b/CHANGELOG.md index abeee70..a047cdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,10 @@ During 0.x, minor releases may contain breaking changes. entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. +- M7: the `sil-lift` CLI (`validate` / `stats` / `sort` / `check-media`, + stdlib-only, installed via the `[cli]` extra) and the documentation site + (task-oriented guides, fidelity contract, mkdocstrings API reference, + mkdocs-static-i18n wired for future localization). - M6: streaming — `open_reader()` (lazy entry iterator with the parsed header available up front; iterparse cleanup internal) and `open_writer()` (header + one canonical chunk per entry; byte-identical to diff --git a/README.md b/README.md index 4fa0d87..a8f51d2 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,21 @@ canonical sorting — with streaming APIs for large lexicons. ```python import sil_lift -lex = sil_lift.load("thesaurus.lift") +lex = sil_lift.load("thesaurus.lift") # tracks .lift-ranges companions too for entry in lex.entries: ... -lex.save() +entry = lex.find(id="hoofd_a1b2") +entry.senses[0].definition["en"] = "head (anatomy)" +lex.save() # untouched entries byte-identical ``` **Status: pre-release, under active development.** The API is not yet stable. +Requires Python 3.11+; the only runtime dependency is lxml. Install +`sil-lift[cli]` for the `sil-lift` command (`validate` / `stats` / `sort` / +`check-media`). Documentation lives in `docs/en/` (mkdocs-material; build +with `pip install -e .[docs] && mkdocs build`). + ## Fidelity guarantees `sil-lift` treats LIFT as an *interchange* format: it never drops what it does diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md new file mode 100644 index 0000000..d29ffaf --- /dev/null +++ b/docs/en/guides/cli.md @@ -0,0 +1,28 @@ +# The command line + +`pip install sil-lift[cli]` provides the `sil-lift` command — a small +LiftTools-style utility (and a worked example of the library API). + +``` +sil-lift validate PATH all problems, entry/line-addressed; exit 1 on errors +sil-lift stats PATH entry/sense/language counts (streaming; any size) +sil-lift sort PATH [-o OUT] canonically sorted, diff-ready copy (default: in place) +sil-lift check-media PATH missing and orphaned media report; exit 1 if missing +``` + +Examples: + +``` +$ sil-lift validate dictionary.lift +error [dangling-ref] dictionary.lift:88 (entry apu): ref 'nope' matches no entry id/guid or sense id +warning [uri-not-rfc] dictionary.lift:6: : Windows drive letter used as URI authority (FLEx-style file://C:/) +1 error(s), 1 warning(s) + +$ sil-lift stats sango.lift +entries: 3507 +senses: 4238 +... +``` + +Exit codes: `0` success (warnings allowed), `1` findings (validation errors / +missing media), `2` unreadable input. diff --git a/docs/en/guides/folder-media.md b/docs/en/guides/folder-media.md new file mode 100644 index 0000000..4b009c1 --- /dev/null +++ b/docs/en/guides/folder-media.md @@ -0,0 +1,46 @@ +# The LIFT folder: ranges and media + +A LIFT lexicon is usually a *folder*: the `.lift` file, one or more +`.lift-ranges` companions, and `audio/` / `pictures/` media. + +## Ranges + +```python +lex = sil_lift.load("dictionary.lift") # companions tracked automatically + +lex.ranges_files # {Path(...): RangesFile} +lex.all_ranges() # merged {id: Range} view +lex.all_ranges()["grammatical-info"].elements +``` + +Companion discovery handles the real world: a `range/@href` that points at an +existing file is used; FLEx's dangling absolute `file://C:/...` hrefs fall +back to the href's basename next to the `.lift`; and the conventional +`.lift-ranges` sibling is picked up even when nothing references it. + +`lex.save()` writes the `.lift` and every tracked companion together. Edits +to a `RangesFile` save back to *its* file; untouched ranges keep their exact +bytes. Standalone use: + +```python +ranges = sil_lift.RangesFile.load("dictionary.lift-ranges") +ranges.find("grammatical-info") +ranges.sort() +ranges.save() +``` + +Pass `resolve_ranges=False` to `load()` to skip companion discovery. + +## Media + +```python +for ref in lex.media_refs(): # every and + print(ref.kind, ref.href, ref.entry_id) + +lex.missing_media() # refs whose files don't exist +``` + +Resolution follows the conventional layout: a relative href is checked as +given (backslashes normalized — WeSay writes `pictures\photo with space.png`) +and under `audio/` (for pronunciation media) or `pictures/` (for +illustrations). Remote/absolute hrefs can't be checked and are skipped. diff --git a/docs/en/guides/large-files.md b/docs/en/guides/large-files.md new file mode 100644 index 0000000..0dc1622 --- /dev/null +++ b/docs/en/guides/large-files.md @@ -0,0 +1,34 @@ +# Large files (streaming) + +`load()` builds the whole object graph. For multi-hundred-MB lexicons, the +streaming API processes one entry at a time in bounded memory — the same +`Entry` type, so code written against one mode works in the other. + +```python +import sil_lift + +with sil_lift.open_reader("big.lift") as reader: + header = reader.header # parsed up front (precedes entries) + for entry in reader: # lazy Iterator[Entry] + ... +``` + +```python +with sil_lift.open_reader("big.lift") as reader, sil_lift.open_writer( + "out.lift", header=reader.header, producer="my-script" +) as writer: + for entry in reader: + if not entry.date_deleted: # e.g. drop tombstones + writer.write(entry) +``` + +Notes: + +- The writer's output is exactly what the full-document canonical serializer + would produce for the same content — the two modes never drift apart. +- Streaming mode has no byte-passthrough layer: output is always canonical. + Root-level comments between entries are not carried; entries and the header + are complete, residue included. +- If the body of an `open_writer` block raises, the file is left visibly + unterminated (no closing ``) — a half-written lexicon must not look + complete. diff --git a/docs/en/guides/read-edit-write.md b/docs/en/guides/read-edit-write.md new file mode 100644 index 0000000..abefc53 --- /dev/null +++ b/docs/en/guides/read-edit-write.md @@ -0,0 +1,75 @@ +# Read, edit, write + +## Loading + +```python +import sil_lift + +lex = sil_lift.load("dictionary.lift") +``` + +`load()` accepts any well-formed LIFT **0.13** document — including +schema-invalid real-world files. Anything the model doesn't define (unknown +elements/attributes, comments) is carried losslessly in each node's opaque +`extra` bucket. Other LIFT versions raise `LiftParseError` naming the version. + +## The model + +Every LIFT element is a typed dataclass: `Entry`, `Sense`, `Example`, +`Pronunciation`, `Variant`, `Relation`, `Etymology`, `Reversal`, and so on. +Multilingual text is a `Multitext`, which behaves like a mapping from +language code to `Text`: + +```python +entry = lex.find(id="abat") + +str(entry.lexical_unit["seh"]) # "abat" +entry.lexical_unit["en"] = "grove" # plain strings are coerced +"en" in entry.citation # False +``` + +`Text` is structured — an ordered list of `str` and `Span` fragments — because +`` can contain nested `` markup. `str(text)` flattens to plain +text; the fragments keep the markup for round-tripping. + +Glosses are *form-shaped* in LIFT (each `` carries its own language), +so a sense has `glosses: list[Form]` plus a helper: + +```python +sense = entry.senses[0] +sense.gloss("en") # Text | None +entry.gloss_langs() # {"en", "id"} +``` + +## Saving + +```python +lex.save() # back to where it was loaded from +lex.save("elsewhere.lift") +``` + +Entries you didn't modify are written back **byte-identical**; a document you +didn't modify at all is byte-identical from the first byte to the last. See +[Fidelity guarantees](../fidelity.md) for the precise contract. + +## Building from scratch + +```python +lex = sil_lift.Lexicon(producer="my-script 1.0") +entry = sil_lift.Entry(id="hello", guid="...") +entry.lexical_unit["en"] = "hello" +sense = sil_lift.Sense() +sense.glosses.append(sil_lift.Form("fr", sil_lift.Text(["bonjour"]))) +entry.senses.append(sense) +lex.entries.append(entry) +lex.save("new.lift") +``` + +## Canonical sorting + +```python +lex.sort() # entries by (guid, id); ranges/field defs by id/tag +lex.save() # untouched entries keep their exact bytes, in the new order + +sil_lift.canonicalize("in.lift", "out.lift") # fully re-serialized, diff-ready +``` diff --git a/docs/en/guides/validate.md b/docs/en/guides/validate.md new file mode 100644 index 0000000..2cbf7a6 --- /dev/null +++ b/docs/en/guides/validate.md @@ -0,0 +1,44 @@ +# Validate + +Validation is always explicit — loading and saving never validate implicitly. + +```python +import sil_lift + +# Exhaustive: a lazy stream of Problems (schema + semantic layers). +for problem in sil_lift.iter_problems("dictionary.lift"): + print(problem) + # error [dangling-ref] dictionary.lift:88 (entry apu): ref 'nope' matches ... + +# Fail-fast: raises LiftValidationError on the first error-level problem. +sil_lift.validate_file("dictionary.lift") + +# In-memory state (serializes first — a documented cost on large lexicons): +problems = list(lex.iter_problems()) +``` + +Each `Problem` carries `level` (`"error"`/`"warning"`), a stable `code`, +`message`, and an address: `file`, `entry_id`, `guid`, `line`. + +## The layers + +1. **RELAX NG** against the LIFT 0.13 grammar (vendored from lift-standard). +2. **Ranges schema** — this project's `lift-ranges-0.13.rng` — over every + tracked `.lift-ranges` companion. +3. **Semantic checks** the grammar cannot express: `duplicate-guid`, + `dangling-ref`, `range-parent`, `undefined-range-value`, + `duplicate-form-lang`, `missing-media`. + +## Real-world FLEx output + +FieldWorks systematically writes some content that strict tooling rejects. +sil-lift's policy, so that real lexicons validate usefully: + +- `file://C:/...` hrefs (invalid URIs) are reported as **warnings** + (`uri-not-rfc`), not schema errors — the C# validator never rejected them. +- Legally interleaved children (e.g. `field, note, field, note` in a sense) + are **not** flagged, working around a false positive in libxml2. +- Range values are compared under Unicode NFC normalization — FLEx writes the + `.lift` in NFC but the `.lift-ranges` in NFD within the same export. +- FLEx's `trait`/`field` extensions inside `range-element` **are** reported + (schema errors against the ranges schema): they are genuine spec deviations. diff --git a/docs/en/index.md b/docs/en/index.md index b7fbbdf..9a267f2 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -7,14 +7,38 @@ validation, and canonical sorting — with streaming APIs for large lexicons. **Status: pre-release, under active development.** +## Install + +``` +pip install sil-lift # library +pip install sil-lift[cli] # library + the sil-lift command +``` + +Requires Python 3.11+. The only runtime dependency is lxml. + +## The 30-second tour + ```python import sil_lift -lex = sil_lift.load("thesaurus.lift") +lex = sil_lift.load("thesaurus.lift") # tracks .lift-ranges companions too + for entry in lex.entries: - ... -lex.save() + if "en" not in entry.gloss_langs(): + print(entry.id, str(entry.lexical_unit.get("seh") or "")) + +entry = lex.find(guid="0f5a9c3e-...") # or lex.find(id="hoofd_a1b2") +entry.senses[0].definition["en"] = "head (anatomy)" + +lex.save() # untouched entries byte-identical; edited entry re-serialized ``` -Task-oriented guides (reading and editing a lexicon, validating, working with -large files, media handling) will be added as the corresponding features land. +## Guides + +- [Read, edit, write](guides/read-edit-write.md) +- [Validate](guides/validate.md) +- [Large files (streaming)](guides/large-files.md) +- [The LIFT folder: ranges and media](guides/folder-media.md) +- [The command line](guides/cli.md) +- [Fidelity guarantees](fidelity.md) — what "lossless" means here, precisely +- [API reference](reference.md) diff --git a/docs/en/reference.md b/docs/en/reference.md new file mode 100644 index 0000000..c9322e7 --- /dev/null +++ b/docs/en/reference.md @@ -0,0 +1,10 @@ +# API reference + +The public API is exactly what `sil_lift` re-exports at the top level; +underscore-prefixed modules are implementation details. + +::: sil_lift + options: + show_root_heading: false + show_source: false + members_order: source diff --git a/mkdocs.yml b/mkdocs.yml index 6db1b6c..aafbd82 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -26,4 +26,11 @@ plugins: nav: - Home: index.md + - Guides: + - Read, edit, write: guides/read-edit-write.md + - Validate: guides/validate.md + - Large files: guides/large-files.md + - Ranges and media: guides/folder-media.md + - Command line: guides/cli.md - Fidelity guarantees: fidelity.md + - API reference: reference.md diff --git a/pyproject.toml b/pyproject.toml index cf261a1..ff9ece4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,9 +36,12 @@ classifiers = [ ] dependencies = ["lxml>=5.0"] +[project.scripts] +sil-lift = "sil_lift._cli:main" + [project.optional-dependencies] -# The demo CLI (milestone M7) uses only the stdlib; the extra exists so -# `pip install sil-lift[cli]` is the documented install from day one. +# The demo CLI uses only the stdlib, so this extra is empty; it exists so +# `pip install sil-lift[cli]` stays the documented install for CLI users. cli = [] dev = [ "pytest>=8", diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py new file mode 100644 index 0000000..5583f45 --- /dev/null +++ b/src/sil_lift/_cli.py @@ -0,0 +1,161 @@ +"""The demo CLI (decision-document section D): validate / stats / sort / check-media. + +A LiftTools-style utility exercising every scope pillar end-to-end: validation +(all three layers), streaming reads (stats), the canonical sort + write path +(sort), and the folder/media model (check-media). Deliberately stdlib-only. +""" + +from __future__ import annotations + +import argparse +import sys +from collections import Counter +from pathlib import Path +from typing import TYPE_CHECKING + +from ._canonical import canonicalize +from ._errors import LiftError +from ._model import Lexicon +from ._stream import open_reader +from ._validate import iter_problems + +if TYPE_CHECKING: + from collections.abc import Sequence + + from ._model import Entry, Sense + +__all__ = ["main"] + + +def _cmd_validate(args: argparse.Namespace) -> int: + errors = warnings = 0 + for problem in iter_problems(args.path): + print(problem) + if problem.level == "error": + errors += 1 + else: + warnings += 1 + print(f"{errors} error(s), {warnings} warning(s)") + return 1 if errors else 0 + + +def _iter_senses(entry: Entry) -> list[Sense]: + senses: list[Sense] = [] + stack = list(entry.senses) + while stack: + sense = stack.pop() + senses.append(sense) + stack.extend(sense.subsenses) + return senses + + +def _cmd_stats(args: argparse.Namespace) -> int: + entries = senses = examples = media = 0 + langs: set[str] = set() + traits: Counter[str] = Counter() + with open_reader(args.path) as reader: + for entry in reader: + entries += 1 + langs.update(entry.lexical_unit.keys()) + traits.update(trait.name for trait in entry.traits) + for pronunciation in entry.pronunciations: + media += len(pronunciation.media) + for sense in _iter_senses(entry): + senses += 1 + examples += len(sense.examples) + media += len(sense.illustrations) + langs.update(g.lang for g in sense.glosses if g.lang) + langs.update(sense.definition.keys()) + traits.update(trait.name for trait in sense.traits) + print(f"entries: {entries}") + print(f"senses: {senses}") + print(f"examples: {examples}") + print(f"media refs: {media}") + print(f"languages: {', '.join(sorted(langs)) if langs else '(none)'}") + if traits: + top = ", ".join(f"{name} ({count})" for name, count in traits.most_common(5)) + print(f"top traits: {top}") + return 0 + + +def _cmd_sort(args: argparse.Namespace) -> int: + target = args.output if args.output is not None else args.path + canonicalize(args.path, target) + print(f"wrote {target}") + return 0 + + +def _cmd_check_media(args: argparse.Namespace) -> int: + lexicon = Lexicon.load(args.path) + missing = lexicon.missing_media() + for ref in missing: + owner = ref.entry_id or ref.entry_guid or "?" + print(f"missing {ref.kind:12s} {ref.href!r} (entry {owner})") + + referenced: set[Path] = set() + base = Path(args.path).parent + for ref in lexicon.media_refs(): + normalized = ref.href.replace("\\", "/") + referenced.add((base / normalized).resolve()) + subfolder = "audio" if ref.kind == "media" else "pictures" + referenced.add((base / subfolder / normalized).resolve()) + orphans = [ + file + for folder in ("audio", "pictures") + if (base / folder).is_dir() + for file in sorted((base / folder).rglob("*")) + if file.is_file() and file.resolve() not in referenced + ] + for file in orphans: + print(f"orphaned {file.relative_to(base)} (no media/illustration references it)") + if orphans: + print( + "note: WeSay-style audio writing systems reference files from form " + "text, which this check does not follow" + ) + print(f"{len(missing)} missing, {len(orphans)} orphaned") + return 1 if missing else 0 + + +def main(argv: Sequence[str] | None = None) -> int: + parser = argparse.ArgumentParser( + prog="sil-lift", + description="Utilities for LIFT 0.13 lexicon files.", + ) + subparsers = parser.add_subparsers(dest="command", required=True) + + validate = subparsers.add_parser( + "validate", help="schema + semantic validation; exit 1 on errors" + ) + validate.add_argument("path", type=Path, help="a .lift file") + validate.set_defaults(func=_cmd_validate) + + stats = subparsers.add_parser("stats", help="entry/sense/language counts (streaming)") + stats.add_argument("path", type=Path, help="a .lift file") + stats.set_defaults(func=_cmd_stats) + + sort = subparsers.add_parser("sort", help="write a canonically sorted copy") + sort.add_argument("path", type=Path, help="a .lift file") + sort.add_argument("-o", "--output", type=Path, default=None, help="default: in place") + sort.set_defaults(func=_cmd_sort) + + check_media = subparsers.add_parser( + "check-media", help="report missing and orphaned media files" + ) + check_media.add_argument("path", type=Path, help="a .lift file") + check_media.set_defaults(func=_cmd_check_media) + + args = parser.parse_args(argv) + try: + result: int = args.func(args) + except LiftError as exc: + print(f"error: {exc}", file=sys.stderr) + return 2 + except OSError as exc: + print(f"error: {exc}", file=sys.stderr) + return 2 + return result + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/tests/test_cli.py b/tests/test_cli.py new file mode 100644 index 0000000..47547cc --- /dev/null +++ b/tests/test_cli.py @@ -0,0 +1,80 @@ +"""M7 acceptance: the CLI works against the corpus, including the +filename-with-space fixture.""" + +import shutil +from pathlib import Path + +import pytest + +from sil_lift._cli import main + +CORPUS_DIR = Path(__file__).parent / "corpus" + + +def test_validate_clean_file(capsys: pytest.CaptureFixture[str]) -> None: + assert main(["validate", str(CORPUS_DIR / "ranges" / "test20080407.lift")]) == 0 + out = capsys.readouterr().out + assert "0 error(s), 0 warning(s)" in out + + +def test_validate_reports_errors_and_exits_1(capsys: pytest.CaptureFixture[str]) -> None: + assert main(["validate", str(CORPUS_DIR / "negative" / "duplicate-guid.lift")]) == 1 + out = capsys.readouterr().out + assert "duplicate-guid" in out + assert "1 error(s)" in out + + +def test_validate_warnings_only_exits_0(capsys: pytest.CaptureFixture[str]) -> None: + assert main(["validate", str(CORPUS_DIR / "negative" / "flex-quirks.lift")]) == 0 + assert "uri-not-rfc" in capsys.readouterr().out + + +def test_filename_with_space(capsys: pytest.CaptureFixture[str]) -> None: + path = CORPUS_DIR / "spec-examples" / "0.13" / "fields any order.lift" + assert main(["stats", str(path)]) == 0 + assert "entries: 1" in capsys.readouterr().out + + +def test_stats_streaming_on_sango(capsys: pytest.CaptureFixture[str]) -> None: + assert main(["stats", str(CORPUS_DIR / "large" / "sango" / "sango.lift")]) == 0 + out = capsys.readouterr().out + assert "entries: 3507" in out + assert "sg" in out # a language present in the data + + +def test_sort_writes_canonical_copy(tmp_path: Path, capsys: pytest.CaptureFixture[str]) -> None: + source = CORPUS_DIR / "spec-examples" / "0.13" / "subsenses.lift" + out = tmp_path / "sorted.lift" + assert main(["sort", str(source), "-o", str(out)]) == 0 + assert out.is_file() + again = tmp_path / "sorted-again.lift" + assert main(["sort", str(out), "-o", str(again)]) == 0 + assert again.read_bytes() == out.read_bytes() # idempotent + + +def test_sort_in_place(tmp_path: Path, capsys: pytest.CaptureFixture[str]) -> None: + target = tmp_path / "file.lift" + shutil.copy(CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift", target) + before = target.read_bytes() + assert main(["sort", str(target)]) == 0 + assert target.read_bytes() != before # canonical layout replaces original + + +def test_check_media_on_moma(capsys: pytest.CaptureFixture[str]) -> None: + assert main(["check-media", str(CORPUS_DIR / "folder" / "Moma" / "Moma.lift")]) == 0 + out = capsys.readouterr().out + assert "0 missing" in out + # The wav files are referenced via audio writing systems, not : + assert "orphaned" in out + + +def test_check_media_flags_missing(capsys: pytest.CaptureFixture[str]) -> None: + path = CORPUS_DIR / "negative" / "missing-media" / "missing-media.lift" + assert main(["check-media", str(path)]) == 1 + out = capsys.readouterr().out + assert "none.wav" in out and "gone.png" in out + + +def test_bad_input_exits_2(capsys: pytest.CaptureFixture[str]) -> None: + assert main(["validate", str(CORPUS_DIR / "PROVENANCE.md")]) == 2 + assert "error:" in capsys.readouterr().err From 42d22b3e26290d563fc2b3279bef1d543395b435 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 09:02:07 -0400 Subject: [PATCH 12/42] docs: add 'Differences from the C# libraries' page Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 2 + docs/en/csharp-differences.md | 82 +++++++++++++++++++++++++++++++++++ docs/en/index.md | 1 + mkdocs.yml | 1 + 4 files changed, 86 insertions(+) create mode 100644 docs/en/csharp-differences.md diff --git a/CHANGELOG.md b/CHANGELOG.md index a047cdd..37f11d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ During 0.x, minor releases may contain breaking changes. entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. +- Docs: "Differences from the C# libraries" page summarizing where sil-lift + deviates from SIL.Lift/LiftSorter/Chorus behavior and why. - M7: the `sil-lift` CLI (`validate` / `stats` / `sort` / `check-media`, stdlib-only, installed via the `[cli]` extra) and the documentation site (task-oriented guides, fidelity contract, mkdocstrings API reference, diff --git a/docs/en/csharp-differences.md b/docs/en/csharp-differences.md new file mode 100644 index 0000000..2a616a4 --- /dev/null +++ b/docs/en/csharp-differences.md @@ -0,0 +1,82 @@ +# Differences from the C# libraries + +sil-lift is loosely analogous to SIL's C# LIFT tooling — chiefly `SIL.Lift` +in [libpalaso](https://github.com/sillsdev/libpalaso) (parser, validator, +migrator, `LiftSorter`) and the LIFT handlers in +[Chorus](https://github.com/sillsdev/chorus). It is a fresh implementation, +not a port. This page summarizes where behavior deliberately differs. + +## Scope + +| Capability | C# libraries | sil-lift | +|---|---|---| +| LIFT versions | 0.10–0.13 (migration built in) | **0.13 only**; older versions rejected with a clear error | +| Version migration | `Migrator` (XSLT chain) | none — use the XSLTs in lift-standard for one-off upgrades | +| 3-way merge / sync | Chorus | out of scope | +| Validation | RELAX NG only (`Validator`) | RELAX NG + ranges schema + semantic checks | +| Streaming | internal entry-granularity parsing | public `open_reader` / `open_writer` API | + +## API shape + +`SIL.Lift`'s parser is callback-driven (`ILexiconMerger`): it pushes parse +events at a consumer. sil-lift instead returns a plain object graph — typed +dataclasses for every LIFT element — because Python scripters want objects, +not callbacks. The streaming API yields the *same* `Entry` type, so there is +no capability-reduced twin model. + +## Round-trip fidelity + +The strongest deliberate difference. Saving with `SIL.Lift` re-serializes the +whole document. sil-lift guarantees: + +- an unchanged document saves **byte-identically**, and +- untouched entries keep their exact source bytes even when other entries + change (Chorus-grade byte chunking, applied automatically). + +See [Fidelity guarantees](fidelity.md). + +## Validation + +The C# `Validator` runs one RELAX NG pass and reports the first errors as +strings. sil-lift reports a structured, entry/line-addressed `Problem` +stream, and its schema layer knowingly diverges in three places: + +- **Invalid URIs are warnings, not errors.** The C# RELAX NG engine never + enforced the `anyURI` datatype, so FLEx has been writing `file://C:/...` + hrefs into real lexicons for years. Rejecting those files would flag + virtually every FLEx export. +- **Schematron rules are enforced** (as semantic checks): duplicate form + languages and similar co-constraints in the LIFT grammar were silently + ignored by both C# and raw lxml validation. +- **Cross-file comparisons are Unicode-normalized**, because FLEx writes the + `.lift` in NFC and the companion `.lift-ranges` in NFD. + +sil-lift also validates standalone `.lift-ranges` files against a schema this +project authored — no such schema (or check) exists in the C# world. + +## Canonical sorting + +`Lexicon.sort()` mirrors `LiftSorter`'s core rules (entries by +case-insensitive guid; ranges and range-elements by id; header field +definitions by tag; senses kept in file order; whitespace inside `` +never touched), with three differences: + +- entries without a guid sort deterministically by id (`LiftSorter` assumes + a guid is present); +- ordering is locale-independent (plain case-folded code points, not + .NET invariant-culture collation); +- same-type lists such as notes, relations, and forms keep their document + order rather than being re-sorted by key — grouping is already + deterministic, and reordering them only adds diff noise. + +The spec repo's `canonicalizeLift.xsl` is not used at all: it collapses +whitespace inside lexical text (destructive) and its generated ids differ on +every run. + +## Not carried over + +- WeSay-specific conveniences (dashboard/config handling around LIFT files). +- `SynchronicMerger` (Chorus update merging) — the byte-chunking idea lives + on in the fidelity layer, the merging does not. +- LDML writing-system parsing: files in `WritingSystems/` are treated as + opaque folder content. diff --git a/docs/en/index.md b/docs/en/index.md index 9a267f2..fb73e86 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -41,4 +41,5 @@ lex.save() # untouched entries byte-identical; edited entry re-serialized - [The LIFT folder: ranges and media](guides/folder-media.md) - [The command line](guides/cli.md) - [Fidelity guarantees](fidelity.md) — what "lossless" means here, precisely +- [Differences from the C# libraries](csharp-differences.md) - [API reference](reference.md) diff --git a/mkdocs.yml b/mkdocs.yml index aafbd82..436cfa0 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -33,4 +33,5 @@ nav: - Ranges and media: guides/folder-media.md - Command line: guides/cli.md - Fidelity guarantees: fidelity.md + - Differences from the C# libraries: csharp-differences.md - API reference: reference.md From 6273ecb660b24f2a3bdbc2d008065b0ca1929e79 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 10:32:47 -0400 Subject: [PATCH 13/42] CLI export subcommand + bulk-edit worked example docs export: LIFT -> CSV/TSV, one row per leaf sense (a sense with subsenses is a grouping node), streaming with two-pass language auto-detection or --langs; 6 new tests. Docs: guides/bulk-edit-glosses.md with a runnable, verified script (load -> edit glosses incl. subsenses -> validate-gate -> save) and the per-entry fidelity story; nav/index wired. 329 tests green; mkdocs build --strict green. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 8 ++- docs/en/guides/bulk-edit-glosses.md | 91 +++++++++++++++++++++++++++++ docs/en/guides/cli.md | 12 ++-- docs/en/guides/read-edit-write.md | 2 + docs/en/index.md | 1 + mkdocs.yml | 1 + src/sil_lift/_cli.py | 79 +++++++++++++++++++++++-- tests/test_cli.py | 90 ++++++++++++++++++++++++++++ 8 files changed, 274 insertions(+), 10 deletions(-) create mode 100644 docs/en/guides/bulk-edit-glosses.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 37f11d4..316e55e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,8 +20,12 @@ During 0.x, minor releases may contain breaking changes. entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. -- Docs: "Differences from the C# libraries" page summarizing where sil-lift - deviates from SIL.Lift/LiftSorter/Chorus behavior and why. +- CLI: `sil-lift export` — one row per leaf sense (subsenses flattened) to + CSV/TSV, streaming; analysis languages auto-detected or set with `--langs`. +- Docs: worked example "bulk-editing glosses" (complete runnable script, + verified output) and a "Differences from the C# libraries" page + summarizing where sil-lift deviates from SIL.Lift/LiftSorter/Chorus + behavior and why. - M7: the `sil-lift` CLI (`validate` / `stats` / `sort` / `check-media`, stdlib-only, installed via the `[cli]` extra) and the documentation site (task-oriented guides, fidelity contract, mkdocstrings API reference, diff --git a/docs/en/guides/bulk-edit-glosses.md b/docs/en/guides/bulk-edit-glosses.md new file mode 100644 index 0000000..24464a6 --- /dev/null +++ b/docs/en/guides/bulk-edit-glosses.md @@ -0,0 +1,91 @@ +# Worked example: bulk-editing glosses + +A common maintenance task: normalize spelling across every English gloss in a +lexicon (British → American, or vice versa) without disturbing anything else +in the file. This walks through one script that loads, edits, validates, and +saves — showing the editing API and the fidelity guarantee working together. + +## The script + +```python +import sys + +import sil_lift + +path = "dictionary.lift" +lex = sil_lift.load(path) + + +def iter_senses(senses): + """Yield every sense, including subsenses (recursive).""" + for sense in senses: + yield sense + yield from iter_senses(sense.subsenses) + + +edited_glosses = 0 +touched_entries = set() + +for entry in lex.entries: + for sense in iter_senses(entry.senses): + for gloss in sense.glosses: + if gloss.lang != "en": + continue + old = str(gloss.text) + new = old.replace("colour", "color") + if new != old: + gloss.text = sil_lift.Text([new]) + edited_glosses += 1 + touched_entries.add(entry.id) + +errors = [p for p in lex.iter_problems() if p.level == "error"] +if errors: + for problem in errors: + print(problem) + sys.exit(f"aborting: {len(errors)} validation error(s), nothing saved") + +lex.save() +print(f"edited {edited_glosses} gloss(es) across {len(touched_entries)} entry(ies)") +``` + +A few things worth noting: + +- `Sense.subsenses` is itself a `list[Sense]`, so `iter_senses` recurses into + it — a bulk edit that only walked `entry.senses` would silently skip any + gloss nested under a subsense. +- `gloss.text` is a `Text`, not a plain string: `str(gloss.text)` flattens it + for matching, and the replacement is written back with + `sil_lift.Text([new])` rather than mutating the string in place. +- Validating in memory (`lex.iter_problems()`) serializes the edited state + first, so it correctly reflects the edit before anything is written to + disk. Aborting on any `"error"`-level `Problem` — warnings are left for the + caller to judge — means a bad edit never reaches `save()`. + +Glosses aren't the only thing worth touching this way. The same +`Multitext` mapping surface applies to definitions and every other +multilingual field on an entry or sense: + +```python +sense.definition["en"] = "the color of a thing" +``` + +## Running it + +Run against a small lexicon with a gloss and a subsense gloss that both say +"colour": + +``` +edited 2 gloss(es) across 1 entry(ies) +``` + +## The fidelity payoff + +The guarantee is per *entry*: an entry whose model didn't change comes back +out **byte-identical** to how it was read in, and only the entries you +actually touched are re-serialized. In the run above, one entry had glosses +edited — every other entry in the file kept its exact bytes. (Note the +granularity: editing any part of an entry re-serializes that whole entry, +including its untouched sibling senses.) Editing one gloss in a +50,000-entry lexicon therefore produces a diff touching one entry, not a +reformatted file. See [Fidelity guarantees](../fidelity.md) for the precise +contract. diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md index d29ffaf..53a07c7 100644 --- a/docs/en/guides/cli.md +++ b/docs/en/guides/cli.md @@ -4,10 +4,12 @@ LiftTools-style utility (and a worked example of the library API). ``` -sil-lift validate PATH all problems, entry/line-addressed; exit 1 on errors -sil-lift stats PATH entry/sense/language counts (streaming; any size) -sil-lift sort PATH [-o OUT] canonically sorted, diff-ready copy (default: in place) -sil-lift check-media PATH missing and orphaned media report; exit 1 if missing +sil-lift validate PATH all problems, entry/line-addressed; exit 1 on errors +sil-lift stats PATH entry/sense/language counts (streaming; any size) +sil-lift sort PATH [-o OUT] canonically sorted, diff-ready copy (default: in place) +sil-lift check-media PATH missing and orphaned media report; exit 1 if missing +sil-lift export PATH [-o OUT] [--langs L] [--tsv] + one row per sense (subsenses flattened) to CSV/TSV (streaming) ``` Examples: @@ -22,6 +24,8 @@ $ sil-lift stats sango.lift entries: 3507 senses: 4238 ... + +$ sil-lift export dictionary.lift --langs en,fr -o dictionary.csv ``` Exit codes: `0` success (warnings allowed), `1` findings (validation errors / diff --git a/docs/en/guides/read-edit-write.md b/docs/en/guides/read-edit-write.md index abefc53..2940ae8 100644 --- a/docs/en/guides/read-edit-write.md +++ b/docs/en/guides/read-edit-write.md @@ -73,3 +73,5 @@ lex.save() # untouched entries keep their exact bytes, in the new order sil_lift.canonicalize("in.lift", "out.lift") # fully re-serialized, diff-ready ``` + +See also: [Worked example: bulk-editing glosses](bulk-edit-glosses.md). diff --git a/docs/en/index.md b/docs/en/index.md index fb73e86..3f68ed5 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -40,6 +40,7 @@ lex.save() # untouched entries byte-identical; edited entry re-serialized - [Large files (streaming)](guides/large-files.md) - [The LIFT folder: ranges and media](guides/folder-media.md) - [The command line](guides/cli.md) +- [Worked example: bulk-editing glosses](guides/bulk-edit-glosses.md) - [Fidelity guarantees](fidelity.md) — what "lossless" means here, precisely - [Differences from the C# libraries](csharp-differences.md) - [API reference](reference.md) diff --git a/mkdocs.yml b/mkdocs.yml index 436cfa0..d341dbf 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -32,6 +32,7 @@ nav: - Large files: guides/large-files.md - Ranges and media: guides/folder-media.md - Command line: guides/cli.md + - "Worked example: bulk-editing glosses": guides/bulk-edit-glosses.md - Fidelity guarantees: fidelity.md - Differences from the C# libraries: csharp-differences.md - API reference: reference.md diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index 5583f45..99d2ef8 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -1,13 +1,14 @@ -"""The demo CLI (decision-document section D): validate / stats / sort / check-media. +"""The demo CLI (decision-document section D): validate / stats / sort / check-media / export. A LiftTools-style utility exercising every scope pillar end-to-end: validation -(all three layers), streaming reads (stats), the canonical sort + write path -(sort), and the folder/media model (check-media). Deliberately stdlib-only. +(all three layers), streaming reads (stats, export), the canonical sort + write +path (sort), and the folder/media model (check-media). Deliberately stdlib-only. """ from __future__ import annotations import argparse +import csv import sys from collections import Counter from pathlib import Path @@ -20,9 +21,11 @@ from ._validate import iter_problems if TYPE_CHECKING: - from collections.abc import Sequence + from collections.abc import Iterator, Sequence + from typing import TextIO from ._model import Entry, Sense + from ._text import Text __all__ = ["main"] @@ -117,6 +120,63 @@ def _cmd_check_media(args: argparse.Namespace) -> int: return 1 if missing else 0 +def _iter_leaf_senses(senses: Sequence[Sense]) -> Iterator[Sense]: + """Depth-first leaf senses, document order. + + A sense with subsenses is a LIFT grouping node (e.g. numbered "1a"/"1b" + under a bare "1") whose own gloss/definition are conventionally empty — + its subsenses carry the content and get the rows instead. + """ + for sense in senses: + if sense.subsenses: + yield from _iter_leaf_senses(sense.subsenses) + else: + yield sense + + +def _text_or_empty(text: Text | None) -> str: + return str(text) if text is not None else "" + + +def _cmd_export(args: argparse.Namespace) -> int: + if args.langs: + langs: list[str] = [lang.strip() for lang in args.langs.split(",") if lang.strip()] + else: + detected: set[str] = set() + with open_reader(args.path) as reader: + for entry in reader: + for sense in _iter_leaf_senses(entry.senses): + detected.update(form.lang for form in sense.glosses if form.lang is not None) + detected.update(sense.definition.keys()) + langs = sorted(detected) + + header = ["entry_id", "entry_guid", "sense_id", "lexeme", "pos"] + for lang in langs: + header.extend([f"gloss_{lang}", f"definition_{lang}"]) + + out_file: TextIO = ( + sys.stdout if args.output is None else args.output.open("w", encoding="utf-8", newline="") + ) + try: + writer = csv.writer(out_file, delimiter="\t" if args.tsv else ",") + writer.writerow(header) + with open_reader(args.path) as reader: + for entry in reader: + forms = entry.lexical_unit.forms + lexeme = str(forms[0].text) if forms else "" + for sense in _iter_leaf_senses(entry.senses): + pos = sense.grammatical_info.value if sense.grammatical_info else "" + row = [entry.id or "", entry.guid or "", sense.id or "", lexeme, pos] + for lang in langs: + row.append(_text_or_empty(sense.gloss(lang))) + row.append(_text_or_empty(sense.definition.get(lang))) + writer.writerow(row) + finally: + if args.output is not None: + out_file.close() + return 0 + + def main(argv: Sequence[str] | None = None) -> int: parser = argparse.ArgumentParser( prog="sil-lift", @@ -145,6 +205,17 @@ def main(argv: Sequence[str] | None = None) -> int: check_media.add_argument("path", type=Path, help="a .lift file") check_media.set_defaults(func=_cmd_check_media) + export = subparsers.add_parser( + "export", help="flatten senses to CSV/TSV, one row per sense (streaming)" + ) + export.add_argument("path", type=Path, help="a .lift file") + export.add_argument("-o", "--output", type=Path, default=None, help="default: stdout") + export.add_argument( + "--langs", default=None, help="comma-separated analysis languages (default: auto-detect)" + ) + export.add_argument("--tsv", action="store_true", help="tab-delimited output (default: CSV)") + export.set_defaults(func=_cmd_export) + args = parser.parse_args(argv) try: result: int = args.func(args) diff --git a/tests/test_cli.py b/tests/test_cli.py index 47547cc..9698b90 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,6 +1,7 @@ """M7 acceptance: the CLI works against the corpus, including the filename-with-space fixture.""" +import csv import shutil from pathlib import Path @@ -78,3 +79,92 @@ def test_check_media_flags_missing(capsys: pytest.CaptureFixture[str]) -> None: def test_bad_input_exits_2(capsys: pytest.CaptureFixture[str]) -> None: assert main(["validate", str(CORPUS_DIR / "PROVENANCE.md")]) == 2 assert "error:" in capsys.readouterr().err + + +def test_export_auto_detects_langs(tmp_path: Path) -> None: + source = CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift" + out = tmp_path / "out.csv" + assert main(["export", str(source), "-o", str(out)]) == 0 + header, *data = csv.reader(out.open(encoding="utf-8", newline="")) + assert header == [ + "entry_id", + "entry_guid", + "sense_id", + "lexeme", + "pos", + "gloss_en", + "definition_en", + "gloss_id", + "definition_id", + ] + assert len(data) == 1 + row = dict(zip(header, data[0], strict=True)) + assert row["entry_id"] == "abat" + assert row["pos"] == "n" + assert row["gloss_en"] == "grove" + assert row["gloss_id"] == "dusun" + + +def test_export_flattens_subsenses(tmp_path: Path) -> None: + source = CORPUS_DIR / "spec-examples" / "0.13" / "subsenses.lift" + out = tmp_path / "out.csv" + assert main(["export", str(source), "-o", str(out)]) == 0 + header, *data = csv.reader(out.open(encoding="utf-8", newline="")) + assert len(data) == 3 + sense_ids = [row[header.index("sense_id")] for row in data] + assert sense_ids == ["opon_1a", "opon_1b", "opon_2"] + + +def test_export_langs_option_restricts_and_orders(tmp_path: Path) -> None: + source = CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift" + + reordered = tmp_path / "reordered.csv" + assert main(["export", str(source), "-o", str(reordered), "--langs", "id,en"]) == 0 + header = next(csv.reader(reordered.open(encoding="utf-8", newline=""))) + assert header == [ + "entry_id", + "entry_guid", + "sense_id", + "lexeme", + "pos", + "gloss_id", + "definition_id", + "gloss_en", + "definition_en", + ] + + restricted = tmp_path / "restricted.csv" + assert main(["export", str(source), "-o", str(restricted), "--langs", "en"]) == 0 + header = next(csv.reader(restricted.open(encoding="utf-8", newline=""))) + assert header == [ + "entry_id", + "entry_guid", + "sense_id", + "lexeme", + "pos", + "gloss_en", + "definition_en", + ] + + +def test_export_tsv(tmp_path: Path) -> None: + source = CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift" + out = tmp_path / "out.tsv" + assert main(["export", str(source), "-o", str(out), "--tsv", "--langs", "en"]) == 0 + first_line = out.read_text(encoding="utf-8").splitlines()[0] + assert first_line == "entry_id\tentry_guid\tsense_id\tlexeme\tpos\tgloss_en\tdefinition_en" + + +def test_export_to_stdout(capsys: pytest.CaptureFixture[str]) -> None: + source = CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift" + assert main(["export", str(source), "--langs", "en"]) == 0 + out = capsys.readouterr().out + assert "entry_id" in out + assert "abat" in out + + +def test_export_filename_with_space(tmp_path: Path) -> None: + path = CORPUS_DIR / "spec-examples" / "0.13" / "fields any order.lift" + out = tmp_path / "out.csv" + assert main(["export", str(path), "-o", str(out)]) == 0 + assert out.is_file() From f59ee8aea5b8ebe5e2b578b8aa6c3491c99d5e80 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 11:26:31 -0400 Subject: [PATCH 14/42] CI: split into build.yml and test.yml Least-privilege workflow permissions (contents: read); one action per step, every step named; lint and format checks as separate steps; build matrix on the oldest and newest supported Pythons (3.11, 3.14). Supply-chain pinning: actions by commit SHA (checkout v4.3.1, setup-python v5.6.0), build/twine by version (1.5.0 / 6.2.0). Co-Authored-By: Claude Fable 5 --- .github/workflows/build.yml | 30 ++++++++++++++++++++++ .github/workflows/ci.yml | 51 ------------------------------------- .github/workflows/test.yml | 38 +++++++++++++++++++++++++++ 3 files changed, 68 insertions(+), 51 deletions(-) create mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..7855d29 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,30 @@ +name: Build + +on: + push: + branches: [main] + pull_request: + +permissions: + contents: read + +jobs: + build: + strategy: + matrix: + # The oldest and newest supported Python. + python-version: ["3.11", "3.14"] + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - name: Set up Python + uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + with: + python-version: ${{ matrix.python-version }} + - name: Install build tools + run: python -m pip install build==1.5.0 twine==6.2.0 + - name: Build distribution + run: python -m build + - name: Check distribution metadata + run: python -m twine check dist/* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 1ad36c6..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,51 +0,0 @@ -# DORMANT: this repo has no remote yet (Phase 3 is local-only, decision D8). -# The workflow is authored so that pushing to a remote later activates CI with -# no restructuring. Until then, the equivalent local command is: -# python scripts/check.py -name: CI - -on: - push: - branches: [main] - pull_request: - -jobs: - test: - strategy: - fail-fast: false - matrix: - python-version: ["3.11", "3.12", "3.13", "3.14"] - os: [ubuntu-latest, windows-latest] - include: - # macOS as a canary on the latest Python only. - - python-version: "3.14" - os: macos-latest - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install - run: python -m pip install -e .[dev] - - name: Lint - run: | - python -m ruff check . - python -m ruff format --check . - - name: Type-check - run: python -m mypy - - name: Test - run: python -m pytest --cov=sil_lift --cov-report=term-missing - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.12" - - name: Build distribution - run: | - python -m pip install build twine - python -m build - python -m twine check dist/* diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b26d8c8 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,38 @@ +name: Test + +on: + push: + branches: [main] + pull_request: + +permissions: + contents: read + +jobs: + test: + strategy: + matrix: + python-version: ["3.11", "3.12", "3.13", "3.14"] + os: [ubuntu-latest, windows-latest] + include: + # macOS as a canary on the latest Python only. + - python-version: "3.14" + os: macos-latest + runs-on: ${{ matrix.os }} + steps: + - name: Check out + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - name: Set up Python + uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + with: + python-version: ${{ matrix.python-version }} + - name: Install + run: python -m pip install -e .[dev] + - name: Lint + run: python -m ruff check . + - name: Check formatting + run: python -m ruff format --check . + - name: Type-check + run: python -m mypy + - name: Test + run: python -m pytest --cov=sil_lift --cov-report=term-missing From 708f711b365da2dc08f6d95144a58dccad42c881 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 11:40:11 -0400 Subject: [PATCH 15/42] Pin ruff and mypy exactly in the dev extra; tidy pyproject New ruff/mypy releases change behavior and break CI on innocent code, so they are pinned and bumped deliberately; the test tools keep floating floors so a breaking pytest/hypothesis/lxml release surfaces early. Also: lxml-stubs floor (>=0.5), alphabetized dev extra / docs extra / ruff select, condensed comments. Co-Authored-By: Claude Fable 5 --- pyproject.toml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ff9ece4..a9962b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,17 +44,18 @@ sil-lift = "sil_lift._cli:main" # `pip install sil-lift[cli]` stays the documented install for CLI users. cli = [] dev = [ + "hypothesis>=6", + "lxml-stubs>=0.5", "pytest>=8", "pytest-cov>=5", - "hypothesis>=6", - "mypy>=1.14", - "ruff>=0.8", - "lxml-stubs", + # Pin mypy, ruff: new releases change behavior and break CI; bump deliberately. + "mypy==2.3.0", + "ruff==0.15.21", ] docs = [ "mkdocs-material>=9", - "mkdocstrings[python]>=0.27", "mkdocs-static-i18n>=1.2", + "mkdocstrings[python]>=0.27", ] [tool.hatch.version] @@ -65,15 +66,15 @@ packages = ["src/sil_lift"] [tool.ruff] line-length = 100 -src = ["src", "tests", "scripts"] +src = ["scripts", "src", "tests"] [tool.ruff.lint] -select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM", "RUF"] +select = ["B", "C4", "E", "F", "I", "RUF", "SIM", "UP", "W"] [tool.mypy] strict = true python_version = "3.11" -files = ["src", "tests", "scripts"] +files = ["scripts", "src", "tests"] [tool.pytest.ini_options] testpaths = ["tests"] From 8281ecb530416da5f2119470007405c98d489d3d Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 12:00:19 -0400 Subject: [PATCH 16/42] Add .editorconfig with byte-exact carve-outs; restyle YAML configs .editorconfig: UTF-8/LF/final-newline defaults, 2-space YAML/TOML, and a do-nothing carve-out for corpus fixtures and vendored schemas (mirrors .gitattributes) so editors can't corrupt byte-exact test payloads. mkdocs.yml/crowdin.yml: dedented sequence style; plugin order now i18n first, search last (indexes localized content) - the arrangement mkdocs-static-i18n recommends. Co-Authored-By: Claude Fable 5 --- .editorconfig | 25 +++++++++++++++++++++++++ crowdin.yml | 4 ++-- mkdocs.yml | 52 +++++++++++++++++++++++++-------------------------- 3 files changed, 53 insertions(+), 28 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..56042d8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,25 @@ +# https://editorconfig.org — VS Code needs the EditorConfig extension; +# JetBrains/Vim honor this natively. Python style itself is owned by ruff. +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +# Trailing whitespace is meaningful in Markdown (hard line breaks). +trim_trailing_whitespace = false + +[*.{toml,yml,yaml}] +indent_size = 2 +indent_style = space + +# Byte-exact payloads (mirrors the .gitattributes exemptions): editors must +# never "fix" these — the fidelity tests depend on the exact bytes. +[{src/sil_lift/schemas/**,tests/corpus/**,tests/tools/xslt/**}] +charset = unset +end_of_line = unset +insert_final_newline = unset +trim_trailing_whitespace = unset diff --git a/crowdin.yml b/crowdin.yml index b5efd21..1dbcadb 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -4,5 +4,5 @@ # (docs//) are machine-managed by Crowdin sync and must never be # hand-edited in-repo. files: - - source: /docs/en/**/*.md - translation: /docs/%two_letters_code%/**/%original_file_name% +- source: /docs/en/**/*.md + translation: /docs/%two_letters_code%/**/%original_file_name% diff --git a/mkdocs.yml b/mkdocs.yml index d341dbf..795feca 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -6,33 +6,33 @@ docs_dir: docs theme: name: material features: - - navigation.sections - - content.code.copy + - content.code.copy + - navigation.sections plugins: - - search - - i18n: - docs_structure: folder - fallback_to_default: true - languages: - - locale: en - name: English - default: true - build: true - - mkdocstrings: - handlers: - python: - paths: [src] +- i18n: + docs_structure: folder + fallback_to_default: true + languages: + - locale: en + name: English + default: true + build: true +- mkdocstrings: + handlers: + python: + paths: [ src ] +- search nav: - - Home: index.md - - Guides: - - Read, edit, write: guides/read-edit-write.md - - Validate: guides/validate.md - - Large files: guides/large-files.md - - Ranges and media: guides/folder-media.md - - Command line: guides/cli.md - - "Worked example: bulk-editing glosses": guides/bulk-edit-glosses.md - - Fidelity guarantees: fidelity.md - - Differences from the C# libraries: csharp-differences.md - - API reference: reference.md +- Home: index.md +- Guides: + - Read, edit, write: guides/read-edit-write.md + - Validate: guides/validate.md + - Large files: guides/large-files.md + - Ranges and media: guides/folder-media.md + - Command line: guides/cli.md + - "Worked example: bulk-editing glosses": guides/bulk-edit-glosses.md +- Fidelity guarantees: fidelity.md +- Differences from the C# libraries: csharp-differences.md +- API reference: reference.md From 45291473318006ad0e06285d7ef115b9d3fac2c3 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 14:57:01 -0400 Subject: [PATCH 17/42] Docs and editor-config batch Docs tree: long-line prose (Crowdin-friendly, per new editorconfig rule), underscore emphasis, realigned tables; index.md guide list dropped (nav covers it). CONTRIBUTING.md added (dev setup, byte-exact corpus rules, mkdocs workflow) with a README pointer. mkdocs.yml: footer social links. .editorconfig: md indent groups, docs-tree overrides (4-space list indent for python-markdown, no wrap guidance), plus .vscode markdown ruler. Root markdown wrapped at 80. Code fences verified byte-identical; strict docs build and full check suite green. Co-Authored-By: Claude Fable 5 --- .editorconfig | 14 ++++-- CHANGELOG.md | 55 ++++++++++---------- CONTRIBUTING.md | 78 +++++++++++++++++++++++++++++ README.md | 18 ++++--- docs/en/csharp-differences.md | 76 +++++++++------------------- docs/en/fidelity.md | 42 ++++------------ docs/en/guides/bulk-edit-glosses.md | 37 +++----------- docs/en/guides/cli.md | 6 +-- docs/en/guides/folder-media.md | 17 ++----- docs/en/guides/large-files.md | 15 ++---- docs/en/guides/read-edit-write.md | 21 ++------ docs/en/guides/validate.md | 27 ++++------ docs/en/index.md | 17 +------ docs/en/reference.md | 3 +- mkdocs.yml | 18 +++++++ 15 files changed, 212 insertions(+), 232 deletions(-) create mode 100644 CONTRIBUTING.md diff --git a/.editorconfig b/.editorconfig index 56042d8..ac065ba 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,13 +8,21 @@ end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true +[*.{md,toml,yml,yaml}] +indent_size = 2 +indent_style = space + [*.md] +max_line_length = 80 # Trailing whitespace is meaningful in Markdown (hard line breaks). trim_trailing_whitespace = false -[*.{toml,yml,yaml}] -indent_size = 2 -indent_style = space +# MkDocs source tree. +[docs/**.md] +# List sub-items require 4-space indentation. +indent_size = 4 +# Hard-wrapped prose gets in the way of Crowdin translation. +max_line_length = unset # Byte-exact payloads (mirrors the .gitattributes exemptions): editors must # never "fix" these — the fidelity tests depend on the exact bytes. diff --git a/CHANGELOG.md b/CHANGELOG.md index 316e55e..620fe89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -During 0.x, minor releases may contain breaking changes. +and this project adheres to +[Semantic Versioning](https://semver.org/spec/v2.0.0.html). During 0.x, minor +releases may contain breaking changes. ## [Unreleased] @@ -16,44 +17,42 @@ During 0.x, minor releases may contain breaking changes. `sil_lift.load()` / `Lexicon.load()` full-document reader with per-node `Extras` residue capture, LIFT-version guard. - M2: `Lexicon.save()` writer with byte-fidelity passthrough — unchanged - documents and untouched entries are written byte-identically; touched - entries re-serialize canonically with all out-of-schema content preserved. - Fidelity contract documented in `docs/en/fidelity.md` and enforced by - corpus byte-identity tests plus Hypothesis round-trip properties. + documents and untouched entries are written byte-identically; touched entries + re-serialize canonically with all out-of-schema content preserved. Fidelity + contract documented in `docs/en/fidelity.md` and enforced by corpus + byte-identity tests plus Hypothesis round-trip properties. - CLI: `sil-lift export` — one row per leaf sense (subsenses flattened) to CSV/TSV, streaming; analysis languages auto-detected or set with `--langs`. - Docs: worked example "bulk-editing glosses" (complete runnable script, - verified output) and a "Differences from the C# libraries" page - summarizing where sil-lift deviates from SIL.Lift/LiftSorter/Chorus - behavior and why. + verified output) and a "Differences from the C# libraries" page summarizing + where sil-lift deviates from SIL.Lift/LiftSorter/Chorus behavior and why. - M7: the `sil-lift` CLI (`validate` / `stats` / `sort` / `check-media`, stdlib-only, installed via the `[cli]` extra) and the documentation site (task-oriented guides, fidelity contract, mkdocstrings API reference, mkdocs-static-i18n wired for future localization). -- M6: streaming — `open_reader()` (lazy entry iterator with the parsed - header available up front; iterparse cleanup internal) and `open_writer()` - (header + one canonical chunk per entry; byte-identical to - `canonical_document` output by construction), both over the same `Entry` - types as full-document mode and O(one entry) in memory (verified on a - ~340 MB generated file). +- M6: streaming — `open_reader()` (lazy entry iterator with the parsed header + available up front; iterparse cleanup internal) and `open_writer()` (header + + one canonical chunk per entry; byte-identical to `canonical_document` output + by construction), both over the same `Entry` types as full-document mode and + O(one entry) in memory (verified on a ~340 MB generated file). - M5: canonical sort — `Lexicon.sort()` / `RangesFile.sort()` (entries by - case-folded guid/id, ranges/range-elements by id, field definitions by - tag; LiftSorter-informed, locale-independent) and `sil_lift.canonicalize()` - for fully re-serialized diff-ready output. Sorting composes with the - passthrough: sort + save moves untouched entries' bytes without rewriting - them. Text whitespace is never normalized (unlike `canonicalizeLift.xsl`). + case-folded guid/id, ranges/range-elements by id, field definitions by tag; + LiftSorter-informed, locale-independent) and `sil_lift.canonicalize()` for + fully re-serialized diff-ready output. Sorting composes with the passthrough: + sort + save moves untouched entries' bytes without rewriting them. Text + whitespace is never normalized (unlike `canonicalizeLift.xsl`). - M4: validation — `validate_file()` / `iter_problems()` / `Lexicon.iter_problems()` returning an addressable `Problem` stream (file/entry/line). RELAX NG layer with two documented deviations from raw - libxml2 (href masking with `uri-not-rfc` warnings; tag-grouped validation - to sidestep libxml2's interleave limitation); authored ranges schema over + libxml2 (href masking with `uri-not-rfc` warnings; tag-grouped validation to + sidestep libxml2's interleave limitation); authored ranges schema over companions; semantic checks: duplicate-guid, dangling-ref, range-parent, - undefined-range-value (NFC-normalized), duplicate-form-lang, - missing-media. Hand-authored negative corpus under `tests/corpus/negative/`. + undefined-range-value (NFC-normalized), duplicate-form-lang, missing-media. + Hand-authored negative corpus under `tests/corpus/negative/`. - M3: LIFT-folder handling — `RangesFile` (standalone `.lift-ranges` documents, same fidelity guarantees), automatic companion discovery/tracking on load (`Lexicon.ranges_files`), `save()` writes - companions together, `all_ranges()` merged view, `media_refs()` / - `missing_media()` helpers; authored `schemas/lift-ranges-0.13.rng` — the - first schema for standalone ranges documents (spec-faithful, built from - the vendored grammar's own defines). + companions together, `all_ranges()` + merged view, `media_refs()` / `missing_media()` helpers; authored + `schemas/lift-ranges-0.13.rng` — the first schema for standalone ranges + documents (spec-faithful, built from the vendored grammar's own defines). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..39bbbd4 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,78 @@ +# Contributing to sil-lift + +## Development setup + +Python 3.11+ (the support floor — developing on it catches accidental use of +newer features): + +``` +python -m venv .venv +.venv/Scripts/activate # Windows; on POSIX: source .venv/bin/activate +pip install -e .[dev] +``` + +Run everything CI runs (lint, format check, type-check, and tests) with one +command: + +``` +python scripts/check.py +``` + +All four must be green before a commit. `ruff format .` fixes formatting; the +rest you fix by hand. + +## The test corpus is byte-exact — never hand-edit it + +The fidelity tests assert that saving writes back the **exact bytes** of +`tests/corpus/` fixtures. Consequences: + +- Never reformat, re-indent, or "fix" anything under `src/sil_lift/schemas/`, + `tests/corpus/`, or `tests/tools/xslt/`. Even a trailing-newline tweak breaks + the suite. `.gitattributes` and `.editorconfig` carry carve-outs so git and + editors leave these files alone — don't remove them. +- Adding a fixture requires an entry in `tests/corpus/PROVENANCE.md`: source + URL, commit SHA, fetch date, license. Hand-authored fixtures (e.g. under + `tests/corpus/negative/`) carry an XML comment documenting the defect and the + expected validator finding. +- The migrated `spec-examples/0.13/` files are generated by + `tests/tools/migrate_corpus.py`; regenerate rather than edit. + +## Code conventions + +- The public API is exactly what `sil_lift/__init__.py` re-exports + (`__all__`-sorted); implementation modules are underscore-private. No `lxml` + type may appear in any public annotation — a test enforces this. +- Fully typed, `mypy --strict`. ruff and mypy are **pinned exactly** in the + `dev` extra because new releases change lint/format/inference behavior; bump + them deliberately in their own commit, fixing whatever they newly flag. +- Record user-visible changes in `CHANGELOG.md` (Keep a Changelog format, under + `[Unreleased]`). +- The large-file streaming test runs a quick 40k-entry variant by default; set + `SIL_LIFT_PERF=1` for the multi-hundred-MB version. + +## Working on the documentation + +The docs are mkdocs-material; **`docs/en/` is the only tree humans edit** +(translated trees, once they exist, are machine-managed by Crowdin sync). + +``` +pip install -e .[docs] +mkdocs serve # live preview at http://127.0.0.1:8000, auto-reloads +mkdocs build --strict # the docs test: broken links/nav fail the build +``` + +`mkdocs build --strict` must pass before committing docs changes. Notes: + +- New pages need a `nav:` entry in `mkdocs.yml` and usually a link from + `docs/en/index.md`. +- The API reference page is generated by mkdocstrings from docstrings + (`paths: [src]` — no install needed, but the docstrings are the source). +- Plugin order in `mkdocs.yml` matters: `i18n` first, `search` last. +- Code samples in guides should be real: run them before pasting output. + +## Fidelity contract + +Before touching the reader/writer, read `docs/en/fidelity.md` — it is the +library's core promise, and the byte-identity, Hypothesis, and semantic +round-trip tests exist to keep it true. A change that makes an untouched entry +re-serialize is a bug even if every model value survives. diff --git a/README.md b/README.md index a8f51d2..dd5bf94 100644 --- a/README.md +++ b/README.md @@ -13,19 +13,19 @@ for entry in lex.entries: ... entry = lex.find(id="hoofd_a1b2") entry.senses[0].definition["en"] = "head (anatomy)" -lex.save() # untouched entries byte-identical +lex.save() # untouched entries byte-identical ``` **Status: pre-release, under active development.** The API is not yet stable. Requires Python 3.11+; the only runtime dependency is lxml. Install `sil-lift[cli]` for the `sil-lift` command (`validate` / `stats` / `sort` / -`check-media`). Documentation lives in `docs/en/` (mkdocs-material; build -with `pip install -e .[docs] && mkdocs build`). +`check-media`). Documentation lives in `docs/en/` (mkdocs-material; build with +`pip install -e .[docs] && mkdocs build`). ## Fidelity guarantees -`sil-lift` treats LIFT as an *interchange* format: it never drops what it does +`sil-lift` treats LIFT as an _interchange_ format: it never drops what it does not understand. - Saving an unchanged document is **byte-identical** (no reformatting, ever). @@ -43,8 +43,8 @@ byte-identity tests and property-based (Hypothesis) round-trip tests. - LIFT **0.13 only** — the de facto standard version. Other versions are rejected with a clear error; one-off migration of legacy files is possible - with the XSLTs in the [lift-standard](https://github.com/sillsdev/lift-standard) - repository. + with the XSLTs in the + [lift-standard](https://github.com/sillsdev/lift-standard) repository. - No merging (see [Chorus](https://github.com/sillsdev/chorus)) and no LDML interpretation (writing-system files are carried, not parsed). @@ -54,6 +54,12 @@ byte-identity tests and property-based (Hypothesis) round-trip tests. changes; see `CHANGELOG.md`. The public API is exactly what `sil_lift` re-exports at the top level. +## Contributing + +See [CONTRIBUTING.md](CONTRIBUTING.md) — in short: `pip install -e .[dev]`, +then `python scripts/check.py` must be green. Mind the byte-exact test +corpus rules before touching anything under `tests/corpus/`. + ## License [MIT](LICENSE) diff --git a/docs/en/csharp-differences.md b/docs/en/csharp-differences.md index 2a616a4..2a4fc99 100644 --- a/docs/en/csharp-differences.md +++ b/docs/en/csharp-differences.md @@ -1,82 +1,52 @@ # Differences from the C# libraries -sil-lift is loosely analogous to SIL's C# LIFT tooling — chiefly `SIL.Lift` -in [libpalaso](https://github.com/sillsdev/libpalaso) (parser, validator, -migrator, `LiftSorter`) and the LIFT handlers in -[Chorus](https://github.com/sillsdev/chorus). It is a fresh implementation, -not a port. This page summarizes where behavior deliberately differs. +sil-lift is loosely analogous to SIL's C# LIFT tooling — chiefly `SIL.Lift` in [libpalaso](https://github.com/sillsdev/libpalaso) (parser, validator, migrator, `LiftSorter`) and the LIFT handlers in [Chorus](https://github.com/sillsdev/chorus). It is a fresh implementation, not a port. This page summarizes where behavior deliberately differs. ## Scope -| Capability | C# libraries | sil-lift | -|---|---|---| -| LIFT versions | 0.10–0.13 (migration built in) | **0.13 only**; older versions rejected with a clear error | -| Version migration | `Migrator` (XSLT chain) | none — use the XSLTs in lift-standard for one-off upgrades | -| 3-way merge / sync | Chorus | out of scope | -| Validation | RELAX NG only (`Validator`) | RELAX NG + ranges schema + semantic checks | -| Streaming | internal entry-granularity parsing | public `open_reader` / `open_writer` API | +| Capability | C# libraries | sil-lift | +| ------------------ | ---------------------------------- | ---------------------------------------------------------- | +| LIFT versions | 0.10–0.13 (migration built in) | **0.13 only**; older versions rejected with a clear error | +| Version migration | `Migrator` (XSLT chain) | none — use the XSLTs in lift-standard for one-off upgrades | +| 3-way merge / sync | Chorus | out of scope | +| Validation | RELAX NG only (`Validator`) | RELAX NG + ranges schema + semantic checks | +| Streaming | internal entry-granularity parsing | public `open_reader` / `open_writer` API | ## API shape -`SIL.Lift`'s parser is callback-driven (`ILexiconMerger`): it pushes parse -events at a consumer. sil-lift instead returns a plain object graph — typed -dataclasses for every LIFT element — because Python scripters want objects, -not callbacks. The streaming API yields the *same* `Entry` type, so there is -no capability-reduced twin model. +`SIL.Lift`'s parser is callback-driven (`ILexiconMerger`): it pushes parse events at a consumer. sil-lift instead returns a plain object graph — typed dataclasses for every LIFT element — because Python scripters want objects, not callbacks. The streaming API yields the _same_ `Entry` type, so there is no capability-reduced twin model. ## Round-trip fidelity -The strongest deliberate difference. Saving with `SIL.Lift` re-serializes the -whole document. sil-lift guarantees: +The strongest deliberate difference. Saving with `SIL.Lift` re-serializes the whole document. sil-lift guarantees: - an unchanged document saves **byte-identically**, and -- untouched entries keep their exact source bytes even when other entries - change (Chorus-grade byte chunking, applied automatically). +- untouched entries keep their exact source bytes even when other entries change (Chorus-grade byte chunking, applied automatically). See [Fidelity guarantees](fidelity.md). ## Validation -The C# `Validator` runs one RELAX NG pass and reports the first errors as -strings. sil-lift reports a structured, entry/line-addressed `Problem` -stream, and its schema layer knowingly diverges in three places: +The C# `Validator` runs one RELAX NG pass and reports the first errors as strings. sil-lift reports a structured, entry/line-addressed `Problem` stream, and its schema layer knowingly diverges in three places: -- **Invalid URIs are warnings, not errors.** The C# RELAX NG engine never - enforced the `anyURI` datatype, so FLEx has been writing `file://C:/...` - hrefs into real lexicons for years. Rejecting those files would flag - virtually every FLEx export. -- **Schematron rules are enforced** (as semantic checks): duplicate form - languages and similar co-constraints in the LIFT grammar were silently - ignored by both C# and raw lxml validation. -- **Cross-file comparisons are Unicode-normalized**, because FLEx writes the - `.lift` in NFC and the companion `.lift-ranges` in NFD. +- **Invalid URIs are warnings, not errors.** The C# RELAX NG engine never enforced the `anyURI` datatype, so FLEx has been writing `file://C:/...` hrefs into real lexicons for years. Rejecting those files would flag virtually every FLEx export. +- **Schematron rules are enforced** (as semantic checks): duplicate form languages and similar co-constraints in the LIFT grammar were silently ignored by both C# and raw lxml validation. +- **Cross-file comparisons are Unicode-normalized**, because FLEx writes the `.lift` in NFC and the companion `.lift-ranges` in NFD. -sil-lift also validates standalone `.lift-ranges` files against a schema this -project authored — no such schema (or check) exists in the C# world. +sil-lift also validates standalone `.lift-ranges` files against a schema this project authored — no such schema (or check) exists in the C# world. ## Canonical sorting -`Lexicon.sort()` mirrors `LiftSorter`'s core rules (entries by -case-insensitive guid; ranges and range-elements by id; header field -definitions by tag; senses kept in file order; whitespace inside `` -never touched), with three differences: +`Lexicon.sort()` mirrors `LiftSorter`'s core rules (entries by case-insensitive guid; ranges and range-elements by id; header field definitions by tag; senses kept in file order; whitespace inside `` never touched), with three differences: -- entries without a guid sort deterministically by id (`LiftSorter` assumes - a guid is present); -- ordering is locale-independent (plain case-folded code points, not - .NET invariant-culture collation); -- same-type lists such as notes, relations, and forms keep their document - order rather than being re-sorted by key — grouping is already - deterministic, and reordering them only adds diff noise. +- entries without a guid sort deterministically by id (`LiftSorter` assumes a guid is present); +- ordering is locale-independent (plain case-folded code points, not .NET invariant-culture collation); +- same-type lists such as notes, relations, and forms keep their document order rather than being re-sorted by key — grouping is already deterministic, and reordering them only adds diff noise. -The spec repo's `canonicalizeLift.xsl` is not used at all: it collapses -whitespace inside lexical text (destructive) and its generated ids differ on -every run. +The spec repo's `canonicalizeLift.xsl` is not used at all: it collapses whitespace inside lexical text (destructive) and its generated ids differ on every run. ## Not carried over - WeSay-specific conveniences (dashboard/config handling around LIFT files). -- `SynchronicMerger` (Chorus update merging) — the byte-chunking idea lives - on in the fidelity layer, the merging does not. -- LDML writing-system parsing: files in `WritingSystems/` are treated as - opaque folder content. +- `SynchronicMerger` (Chorus update merging) — the byte-chunking idea lives on in the fidelity layer, the merging does not. +- LDML writing-system parsing: files in `WritingSystems/` are treated as opaque folder content. diff --git a/docs/en/fidelity.md b/docs/en/fidelity.md index ffaf91e..7649713 100644 --- a/docs/en/fidelity.md +++ b/docs/en/fidelity.md @@ -1,26 +1,16 @@ # Fidelity guarantees -LIFT is an *interchange* format: the cardinal rule is **never drop what you do -not understand**. `sil-lift`'s contract, verified by the test suite on every -run (corpus files plus property-based generation): +LIFT is an _interchange_ format: the cardinal rule is **never drop what you do not understand**. `sil-lift`'s contract, verified by the test suite on every run (corpus files plus property-based generation): ## Reading -Any well-formed LIFT 0.13 document loads — schema-invalid content included. -Whatever the model does not define is carried in the nearest node's opaque -`Extras` bucket: unknown attributes and elements, XML comments and processing -instructions, stray text, and malformed typed attributes (a bad date stays as -the original string in `Extras`; the typed field is `None`). +Any well-formed LIFT 0.13 document loads — schema-invalid content included. Whatever the model does not define is carried in the nearest node's opaque `Extras` bucket: unknown attributes and elements, XML comments and processing instructions, stray text, and malformed typed attributes (a bad date stays as the original string in `Extras`; the typed field is `None`). ## Saving an unchanged document -`load()` → `save()` with no edits writes **byte-identical output** — no -reformatting, no re-escaping, no reordering, byte-order marks and XML -declarations included. There is currently no normalization list: identity is -exact. +`load()` → `save()` with no edits writes **byte-identical output** — no reformatting, no re-escaping, no reordering, byte-order marks and XML declarations included. There is currently no normalization list: identity is exact. -Exceptions (the writer falls back to full canonical serialization, which is -semantically complete but not byte-preserving): +Exceptions (the writer falls back to full canonical serialization, which is semantically complete but not byte-preserving): - the source encoding is not ASCII-compatible (not UTF-8/US-ASCII), or - the source contains a DOCTYPE, or @@ -28,25 +18,11 @@ semantically complete but not byte-preserving): ## Saving an edited document -- **Untouched entries are emitted verbatim from their original bytes.** - An entry counts as touched if any part of its model object changed since - parse (detected by canonical-serialization snapshot, not a dirty flag). -- **Touched entries are re-serialized canonically and completely**: UTF-8, - 2-space indentation *outside* mixed content (whitespace inside `` and - `` is never altered), a documented child grouping per element - (e.g. entry: lexical-unit, citation, pronunciations, variants, senses, - notes, relations, etymologies, annotations, traits, fields), fixed - attribute order, dates in ISO-8601 (`Z` for UTC). All residue is re-emitted; - its position is restored to the original child index, clamped to the new - child list (an approximation — exact byte positions are only guaranteed for - untouched entries). -- Adding, removing, or reordering entries re-serializes the document - structure but still emits every unchanged entry's bytes verbatim. +- **Untouched entries are emitted verbatim from their original bytes.** An entry counts as touched if any part of its model object changed since parse (detected by canonical-serialization snapshot, not a dirty flag). +- **Touched entries are re-serialized canonically and completely**: UTF-8, 2-space indentation _outside_ mixed content (whitespace inside `` and `` is never altered), a documented child grouping per element (e.g. entry: lexical-unit, citation, pronunciations, variants, senses, notes, relations, etymologies, annotations, traits, fields), fixed attribute order, dates in ISO-8601 (`Z` for UTC). All residue is re-emitted; its position is restored to the original child index, clamped to the new child list (an approximation — exact byte positions are only guaranteed for untouched entries). +- Adding, removing, or reordering entries re-serializes the document structure but still emits every unchanged entry's bytes verbatim. ## Known approximations (touched nodes only) -- Comments *inside* a `` run are preserved but hoisted next to the run, - not at their exact character offset. -- Cross-type child order within an edited element is normalized to the - canonical grouping (the LIFT schema's `interleave` makes this order - semantically insignificant). +- Comments _inside_ a `` run are preserved but hoisted next to the run, not at their exact character offset. +- Cross-type child order within an edited element is normalized to the canonical grouping (the LIFT schema's `interleave` makes this order semantically insignificant). diff --git a/docs/en/guides/bulk-edit-glosses.md b/docs/en/guides/bulk-edit-glosses.md index 24464a6..e00876c 100644 --- a/docs/en/guides/bulk-edit-glosses.md +++ b/docs/en/guides/bulk-edit-glosses.md @@ -1,9 +1,6 @@ # Worked example: bulk-editing glosses -A common maintenance task: normalize spelling across every English gloss in a -lexicon (British → American, or vice versa) without disturbing anything else -in the file. This walks through one script that loads, edits, validates, and -saves — showing the editing API and the fidelity guarantee working together. +A common maintenance task: normalize spelling across every English gloss in a lexicon (British → American, or vice versa) without disturbing anything else in the file. This walks through one script that loads, edits, validates, and saves — showing the editing API and the fidelity guarantee working together. ## The script @@ -50,20 +47,11 @@ print(f"edited {edited_glosses} gloss(es) across {len(touched_entries)} entry(ie A few things worth noting: -- `Sense.subsenses` is itself a `list[Sense]`, so `iter_senses` recurses into - it — a bulk edit that only walked `entry.senses` would silently skip any - gloss nested under a subsense. -- `gloss.text` is a `Text`, not a plain string: `str(gloss.text)` flattens it - for matching, and the replacement is written back with - `sil_lift.Text([new])` rather than mutating the string in place. -- Validating in memory (`lex.iter_problems()`) serializes the edited state - first, so it correctly reflects the edit before anything is written to - disk. Aborting on any `"error"`-level `Problem` — warnings are left for the - caller to judge — means a bad edit never reaches `save()`. - -Glosses aren't the only thing worth touching this way. The same -`Multitext` mapping surface applies to definitions and every other -multilingual field on an entry or sense: +- `Sense.subsenses` is itself a `list[Sense]`, so `iter_senses` recurses into it — a bulk edit that only walked `entry.senses` would silently skip any gloss nested under a subsense. +- `gloss.text` is a `Text`, not a plain string: `str(gloss.text)` flattens it for matching, and the replacement is written back with `sil_lift.Text([new])` rather than mutating the string in place. +- Validating in memory (`lex.iter_problems()`) serializes the edited state first, so it correctly reflects the edit before anything is written to disk. Aborting on any `"error"`-level `Problem` — warnings are left for the caller to judge — means a bad edit never reaches `save()`. + +Glosses aren't the only thing worth touching this way. The same `Multitext` mapping surface applies to definitions and every other multilingual field on an entry or sense: ```python sense.definition["en"] = "the color of a thing" @@ -71,8 +59,7 @@ sense.definition["en"] = "the color of a thing" ## Running it -Run against a small lexicon with a gloss and a subsense gloss that both say -"colour": +Run against a small lexicon with a gloss and a subsense gloss that both say "colour": ``` edited 2 gloss(es) across 1 entry(ies) @@ -80,12 +67,4 @@ edited 2 gloss(es) across 1 entry(ies) ## The fidelity payoff -The guarantee is per *entry*: an entry whose model didn't change comes back -out **byte-identical** to how it was read in, and only the entries you -actually touched are re-serialized. In the run above, one entry had glosses -edited — every other entry in the file kept its exact bytes. (Note the -granularity: editing any part of an entry re-serializes that whole entry, -including its untouched sibling senses.) Editing one gloss in a -50,000-entry lexicon therefore produces a diff touching one entry, not a -reformatted file. See [Fidelity guarantees](../fidelity.md) for the precise -contract. +The guarantee is per _entry_: an entry whose model didn't change comes back out **byte-identical** to how it was read in, and only the entries you actually touched are re-serialized. In the run above, one entry had glosses edited — every other entry in the file kept its exact bytes. (Note the granularity: editing any part of an entry re-serializes that whole entry, including its untouched sibling senses.) Editing one gloss in a 50,000-entry lexicon therefore produces a diff touching one entry, not a reformatted file. See [Fidelity guarantees](../fidelity.md) for the precise contract. diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md index 53a07c7..c1cad14 100644 --- a/docs/en/guides/cli.md +++ b/docs/en/guides/cli.md @@ -1,7 +1,6 @@ # The command line -`pip install sil-lift[cli]` provides the `sil-lift` command — a small -LiftTools-style utility (and a worked example of the library API). +`pip install sil-lift[cli]` provides the `sil-lift` command — a small LiftTools-style utility (and a worked example of the library API). ``` sil-lift validate PATH all problems, entry/line-addressed; exit 1 on errors @@ -28,5 +27,4 @@ senses: 4238 $ sil-lift export dictionary.lift --langs en,fr -o dictionary.csv ``` -Exit codes: `0` success (warnings allowed), `1` findings (validation errors / -missing media), `2` unreadable input. +Exit codes: `0` success (warnings allowed), `1` findings (validation errors / missing media), `2` unreadable input. diff --git a/docs/en/guides/folder-media.md b/docs/en/guides/folder-media.md index 4b009c1..ae894b3 100644 --- a/docs/en/guides/folder-media.md +++ b/docs/en/guides/folder-media.md @@ -1,7 +1,6 @@ # The LIFT folder: ranges and media -A LIFT lexicon is usually a *folder*: the `.lift` file, one or more -`.lift-ranges` companions, and `audio/` / `pictures/` media. +A LIFT lexicon is usually a _folder_: the `.lift` file, one or more `.lift-ranges` companions, and `audio/` / `pictures/` media. ## Ranges @@ -13,14 +12,9 @@ lex.all_ranges() # merged {id: Range} view lex.all_ranges()["grammatical-info"].elements ``` -Companion discovery handles the real world: a `range/@href` that points at an -existing file is used; FLEx's dangling absolute `file://C:/...` hrefs fall -back to the href's basename next to the `.lift`; and the conventional -`.lift-ranges` sibling is picked up even when nothing references it. +Companion discovery handles the real world: a `range/@href` that points at an existing file is used; FLEx's dangling absolute `file://C:/...` hrefs fall back to the href's basename next to the `.lift`; and the conventional `.lift-ranges` sibling is picked up even when nothing references it. -`lex.save()` writes the `.lift` and every tracked companion together. Edits -to a `RangesFile` save back to *its* file; untouched ranges keep their exact -bytes. Standalone use: +`lex.save()` writes the `.lift` and every tracked companion together. Edits to a `RangesFile` save back to _its_ file; untouched ranges keep their exact bytes. Standalone use: ```python ranges = sil_lift.RangesFile.load("dictionary.lift-ranges") @@ -40,7 +34,4 @@ for ref in lex.media_refs(): # every and lex.missing_media() # refs whose files don't exist ``` -Resolution follows the conventional layout: a relative href is checked as -given (backslashes normalized — WeSay writes `pictures\photo with space.png`) -and under `audio/` (for pronunciation media) or `pictures/` (for -illustrations). Remote/absolute hrefs can't be checked and are skipped. +Resolution follows the conventional layout: a relative href is checked as given (backslashes normalized — WeSay writes `pictures\photo with space.png`) and under `audio/` (for pronunciation media) or `pictures/` (for illustrations). Remote/absolute hrefs can't be checked and are skipped. diff --git a/docs/en/guides/large-files.md b/docs/en/guides/large-files.md index 0dc1622..9fbf27c 100644 --- a/docs/en/guides/large-files.md +++ b/docs/en/guides/large-files.md @@ -1,8 +1,6 @@ # Large files (streaming) -`load()` builds the whole object graph. For multi-hundred-MB lexicons, the -streaming API processes one entry at a time in bounded memory — the same -`Entry` type, so code written against one mode works in the other. +`load()` builds the whole object graph. For multi-hundred-MB lexicons, the streaming API processes one entry at a time in bounded memory — the same `Entry` type, so code written against one mode works in the other. ```python import sil_lift @@ -24,11 +22,6 @@ with sil_lift.open_reader("big.lift") as reader, sil_lift.open_writer( Notes: -- The writer's output is exactly what the full-document canonical serializer - would produce for the same content — the two modes never drift apart. -- Streaming mode has no byte-passthrough layer: output is always canonical. - Root-level comments between entries are not carried; entries and the header - are complete, residue included. -- If the body of an `open_writer` block raises, the file is left visibly - unterminated (no closing ``) — a half-written lexicon must not look - complete. +- The writer's output is exactly what the full-document canonical serializer would produce for the same content — the two modes never drift apart. +- Streaming mode has no byte-passthrough layer: output is always canonical. Root-level comments between entries are not carried; entries and the header are complete, residue included. +- If the body of an `open_writer` block raises, the file is left visibly unterminated (no closing ``) — a half-written lexicon must not look complete. diff --git a/docs/en/guides/read-edit-write.md b/docs/en/guides/read-edit-write.md index 2940ae8..74921e9 100644 --- a/docs/en/guides/read-edit-write.md +++ b/docs/en/guides/read-edit-write.md @@ -8,17 +8,11 @@ import sil_lift lex = sil_lift.load("dictionary.lift") ``` -`load()` accepts any well-formed LIFT **0.13** document — including -schema-invalid real-world files. Anything the model doesn't define (unknown -elements/attributes, comments) is carried losslessly in each node's opaque -`extra` bucket. Other LIFT versions raise `LiftParseError` naming the version. +`load()` accepts any well-formed LIFT **0.13** document — including schema-invalid real-world files. Anything the model doesn't define (unknown elements/attributes, comments) is carried losslessly in each node's opaque `extra` bucket. Other LIFT versions raise `LiftParseError` naming the version. ## The model -Every LIFT element is a typed dataclass: `Entry`, `Sense`, `Example`, -`Pronunciation`, `Variant`, `Relation`, `Etymology`, `Reversal`, and so on. -Multilingual text is a `Multitext`, which behaves like a mapping from -language code to `Text`: +Every LIFT element is a typed dataclass: `Entry`, `Sense`, `Example`, `Pronunciation`, `Variant`, `Relation`, `Etymology`, `Reversal`, and so on. Multilingual text is a `Multitext`, which behaves like a mapping from language code to `Text`: ```python entry = lex.find(id="abat") @@ -28,12 +22,9 @@ entry.lexical_unit["en"] = "grove" # plain strings are coerced "en" in entry.citation # False ``` -`Text` is structured — an ordered list of `str` and `Span` fragments — because -`` can contain nested `` markup. `str(text)` flattens to plain -text; the fragments keep the markup for round-tripping. +`Text` is structured — an ordered list of `str` and `Span` fragments — because `` can contain nested `` markup. `str(text)` flattens to plain text; the fragments keep the markup for round-tripping. -Glosses are *form-shaped* in LIFT (each `` carries its own language), -so a sense has `glosses: list[Form]` plus a helper: +Glosses are _form-shaped_ in LIFT (each `` carries its own language), so a sense has `glosses: list[Form]` plus a helper: ```python sense = entry.senses[0] @@ -48,9 +39,7 @@ lex.save() # back to where it was loaded from lex.save("elsewhere.lift") ``` -Entries you didn't modify are written back **byte-identical**; a document you -didn't modify at all is byte-identical from the first byte to the last. See -[Fidelity guarantees](../fidelity.md) for the precise contract. +Entries you didn't modify are written back **byte-identical**; a document you didn't modify at all is byte-identical from the first byte to the last. See [Fidelity guarantees](../fidelity.md) for the precise contract. ## Building from scratch diff --git a/docs/en/guides/validate.md b/docs/en/guides/validate.md index 2cbf7a6..ce9db3c 100644 --- a/docs/en/guides/validate.md +++ b/docs/en/guides/validate.md @@ -17,28 +17,19 @@ sil_lift.validate_file("dictionary.lift") problems = list(lex.iter_problems()) ``` -Each `Problem` carries `level` (`"error"`/`"warning"`), a stable `code`, -`message`, and an address: `file`, `entry_id`, `guid`, `line`. +Each `Problem` carries `level` (`"error"`/`"warning"`), a stable `code`, `message`, and an address: `file`, `entry_id`, `guid`, `line`. ## The layers 1. **RELAX NG** against the LIFT 0.13 grammar (vendored from lift-standard). -2. **Ranges schema** — this project's `lift-ranges-0.13.rng` — over every - tracked `.lift-ranges` companion. -3. **Semantic checks** the grammar cannot express: `duplicate-guid`, - `dangling-ref`, `range-parent`, `undefined-range-value`, - `duplicate-form-lang`, `missing-media`. +2. **Ranges schema** — this project's `lift-ranges-0.13.rng` — over every tracked `.lift-ranges` companion. +3. **Semantic checks** the grammar cannot express: `duplicate-guid`, `dangling-ref`, `range-parent`, `undefined-range-value`, `duplicate-form-lang`, `missing-media`. ## Real-world FLEx output -FieldWorks systematically writes some content that strict tooling rejects. -sil-lift's policy, so that real lexicons validate usefully: - -- `file://C:/...` hrefs (invalid URIs) are reported as **warnings** - (`uri-not-rfc`), not schema errors — the C# validator never rejected them. -- Legally interleaved children (e.g. `field, note, field, note` in a sense) - are **not** flagged, working around a false positive in libxml2. -- Range values are compared under Unicode NFC normalization — FLEx writes the - `.lift` in NFC but the `.lift-ranges` in NFD within the same export. -- FLEx's `trait`/`field` extensions inside `range-element` **are** reported - (schema errors against the ranges schema): they are genuine spec deviations. +FieldWorks systematically writes some content that strict tooling rejects. Here is sil-lift's policy, so that real lexicons validate usefully: + +- `file://C:/...` hrefs (invalid URIs) are reported as **warnings** (`uri-not-rfc`), not schema errors — the C# validator never rejected them. +- Legally interleaved children (e.g. `field, note, field, note` in a sense) are **not** flagged, working around a false positive in libxml2. +- Range values are compared under Unicode NFC normalization — FLEx writes the `.lift` in NFC but the `.lift-ranges` in NFD within the same export. +- FLEx's `trait`/`field` extensions inside `range-element` **are** reported (schema errors against the ranges schema): they are genuine spec deviations. diff --git a/docs/en/index.md b/docs/en/index.md index 3f68ed5..7e71093 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -1,9 +1,6 @@ # sil-lift -A Python library for [LIFT](https://github.com/sillsdev/lift-standard) -(Lexicon Interchange Format) 0.13: lossless read/write of the LIFT folder -(`.lift` + `.lift-ranges` + media references), schema and semantic -validation, and canonical sorting — with streaming APIs for large lexicons. +A Python library for [LIFT](https://github.com/sillsdev/lift-standard) (Lexicon Interchange Format) 0.13: lossless read/write of the LIFT folder (`.lift` + `.lift-ranges` + media references), schema and semantic validation, and canonical sorting — with streaming APIs for large lexicons. **Status: pre-release, under active development.** @@ -32,15 +29,3 @@ entry.senses[0].definition["en"] = "head (anatomy)" lex.save() # untouched entries byte-identical; edited entry re-serialized ``` - -## Guides - -- [Read, edit, write](guides/read-edit-write.md) -- [Validate](guides/validate.md) -- [Large files (streaming)](guides/large-files.md) -- [The LIFT folder: ranges and media](guides/folder-media.md) -- [The command line](guides/cli.md) -- [Worked example: bulk-editing glosses](guides/bulk-edit-glosses.md) -- [Fidelity guarantees](fidelity.md) — what "lossless" means here, precisely -- [Differences from the C# libraries](csharp-differences.md) -- [API reference](reference.md) diff --git a/docs/en/reference.md b/docs/en/reference.md index c9322e7..41095a6 100644 --- a/docs/en/reference.md +++ b/docs/en/reference.md @@ -1,7 +1,6 @@ # API reference -The public API is exactly what `sil_lift` re-exports at the top level; -underscore-prefixed modules are implementation details. +The public API is exactly what `sil_lift` re-exports at the top level; underscore-prefixed modules are implementation details. ::: sil_lift options: diff --git a/mkdocs.yml b/mkdocs.yml index 795feca..fe2bb86 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -24,6 +24,24 @@ plugins: paths: [ src ] - search +extra: + social: + - icon: fontawesome/solid/globe + link: https://software.sil.org/ + name: SIL Language Software + - icon: fontawesome/brands/github + link: https://github.com/sillsdev + name: sillsdev on GitHub + - icon: fontawesome/brands/discourse + link: https://community.software.sil.org/ + name: SIL software community forum + - icon: fontawesome/brands/vimeo + link: https://vimeo.com/lingtransoft + name: SIL Language Technology on Vimeo + - icon: fontawesome/brands/linkedin + link: https://www.linkedin.com/showcase/sil-language-technology/ + name: SIL Language Technology on LinkedIn + nav: - Home: index.md - Guides: From 6c5b25605ad6796f7cb8ca1431adc98031b2527e Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Jul 2026 16:49:37 -0400 Subject: [PATCH 18/42] Document deferred maintenance triggers: Python 3.11 floor, MkDocs->Zensical Co-Authored-By: Claude Sonnet 5 --- CONTRIBUTING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 39bbbd4..21d3ab6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -76,3 +76,14 @@ Before touching the reader/writer, read `docs/en/fidelity.md` — it is the library's core promise, and the byte-identity, Hypothesis, and semantic round-trip tests exist to keep it true. A change that makes an untouched entry re-serialize is a bug even if every model value survives. + +## Future maintenance + +Conditions to revisit, not yet actionable: + +- **Python 3.11 floor.** Drop after Python 3.11 is EOL (2027-10) and Debian 12 + "bookworm" (the last major distro with 3.11 by default) LTS ends (2028-06). +- **MkDocs → Zensical.** `docs/en/` depends on `mkdocstrings` (API reference) + and `i18n` (Crowdin localization); Zensical doesn't support either yet. + Revisit once both ship — + tracks status. From 7937bceafc8e4c4fb318b3af672d07afb816f6a0 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 08:24:14 -0400 Subject: [PATCH 19/42] Record created Crowdin project in crowdin.yml dormancy note Co-Authored-By: Claude Fable 5 --- crowdin.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crowdin.yml b/crowdin.yml index 1dbcadb..88068e5 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,5 +1,8 @@ # Crowdin source/translation mapping (decision B8/D11). -# Dormant until a remote repo and a Crowdin project exist (post-Phase 3, D8). +# Crowdin project: https://crowdin.com/project/sil-lift-python +# (owned by SIL account `techops`, created 2026-07-17). +# Sync stays dormant until a remote repo exists and the Crowdin GitHub +# integration is connected to it (post-Phase 3, D8). # docs/en/ is the only human-edited docs tree; translated trees # (docs//) are machine-managed by Crowdin sync and must never be # hand-edited in-repo. From d9c858fb265edc76d11a6b7434e1395bca04e215 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 09:22:41 -0400 Subject: [PATCH 20/42] Agent docs, branch/release policy, PyPI release workflow; version 0.1.0 Co-Authored-By: Claude Fable 5 --- .github/workflows/release.yml | 38 ++++++++++++++++++ .gitignore | 3 ++ AGENTS.md | 12 ++++++ CHANGELOG.md | 74 ++++++++++++++++++++--------------- CLAUDE.md | 1 + CONTRIBUTING.md | 13 ++++++ README.md | 8 ++-- src/sil_lift/__init__.py | 2 +- 8 files changed, 113 insertions(+), 38 deletions(-) create mode 100644 .github/workflows/release.yml create mode 100644 AGENTS.md create mode 100644 CLAUDE.md diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..8fa6544 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,38 @@ +name: Release + +on: + release: + types: [published] + +permissions: + contents: read + +jobs: + publish: + # PyPI publish via Trusted Publishing (OIDC, no stored token). + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/sil-lift + permissions: + contents: read + id-token: write + steps: + - name: Check out the release's tagged commit + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - name: Set up Python + uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + with: + python-version: "3.14" + - name: Install build tools + run: python -m pip install build==1.5.0 twine==6.2.0 + - name: Build distribution + run: python -m build + - name: Check distribution metadata + run: python -m twine check dist/* + - name: Check tag matches package version + env: + TAG: ${{ github.event.release.tag_name }} + run: ls dist/sil_lift-"${TAG#v}"-py3-none-any.whl + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@6733eb7d741f0b11ec6a39b58540dab7590f9b7d # v1.14.0 diff --git a/.gitignore b/.gitignore index 188f0a0..1c1f200 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,9 @@ __pycache__/ coverage.xml htmlcov/ +# AI files +.claude/ + # Build artifacts build/ dist/ diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..5679d71 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,12 @@ +# Agent notes for sil-lift + +Read and follow [CONTRIBUTING.md](CONTRIBUTING.md) in full — its byte-exact +corpus rules and fidelity contract are essential to avoid silently breaking this +repo. + +Not covered there: + +- No remote actions without asking the user first — no push, repo or project + creation, issue or PR creations, PyPI publishing, or posting anywhere. +- No destructive actions ever — no force push, branch deletion, or changing repo + settings. diff --git a/CHANGELOG.md b/CHANGELOG.md index 620fe89..e4c5cfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,52 +7,62 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). During 0.x, minor releases may contain breaking changes. + + ## [Unreleased] +## [0.1.0] - 2026-07-TBD + ### Added - Project scaffolding: package skeleton, vendored LIFT 0.13 RELAX NG schema, test corpus with provenance, corpus-prep and large-file-generator tooling. -- M1: full object model (all 35 LIFT 0.13 elements as typed dataclasses), +- Full object model: all 35 LIFT 0.13 elements as typed dataclasses; `sil_lift.load()` / `Lexicon.load()` full-document reader with per-node - `Extras` residue capture, LIFT-version guard. -- M2: `Lexicon.save()` writer with byte-fidelity passthrough — unchanged + `Extras` residue capture; LIFT-version guard. +- `Lexicon.save()` writer with byte-fidelity passthrough — unchanged documents and untouched entries are written byte-identically; touched entries re-serialize canonically with all out-of-schema content preserved. Fidelity contract documented in `docs/en/fidelity.md` and enforced by corpus byte-identity tests plus Hypothesis round-trip properties. -- CLI: `sil-lift export` — one row per leaf sense (subsenses flattened) to - CSV/TSV, streaming; analysis languages auto-detected or set with `--langs`. -- Docs: worked example "bulk-editing glosses" (complete runnable script, - verified output) and a "Differences from the C# libraries" page summarizing - where sil-lift deviates from SIL.Lift/LiftSorter/Chorus behavior and why. -- M7: the `sil-lift` CLI (`validate` / `stats` / `sort` / `check-media`, - stdlib-only, installed via the `[cli]` extra) and the documentation site - (task-oriented guides, fidelity contract, mkdocstrings API reference, - mkdocs-static-i18n wired for future localization). -- M6: streaming — `open_reader()` (lazy entry iterator with the parsed header - available up front; iterparse cleanup internal) and `open_writer()` (header + - one canonical chunk per entry; byte-identical to `canonical_document` output - by construction), both over the same `Entry` types as full-document mode and - O(one entry) in memory (verified on a ~340 MB generated file). -- M5: canonical sort — `Lexicon.sort()` / `RangesFile.sort()` (entries by - case-folded guid/id, ranges/range-elements by id, field definitions by tag; - LiftSorter-informed, locale-independent) and `sil_lift.canonicalize()` for - fully re-serialized diff-ready output. Sorting composes with the passthrough: - sort + save moves untouched entries' bytes without rewriting them. Text - whitespace is never normalized (unlike `canonicalizeLift.xsl`). -- M4: validation — `validate_file()` / `iter_problems()` / +- LIFT-folder handling: `RangesFile` (standalone `.lift-ranges` documents, + same fidelity guarantees), automatic companion discovery/tracking on load + (`Lexicon.ranges_files`), `save()` writes companions together, + `all_ranges()` merged view, `media_refs()` / `missing_media()` helpers; + authored `schemas/lift-ranges-0.13.rng` — the first schema for standalone + ranges documents (spec-faithful, built from the vendored grammar's own + defines). +- Validation: `validate_file()` / `iter_problems()` / `Lexicon.iter_problems()` returning an addressable `Problem` stream (file/entry/line). RELAX NG layer with two documented deviations from raw libxml2 (href masking with `uri-not-rfc` warnings; tag-grouped validation to sidestep libxml2's interleave limitation); authored ranges schema over companions; semantic checks: duplicate-guid, dangling-ref, range-parent, undefined-range-value (NFC-normalized), duplicate-form-lang, missing-media. - Hand-authored negative corpus under `tests/corpus/negative/`. -- M3: LIFT-folder handling — `RangesFile` (standalone `.lift-ranges` - documents, same fidelity guarantees), automatic companion - discovery/tracking on load (`Lexicon.ranges_files`), `save()` writes - companions together, `all_ranges()` - merged view, `media_refs()` / `missing_media()` helpers; authored - `schemas/lift-ranges-0.13.rng` — the first schema for standalone ranges - documents (spec-faithful, built from the vendored grammar's own defines). +- Canonical sort: `Lexicon.sort()` / `RangesFile.sort()` (entries by + case-folded guid/id, ranges/range-elements by id, field definitions by tag; + informed by the C# LiftSorter, locale-independent) and + `sil_lift.canonicalize()` for fully re-serialized diff-ready output. Sorting + composes with the passthrough: sort + save moves untouched entries' bytes + without rewriting them. Text whitespace is never normalized. +- Streaming: `open_reader()` (lazy entry iterator with the parsed header + available up front) and `open_writer()` (header + one canonical chunk per + entry; byte-identical to `canonical_document` output by construction), both + over the same `Entry` types as full-document mode and O(one entry) in + memory (verified on a ~340 MB generated file). +- The `sil-lift` CLI (stdlib-only, installed via the `[cli]` extra): + `validate` / `stats` / `sort` / `check-media`, plus `export` — one row per + leaf sense (subsenses flattened) to CSV/TSV, streaming; analysis languages + auto-detected or set with `--langs`. +- Documentation site: task-oriented guides, the fidelity contract, generated + API reference, localization-ready configuration; includes a worked example + ("bulk-editing glosses", complete runnable script with verified output) and + a "Differences from the C# libraries" page summarizing where sil-lift + deviates from SIL.Lift/LiftSorter/Chorus behavior and why. diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..43c994c --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1 @@ +@AGENTS.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 21d3ab6..6876121 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,6 +21,19 @@ python scripts/check.py All four must be green before a commit. `ruff format .` fixes formatting; the rest you fix by hand. +## Branches, tags, releases + +Do not work directly on the default branch (`main`). All work is to be merged +into the default branch by PR. + +In the final commit before a new release, bump `__version__` in +`src/sil_lift/__init__.py` (the single version source), and roll +`CHANGELOG.md`'s `[Unreleased]` into a new dated `[X.Y.Z]` section. + +Releases are cut by publishing a GitHub Release with a `vX.Y.Z` SemVer tag +matching `__version__`. A release-triggered workflow builds the distribution, +verifies that the tag and version match, and publishes to PyPI. + ## The test corpus is byte-exact — never hand-edit it The fidelity tests assert that saving writes back the **exact bytes** of diff --git a/README.md b/README.md index dd5bf94..d0f7281 100644 --- a/README.md +++ b/README.md @@ -51,14 +51,12 @@ byte-identity tests and property-based (Hypothesis) round-trip tests. ## Versioning [SemVer](https://semver.org/). During 0.x, minor releases may contain breaking -changes; see `CHANGELOG.md`. The public API is exactly what `sil_lift` -re-exports at the top level. +changes; see [CHANGELOG.md](CHANGELOG.md). The public API is exactly what +`sil_lift` re-exports at the top level. ## Contributing -See [CONTRIBUTING.md](CONTRIBUTING.md) — in short: `pip install -e .[dev]`, -then `python scripts/check.py` must be green. Mind the byte-exact test -corpus rules before touching anything under `tests/corpus/`. +[CONTRIBUTING.md](CONTRIBUTING.md) ## License diff --git a/src/sil_lift/__init__.py b/src/sil_lift/__init__.py index 8513525..4114677 100644 --- a/src/sil_lift/__init__.py +++ b/src/sil_lift/__init__.py @@ -38,7 +38,7 @@ if TYPE_CHECKING: import os -__version__ = "0.1.0.dev0" +__version__ = "0.1.0" __all__ = [ "Annotation", From 19180423d1327fa05a5d969fccc616778d1dccf4 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 11:08:16 -0400 Subject: [PATCH 21/42] Docs on GitHub Pages; PyPI/project URLs in README, docs, pyproject; Crowdin sync note Co-Authored-By: Claude Fable 5 --- .github/workflows/docs.yml | 42 ++++++++++++++++++++++++++++++++++++++ README.md | 5 +++-- crowdin.yml | 5 +++-- docs/en/index.md | 2 ++ mkdocs.yml | 6 +++++- pyproject.toml | 7 +++++++ 6 files changed, 62 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..a7767d6 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,42 @@ +name: Docs + +on: + push: + branches: [main] + workflow_dispatch: + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - name: Set up Python + uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + with: + python-version: "3.14" + - name: Install docs dependencies + run: python -m pip install -e .[docs] + - name: Build site + run: mkdocs build --strict + - name: Upload Pages artifact + uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0 + with: + path: site/ + + deploy: + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deploy.outputs.page_url }} + permissions: + id-token: write + pages: write + steps: + - name: Deploy to GitHub Pages + id: deploy + uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0 diff --git a/README.md b/README.md index d0f7281..41b7094 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@ lex.save() # untouched entries byte-identical **Status: pre-release, under active development.** The API is not yet stable. Requires Python 3.11+; the only runtime dependency is lxml. Install -`sil-lift[cli]` for the `sil-lift` command (`validate` / `stats` / `sort` / -`check-media`). Documentation lives in `docs/en/` (mkdocs-material; build with +[from PyPI](https://pypi.org/project/sil-lift/): `sil-lift`, or `sil-lift[cli]` +for the `sil-lift` command (`validate` / `stats` / `sort` / `check-media`). +Documentation lives in `docs/en/` (mkdocs-material; build with `pip install -e .[docs] && mkdocs build`). ## Fidelity guarantees diff --git a/crowdin.yml b/crowdin.yml index 88068e5..8528727 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,8 +1,9 @@ # Crowdin source/translation mapping (decision B8/D11). # Crowdin project: https://crowdin.com/project/sil-lift-python # (owned by SIL account `techops`, created 2026-07-17). -# Sync stays dormant until a remote repo exists and the Crowdin GitHub -# integration is connected to it (post-Phase 3, D8). +# GitHub integration connected 2026-07-17: syncs `main`; Crowdin delivers +# translations on service branch `crowdin_main` as PRs into `main` +# (merge, then delete the branch — Crowdin recreates it). # docs/en/ is the only human-edited docs tree; translated trees # (docs//) are machine-managed by Crowdin sync and must never be # hand-edited in-repo. diff --git a/docs/en/index.md b/docs/en/index.md index 7e71093..5fa489e 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -6,6 +6,8 @@ A Python library for [LIFT](https://github.com/sillsdev/lift-standard) (Lexicon ## Install +From [PyPI](https://pypi.org/project/sil-lift/): + ``` pip install sil-lift # library pip install sil-lift[cli] # library + the sil-lift command diff --git a/mkdocs.yml b/mkdocs.yml index fe2bb86..5c89294 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,11 +1,15 @@ site_name: sil-lift site_description: >- Read, write, and validate LIFT (Lexicon Interchange Format) 0.13 lexicons. +site_url: https://sillsdev.github.io/python-sil-lift/ +repo_url: https://github.com/sillsdev/python-sil-lift +edit_uri: edit/main/docs/ docs_dir: docs theme: name: material features: + - content.action.edit - content.code.copy - navigation.sections @@ -33,7 +37,7 @@ extra: link: https://github.com/sillsdev name: sillsdev on GitHub - icon: fontawesome/brands/discourse - link: https://community.software.sil.org/ + link: https://community.software.sil.org/c/other/ name: SIL software community forum - icon: fontawesome/brands/vimeo link: https://vimeo.com/lingtransoft diff --git a/pyproject.toml b/pyproject.toml index a9962b6..bb6f81d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,13 @@ classifiers = [ ] dependencies = ["lxml>=5.0"] +[project.urls] +Documentation = "https://sillsdev.github.io/python-sil-lift/" +Repository = "https://github.com/sillsdev/python-sil-lift" +Changelog = "https://github.com/sillsdev/python-sil-lift/blob/main/CHANGELOG.md" +Issues = "https://github.com/sillsdev/python-sil-lift/issues" +Forum = "https://community.software.sil.org/c/other/" + [project.scripts] sil-lift = "sil_lift._cli:main" From b33998184ed78b64343ac19901b9453bd3cc04ac Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 12:28:26 -0400 Subject: [PATCH 22/42] Validate what save() would write, not the loaded bytes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Review findings (PR #1): iter_problems on a loaded-then-edited lexicon validated the original source bytes, hiding problems introduced by edits and mis-addressing semantic findings once entries were added, removed, or sorted. Render through the writer instead — byte-identical to the source for untouched documents, so file line numbers still hold. Also: check-media now skips remote/absolute hrefs via _normalize_href (mirrors missing_media); save() docstring covers same-directory renames; large-files.md notes root attributes are not carried in streaming. Co-Authored-By: Claude Fable 5 --- docs/en/guides/large-files.md | 2 +- src/sil_lift/_cli.py | 10 ++++++---- src/sil_lift/_model.py | 12 ++++++++---- src/sil_lift/_validate.py | 15 ++++++++------- tests/test_cli.py | 24 ++++++++++++++++++++++++ tests/test_validate.py | 21 +++++++++++++++++++++ 6 files changed, 68 insertions(+), 16 deletions(-) diff --git a/docs/en/guides/large-files.md b/docs/en/guides/large-files.md index 9fbf27c..32f0881 100644 --- a/docs/en/guides/large-files.md +++ b/docs/en/guides/large-files.md @@ -23,5 +23,5 @@ with sil_lift.open_reader("big.lift") as reader, sil_lift.open_writer( Notes: - The writer's output is exactly what the full-document canonical serializer would produce for the same content — the two modes never drift apart. -- Streaming mode has no byte-passthrough layer: output is always canonical. Root-level comments between entries are not carried; entries and the header are complete, residue included. +- Streaming mode has no byte-passthrough layer: output is always canonical. Root-level residue — comments between entries and out-of-schema attributes on `` — is not carried; entries and the header are complete, residue included. - If the body of an `open_writer` block raises, the file is left visibly unterminated (no closing ``) — a half-written lexicon must not look complete. diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index 99d2ef8..a93dd4b 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -16,7 +16,7 @@ from ._canonical import canonicalize from ._errors import LiftError -from ._model import Lexicon +from ._model import Lexicon, _normalize_href from ._stream import open_reader from ._validate import iter_problems @@ -98,10 +98,12 @@ def _cmd_check_media(args: argparse.Namespace) -> int: referenced: set[Path] = set() base = Path(args.path).parent for ref in lexicon.media_refs(): - normalized = ref.href.replace("\\", "/") - referenced.add((base / normalized).resolve()) + relative = _normalize_href(ref.href) + if relative is None: # remote/absolute hrefs can't vouch for local files + continue + referenced.add((base / relative).resolve()) subfolder = "audio" if ref.kind == "media" else "pictures" - referenced.add((base / subfolder / normalized).resolve()) + referenced.add((base / subfolder / relative).resolve()) orphans = [ file for folder in ("audio", "pictures") diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 711d23b..624e220 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -377,7 +377,9 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: entries are re-serialized canonically with all residue preserved (A2). With no ``path``, saves to where the lexicon was loaded from. When saving into a different directory, companions are written next to the - new ``.lift`` file under their original basenames. + new ``.lift`` file under their original basenames. Saving under a new + name in the *same* directory leaves companions at their original + paths (they are shared with the original document, not copied). """ from ._writer import render_document @@ -409,9 +411,11 @@ def sort(self) -> None: def iter_problems(self) -> Iterator[Problem]: """Validate the in-memory state (schema layers + semantic checks). - The schema layers need serialized bytes: an unedited loaded document - is validated from its source bytes; otherwise the in-memory state is - canonically serialized first (a documented cost on large lexicons). + The schema layers need serialized bytes: what :meth:`save` would + write is validated, so in-memory edits are always visible. For an + untouched loaded document those are the source bytes (line numbers + match the file on disk); otherwise serialization is a documented + cost on large lexicons. """ from ._validate import iter_lexicon_problems diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index 53a71de..349a382 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -85,20 +85,21 @@ def validate_file(path: str | os.PathLike[str]) -> None: def iter_lexicon_problems(lexicon: Lexicon) -> Iterator[Problem]: - from ._writer import canonical_document, canonical_ranges_document + from ._writer import render_document, render_ranges_document lift_schema = etree.RelaxNG(etree.parse(_SCHEMAS_DIR / "lift-0.13.rng")) ranges_schema = etree.RelaxNG(etree.parse(_SCHEMAS_DIR / "lift-ranges-0.13.rng")) - data = lexicon._source.data if lexicon._source else canonical_document(lexicon) + # What save() would write, not the loaded bytes: edits must be visible to + # validation. Untouched loaded documents render byte-identical to their + # source, so line numbers keep matching the file on disk — and rendered + # entry order always matches lexicon.entries, keeping the entry_lines + # table aligned for semantic addressing even after edits or sort(). + data = render_document(lexicon) entry_lines, problems = _schema_problems(data, lift_schema, lexicon.path) yield from problems for ranges_file in lexicon.ranges_files.values(): - rdata = ( - ranges_file._source.data - if ranges_file._source - else canonical_ranges_document(ranges_file) - ) + rdata = render_ranges_document(ranges_file) _, range_problems = _schema_problems(rdata, ranges_schema, ranges_file.path) yield from range_problems yield from _semantic_problems(lexicon, entry_lines) diff --git a/tests/test_cli.py b/tests/test_cli.py index 9698b90..575f4ac 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -76,6 +76,30 @@ def test_check_media_flags_missing(capsys: pytest.CaptureFixture[str]) -> None: assert "none.wav" in out and "gone.png" in out +def test_check_media_absolute_href_cannot_vouch_for_local_file( + tmp_path: Path, capsys: pytest.CaptureFixture[str] +) -> None: + # An absolute href (FLEx-style dangling path) must not mark a folder file + # as referenced — mirrors missing_media(), which skips non-relative hrefs. + audio = tmp_path / "audio" + audio.mkdir() + wav = audio / "one.wav" + wav.write_bytes(b"") + href = str(wav).replace("\\", "/") + (tmp_path / "abs.lift").write_bytes( + b'\n' + b'\n' + b'\n' + b'
x
\n' + b'\n' + b"
\n" + b"
\n" + ) + assert main(["check-media", str(tmp_path / "abs.lift")]) == 0 + out = capsys.readouterr().out + assert "orphaned" in out and "one.wav" in out + + def test_bad_input_exits_2(capsys: pytest.CaptureFixture[str]) -> None: assert main(["validate", str(CORPUS_DIR / "PROVENANCE.md")]) == 2 assert "error:" in capsys.readouterr().err diff --git a/tests/test_validate.py b/tests/test_validate.py index c2cb273..5002322 100644 --- a/tests/test_validate.py +++ b/tests/test_validate.py @@ -147,6 +147,27 @@ def test_sango_real_defects_are_found() -> None: ) +def test_problems_reflect_in_memory_edits() -> None: + # Regression: validation must see what save() would write, not the bytes + # the document was loaded from. + lexicon = sil_lift.Lexicon.load(NEGATIVE_DIR / "schema-invalid.lift") + assert any(p.code == "schema" for p in lexicon.iter_problems()) + del lexicon.entries[0] # removes the schema-invalid entry + assert list(lexicon.iter_problems()) == [] + + +def test_semantic_addressing_covers_added_entries() -> None: + # Regression: the entry-line table must align with lexicon.entries even + # after edits, so problems in appended entries get line addressing. + lexicon = sil_lift.Lexicon.load(NEGATIVE_DIR / "duplicate-guid.lift") + extra = sil_lift.Entry(id="three", guid="11111111-1111-1111-1111-111111111111") + extra.lexical_unit["en"] = "three" + lexicon.entries.append(extra) + problems = [p for p in lexicon.iter_problems() if p.code == "duplicate-guid"] + assert [p.entry_id for p in problems] == ["two", "three"] + assert all(p.line is not None for p in problems) + + def test_in_memory_lexicon_validation() -> None: lexicon = sil_lift.Lexicon() for entry_id in ("a", "b"): From 634bf303116bcc498a68f0a7d7ac7d1dfcc3f7d2 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 12:28:26 -0400 Subject: [PATCH 23/42] Exclude tests/ from the sdist; resolve the corpus license-review flag The sdist shipped all of tests/corpus, redistributing fixtures whose upstream repos have no license (lift-standard, LiftTweaker) or an AGPL-by-reference one (flashgrab) in the PyPI artifact. PROVENANCE.md now records the review outcome and that corpus files are not covered by the repository's MIT license. Co-Authored-By: Claude Fable 5 --- pyproject.toml | 6 ++++++ tests/corpus/PROVENANCE.md | 18 +++++++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bb6f81d..44d3fee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,6 +68,12 @@ docs = [ [tool.hatch.version] path = "src/sil_lift/__init__.py" +[tool.hatch.build.targets.sdist] +# The test corpus contains third-party fixtures whose upstream licensing is +# not distribution-clean (see tests/corpus/PROVENANCE.md); release artifacts +# must not redistribute them. Develop from the git repo to run the tests. +exclude = ["/tests"] + [tool.hatch.build.targets.wheel] packages = ["src/sil_lift"] diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md index e0fa761..92f1fd0 100644 --- a/tests/corpus/PROVENANCE.md +++ b/tests/corpus/PROVENANCE.md @@ -5,11 +5,19 @@ the commits recorded below (raw.githubusercontent.com at pinned SHA). Git line-ending normalization is disabled for everything under `tests/corpus/` (`.gitattributes`) — fidelity tests depend on the bytes staying exactly as fetched. -**License review flag (pre-release)**: `lift-standard` and `LiftTweaker` have no -license file; `flashgrab`'s LICENSE reads "Free and open source, under Anki's -license" (Anki is AGPL-3.0). All are SIL-authored repos and this use is -SIL-internal test data, but resolve licensing before any public release -(tracked with the other release gates in milestone M7). +Files under `tests/corpus/` retain their upstream licenses (recorded per +fixture below) and are **not** covered by this repository's MIT license. + +**License review (2026-07-17, re-verified against the live repos)**: +`lift-standard` and `LiftTweaker` still have no license file; `flashgrab`'s +LICENSE reads "Free and open source, under Anki's license" (Anki is +AGPL-3.0). All three are SIL-authored repos, so carrying their fixtures in +this SIL repo with provenance is acceptable, but PyPI release artifacts must +not redistribute them: the sdist excludes `tests/` (pyproject +`[tool.hatch.build.targets.sdist]`). Open asks, tracked in the planning +repo: a LICENSE for lift-standard (raised with the ranges-schema offer), +license clarification or fixture replacement for LiftTweaker's sample.lift, +and flashgrab license/attribution cleanup. ## spec-examples/0.12/ — 19 files From b320e04f2083f87320040a996f8aa6dc4d6adf70 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 12:58:30 -0400 Subject: [PATCH 24/42] Harden two review-noted edges: re-key ranges_files on save; tolerate None lines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Review round 2 (PR #1): after a relocate-save the ranges_files dict stayed keyed by the companions' pre-save paths (latent — nothing reads keys after save today); _nearest_entry stopped scanning at an entry without a sourceline instead of skipping it (unreachable on lxml-parsed input). Co-Authored-By: Claude Fable 5 --- src/sil_lift/_model.py | 6 ++++++ src/sil_lift/_validate.py | 4 +++- tests/test_ranges_folder.py | 2 ++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 624e220..9af1fc9 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -394,6 +394,12 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: ranges_file.save(target.parent / ranges_file.path.name) else: ranges_file.save() + # Keys must keep tracking the companions' current locations. + self.ranges_files = { + ranges_file.path.resolve(): ranges_file + for ranges_file in self.ranges_files.values() + if ranges_file.path is not None + } def sort(self) -> None: """Sort into canonical order, in place: entries by (guid, id), header diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index 349a382..4f86ed3 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -195,7 +195,9 @@ def _nearest_entry( return None, None best: tuple[str | None, str | None] = (None, None) for entry_line, entry_id, guid in entry_lines: - if entry_line is None or entry_line > line: + if entry_line is None: + continue # parsed entries always carry a sourceline; stay defensive + if entry_line > line: break best = (entry_id, guid) return best diff --git a/tests/test_ranges_folder.py b/tests/test_ranges_folder.py index bb9a718..981ea43 100644 --- a/tests/test_ranges_folder.py +++ b/tests/test_ranges_folder.py @@ -56,6 +56,8 @@ def test_save_to_new_directory_carries_companions(tmp_path: Path) -> None: assert (target_dir / "test20080407.lift-ranges").read_bytes() == ( PAIR_DIR / "test20080407.lift-ranges" ).read_bytes() + # The tracking dict must be re-keyed to the companions' new locations. + assert set(lexicon.ranges_files) == {(target_dir / "test20080407.lift-ranges").resolve()} def test_ranges_edit_saves_back_to_the_right_file(tmp_path: Path) -> None: From fee1e307d706905d47a2fe2e11c3b60df8d6bf25 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 14:37:35 -0400 Subject: [PATCH 25/42] Trim test summaries; Set 90% coverage floor --- .github/workflows/test.yml | 4 ++++ tests/test_canonical.py | 3 --- tests/test_cli.py | 3 --- tests/test_property_roundtrip.py | 2 +- tests/test_public_api.py | 2 -- tests/test_ranges_folder.py | 3 --- tests/test_reader.py | 2 -- tests/test_stream.py | 3 --- tests/test_validate.py | 3 --- tests/test_writer.py | 3 --- 10 files changed, 5 insertions(+), 23 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b26d8c8..14b87c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,3 +36,7 @@ jobs: run: python -m mypy - name: Test run: python -m pytest --cov=sil_lift --cov-report=term-missing + - name: Coverage summary + floor + # Only run on one matrix leg. + if: matrix.os == 'macos-latest' + run: python -m coverage report --format=markdown --fail-under=90 >> "$GITHUB_STEP_SUMMARY" diff --git a/tests/test_canonical.py b/tests/test_canonical.py index 903fa78..6585ce6 100644 --- a/tests/test_canonical.py +++ b/tests/test_canonical.py @@ -1,6 +1,3 @@ -"""M5 acceptance: idempotent, deterministic, LiftSorter-rule-faithful sort; -canonicalized output stays RNG-valid and semantically equal to its input.""" - from pathlib import Path import pytest diff --git a/tests/test_cli.py b/tests/test_cli.py index 575f4ac..7007f12 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,6 +1,3 @@ -"""M7 acceptance: the CLI works against the corpus, including the -filename-with-space fixture.""" - import csv import shutil from pathlib import Path diff --git a/tests/test_property_roundtrip.py b/tests/test_property_roundtrip.py index c0c1dd6..d81ad34 100644 --- a/tests/test_property_roundtrip.py +++ b/tests/test_property_roundtrip.py @@ -1,4 +1,4 @@ -"""Property-based round-trip suite (corpus plan §C.9). +"""Property-based round-trip suite. Two properties over generated LIFT documents: diff --git a/tests/test_public_api.py b/tests/test_public_api.py index 61f8df2..53a0d24 100644 --- a/tests/test_public_api.py +++ b/tests/test_public_api.py @@ -1,5 +1,3 @@ -"""B7 discipline: no lxml type may appear anywhere in the public surface.""" - import inspect import typing diff --git a/tests/test_ranges_folder.py b/tests/test_ranges_folder.py index 981ea43..7f676ce 100644 --- a/tests/test_ranges_folder.py +++ b/tests/test_ranges_folder.py @@ -1,6 +1,3 @@ -"""M3 acceptance: ranges pair round-trips byte-identically, edits save back to -the right file, merged range view, media helpers against a real folder.""" - import shutil from pathlib import Path diff --git a/tests/test_reader.py b/tests/test_reader.py index 6c16043..fad189c 100644 --- a/tests/test_reader.py +++ b/tests/test_reader.py @@ -1,5 +1,3 @@ -"""M1 acceptance: every 0.13 corpus file loads; content spot-checks; version guard.""" - from datetime import UTC, date, datetime from pathlib import Path diff --git a/tests/test_stream.py b/tests/test_stream.py index 30daafc..018d3c8 100644 --- a/tests/test_stream.py +++ b/tests/test_stream.py @@ -1,6 +1,3 @@ -"""M6 acceptance: full-vs-streaming parse equality on the whole corpus, -stream-copy fidelity, bounded memory on a generated large file (measured).""" - import os import sys from pathlib import Path diff --git a/tests/test_validate.py b/tests/test_validate.py index 5002322..481d3b1 100644 --- a/tests/test_validate.py +++ b/tests/test_validate.py @@ -1,6 +1,3 @@ -"""M4 acceptance: every negative fixture caught with correct addressing; -clean corpus validates; C# Validator parity on shared cases (duplicate-guid).""" - from pathlib import Path import pytest diff --git a/tests/test_writer.py b/tests/test_writer.py index b332df9..c3390cf 100644 --- a/tests/test_writer.py +++ b/tests/test_writer.py @@ -1,6 +1,3 @@ -"""M2 acceptance: byte-identical unchanged saves, touched-entry isolation, -semantic round-trip equality, residue survival through re-serialization.""" - from pathlib import Path import pytest From 96a503595659a8c00c01fd6b07c333cee50d1798 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 15:05:18 -0400 Subject: [PATCH 26/42] Remove phase/research/decision/milestone refs --- CHANGELOG.md | 4 +-- README.md | 4 +-- crowdin.yml | 10 +++--- src/sil_lift/_canonical.py | 4 +-- src/sil_lift/_extras.py | 4 +-- src/sil_lift/_header.py | 2 +- src/sil_lift/_model.py | 6 ++-- src/sil_lift/_reader.py | 4 +-- src/sil_lift/_scan.py | 10 +++--- src/sil_lift/_stream.py | 8 ++--- src/sil_lift/_validate.py | 2 +- src/sil_lift/_writer.py | 2 +- src/sil_lift/schemas/PROVENANCE.md | 15 ++++---- tests/corpus/PROVENANCE.md | 58 +++++++++++++++--------------- tests/test_corpus.py | 6 ++-- tests/tools/build_ranges_schema.py | 10 +++--- tests/tools/generate_large.py | 2 +- 17 files changed, 74 insertions(+), 77 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4c5cfd..a04b33e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,10 +50,10 @@ releases may contain breaking changes. case-folded guid/id, ranges/range-elements by id, field definitions by tag; informed by the C# LiftSorter, locale-independent) and `sil_lift.canonicalize()` for fully re-serialized diff-ready output. Sorting - composes with the passthrough: sort + save moves untouched entries' bytes + composes with the passthrough: sort \+ save moves untouched entries' bytes without rewriting them. Text whitespace is never normalized. - Streaming: `open_reader()` (lazy entry iterator with the parsed header - available up front) and `open_writer()` (header + one canonical chunk per + available up front) and `open_writer()` (header \+ one canonical chunk per entry; byte-identical to `canonical_document` output by construction), both over the same `Entry` types as full-document mode and O(one entry) in memory (verified on a ~340 MB generated file). diff --git a/README.md b/README.md index 41b7094..9d8bd44 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # sil-lift A Python library for [LIFT](https://github.com/sillsdev/lift-standard) (Lexicon -Interchange Format) 0.13: lossless read/write of the LIFT folder (`.lift` + -`.lift-ranges` + media references), RELAX NG and semantic validation, and +Interchange Format) 0.13: lossless read/write of the LIFT folder (`.lift` \+ +`.lift-ranges` \+ media references), RELAX NG and semantic validation, and canonical sorting — with streaming APIs for large lexicons. ```python diff --git a/crowdin.yml b/crowdin.yml index 8528727..b2a6a0f 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,9 +1,9 @@ -# Crowdin source/translation mapping (decision B8/D11). # Crowdin project: https://crowdin.com/project/sil-lift-python -# (owned by SIL account `techops`, created 2026-07-17). -# GitHub integration connected 2026-07-17: syncs `main`; Crowdin delivers -# translations on service branch `crowdin_main` as PRs into `main` -# (merge, then delete the branch — Crowdin recreates it). +# +# GitHub integration syncs `main`. Crowdin delivers translations on +# service branch `crowdin_main` as PRs into `main` (merge, then delete +# the branch — Crowdin recreates it). +# # docs/en/ is the only human-edited docs tree; translated trees # (docs//) are machine-managed by Crowdin sync and must never be # hand-edited in-repo. diff --git a/src/sil_lift/_canonical.py b/src/sil_lift/_canonical.py index 1590f16..7343f16 100644 --- a/src/sil_lift/_canonical.py +++ b/src/sil_lift/_canonical.py @@ -1,4 +1,4 @@ -"""Canonical sort (decision A6): a native implementation, LiftSorter-informed. +"""Canonical sort: a native implementation, LiftSorter-informed. The C# oracle (libpalaso ``SIL.Lift/LiftSorter.cs`` @ 4840de8) sorts entries by case-insensitive guid, orders header children description → ranges → @@ -18,7 +18,7 @@ The reference ``canonicalizeLift.xsl`` is deliberately NOT used: it whitespace-normalizes all text nodes (destructive to lexical data) and its -generated ids are session-specific (research finding, decision A6). +generated ids are session-specific. """ from __future__ import annotations diff --git a/src/sil_lift/_extras.py b/src/sil_lift/_extras.py index 5891cb3..de19cd7 100644 --- a/src/sil_lift/_extras.py +++ b/src/sil_lift/_extras.py @@ -1,9 +1,9 @@ -"""The opaque out-of-schema residue bucket (decision A2). +"""The opaque out-of-schema residue bucket. Every model node carries an ``Extras`` holding whatever the parser found that the LIFT 0.13 schema does not define: unknown attributes, unknown child elements, XML comments/processing instructions, and stray text in element-only contexts. The -writer (M2) re-emits it so nothing is dropped. +writer re-emits it so nothing is dropped. The public surface is deliberately tiny — equality, repr, emptiness, to_string() — so the internal representation stays swappable and no lxml type ever leaks. diff --git a/src/sil_lift/_header.py b/src/sil_lift/_header.py index 70207f2..ac56ddd 100644 --- a/src/sil_lift/_header.py +++ b/src/sil_lift/_header.py @@ -43,7 +43,7 @@ class Range: """A ````: a controlled vocabulary, inline and/or via ``href``. ``href`` points at an external ``.lift-ranges`` resource; its contents are - carried unresolved here (resolution/tracking is milestone M3). + carried unresolved here. """ id: str diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 9af1fc9..216cc54 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -325,7 +325,7 @@ def __init__( self.path = path self.extra = extra if extra is not None else Extras() self.ranges_files: dict[Path, RangesFile] = {} - self._source: _SourceInfo | None = None # set by the reader (A2 passthrough) + self._source: _SourceInfo | None = None # set by the reader @classmethod def load(cls, path: str | os.PathLike[str], *, resolve_ranges: bool = True) -> Lexicon: @@ -374,7 +374,7 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: """Write the ``.lift`` file and every tracked ``.lift-ranges`` companion. Untouched entries are emitted byte-identical to the source; modified - entries are re-serialized canonically with all residue preserved (A2). + entries are re-serialized canonically with all residue preserved. With no ``path``, saves to where the lexicon was loaded from. When saving into a different directory, companions are written next to the new ``.lift`` file under their original basenames. Saving under a new @@ -403,7 +403,7 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: def sort(self) -> None: """Sort into canonical order, in place: entries by (guid, id), header - ranges/range-elements by id, field definitions by tag (decision A6). + ranges/range-elements by id, field definitions by tag. Sorting alone does not mark entries as modified — a subsequent :meth:`save` still emits untouched entries byte-identically, just in diff --git a/src/sil_lift/_reader.py b/src/sil_lift/_reader.py index 1ce04b1..0543b72 100644 --- a/src/sil_lift/_reader.py +++ b/src/sil_lift/_reader.py @@ -109,7 +109,7 @@ def _attach_ranges_source(ranges_file: RangesFile, data: bytes, root: etree._Ele def _attach_source(lexicon: Lexicon, data: bytes, root: etree._Element) -> None: - """Capture what the A2 passthrough needs; on any doubt, capture nothing. + """Capture what the passthrough layer needs; on any doubt, capture nothing. Without source info the writer falls back to canonical serialization — semantically complete, just not byte-preserving. @@ -619,7 +619,7 @@ def _parse_range(el: etree._Element) -> Range: range_ = Range(id="") attrs = _split_attrs(el, ("id", "href", "guid"), range_.extra) range_.id = attrs.get("id", "") - range_.href = attrs.get("href") # carried unresolved (M3) + range_.href = attrs.get("href") # carried unresolved range_.guid = attrs.get("guid") _walk( el, diff --git a/src/sil_lift/_scan.py b/src/sil_lift/_scan.py index 1c0f9ad..da5b5a4 100644 --- a/src/sil_lift/_scan.py +++ b/src/sil_lift/_scan.py @@ -1,10 +1,10 @@ """Byte-span scanner: locate the exact source bytes of each root child. -The passthrough layer (decision A2) emits untouched entries verbatim from -their original bytes, which requires knowing each top-level ````'s -(and ``
``'s) exact byte span in the source. lxml exposes no byte -offsets, so this module walks the raw bytes with a small state machine that -understands tags, quoted attribute values, comments, CDATA sections, and PIs. +The passthrough layer emits untouched entries verbatim from their original +bytes, which requires knowing each top-level ````'s (and +``
``'s) exact byte span in the source. lxml exposes no byte offsets, +so this module walks the raw bytes with a small state machine that understands +tags, quoted attribute values, comments, CDATA sections, and PIs. It is deliberately conservative: anything unexpected (DOCTYPE, malformed nesting, non-ASCII-compatible encoding — checked by the caller) returns diff --git a/src/sil_lift/_stream.py b/src/sil_lift/_stream.py index d690280..6a78463 100644 --- a/src/sil_lift/_stream.py +++ b/src/sil_lift/_stream.py @@ -1,4 +1,4 @@ -"""Streaming read/write (decision A4): same Entry types, O(one entry) memory. +"""Streaming read/write: same Entry types, O(one entry) memory. The reader wraps ``lxml.etree.iterparse`` with all ``clear()``/preceding-sibling bookkeeping internal; the writer emits the same bytes ``canonical_document`` @@ -7,9 +7,9 @@ with the canonical serializer by construction, so full and streaming output never drift apart). -Streaming mode has no byte-passthrough layer (A2: its memory cost is "absent -in streaming mode"): output is always canonical. Root-level residue (comments -between entries) is not carried either — entries and the header are. +Streaming mode has no byte-passthrough layer: output is always canonical. +Root-level residue (comments between entries) is not carried either — entries +and the header are. """ from __future__ import annotations diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index 4f86ed3..0523d88 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -1,4 +1,4 @@ -"""Validation: schema layers + semantic checks -> a stream of Problems (A5). +"""Validation: schema layers + semantic checks -> a stream of Problems. Three layers, all explicit-call (never implicit on load/save): diff --git a/src/sil_lift/_writer.py b/src/sil_lift/_writer.py index 53cb254..eba5dab 100644 --- a/src/sil_lift/_writer.py +++ b/src/sil_lift/_writer.py @@ -1,4 +1,4 @@ -"""Canonical serializer + the A2 passthrough layer. +"""Canonical serializer + the passthrough layer. Two paths out of a :class:`~sil_lift._model.Lexicon`: diff --git a/src/sil_lift/schemas/PROVENANCE.md b/src/sil_lift/schemas/PROVENANCE.md index 061de48..f93e334 100644 --- a/src/sil_lift/schemas/PROVENANCE.md +++ b/src/sil_lift/schemas/PROVENANCE.md @@ -3,19 +3,18 @@ ## lift-0.13.rng - **Source**: `sillsdev/lift-standard`, path `LIFTDotNet/LiftIO/Validation/lift-0.13.rng` -- **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` (master; the commit examined - throughout Phase 1 research) +- **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` (master) - **Fetched**: 2026-07-14, byte-identical copy (17,885 bytes); stored with git line-ending normalization disabled (`.gitattributes`) - **Note**: this is the operative LIFT 0.13 grammar. The same content (modulo whitespace/comment ordering) is embedded as `lift.rng` in both the spec repo's LiftIO and libpalaso's `SIL.Lift/Validation/` and used by the C# `Validator`. -- **License**: the lift-standard repo has **no license file** (known upstream gap, - research finding 05). SIL-internal use; resolve with upstream before any public - release of this package. +- **License**: the lift-standard repo has **no license file** (known upstream + gap). SIL-internal use; resolve with upstream before any public release of + this package. -## lift-ranges-0.13.rng (planned, milestone M3) +## lift-ranges-0.13.rng (planned) To be authored by this project — no schema for standalone `.lift-ranges` files -exists anywhere (research finding 05). Will reuse the `range`/`range-element` -defines from `lift-0.13.rng`. +exists anywhere. Will reuse the `range`/`range-element` defines from +`lift-0.13.rng`. diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md index 92f1fd0..8573c8a 100644 --- a/tests/corpus/PROVENANCE.md +++ b/tests/corpus/PROVENANCE.md @@ -28,7 +28,7 @@ and flashgrab license/attribution cleanup. `fields any order.lift` (filename with a space — path-handling edge case). The upstream `VerifyExamples.proj` (MSBuild/Jing harness) was not taken — not corpus data. These originals also serve as version-guard fixtures - (the library rejects non-0.13 input per decision D2). + (the library rejects non-0.13 input). ## spec-examples/0.13/ — generated @@ -39,18 +39,16 @@ that script; committed so tests don't depend on regeneration. ## ranges/ — test20080407 pair - **Source**: `sillsdev/lift-standard` `LIFTDotNet/LiftIO.Tests/test20080407.lift` - + `.lift-ranges` + \+ `.lift-ranges` - **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` - **License**: none in repo (see flag above) -- The only `.lift` + external `.lift-ranges` sample pair in existence - (research finding 05); primary ranges fixture. `version="0.13"`, - `producer="hand crafted"`. +- The only known `.lift` \+ external `.lift-ranges` sample pair; primary ranges + fixture. `version="0.13"`, `producer="hand crafted"`. ## flex/AllFLExFields/ — FLEx-flavored 0.13 reference fixture - **Source**: `sillsdev/web-languageforge` - `sample_data/lift/AllFLExFields/{AllFLExFields.lift, AllFLExFields.lift-ranges, - WritingSystems/{en,fr,th}.ldml}` + `sample_data/lift/AllFLExFields/{AllFLExFields.lift, AllFLExFields.lift-ranges,WritingSystems/{en,fr,th}.ldml}` - **Commit**: `6ea4d7b0d39c0263f531e13246d5942550bf58ba` (HEAD of default branch at fetch time) - **License**: MIT @@ -68,11 +66,11 @@ that script; committed so tests don't depend on regeneration. at fetch time) - **License**: see flag above (flashgrab/Anki) - A WeSay-produced lexicon (`producer="Palaso.DictionaryServices.LiftWriter"`, - `version="0.13"`) with real referenced media: 5 wav + 2 png, including + `version="0.13"`) with real referenced media: 5 wav \+ 2 png, including `pictures/cultural law.png` (space in filename). The file has a UTF-8 BOM and tab-indented attribute-per-line formatting — a byte-fidelity edge case. Upstream `Moma.WeSayConfig` not taken (not LIFT). Primary fixture for - media_refs()/missing_media() (milestone M3). + media_refs()/missing_media(). ## misc/sample.lift @@ -80,9 +78,9 @@ that script; committed so tests don't depend on regeneration. - **Commit**: `b7857369ccca99884c911515b8ad46cd7ba0155c` (HEAD of default branch at fetch time) - **License**: none in repo (see flag above) -- **Note**: contrary to the Phase 1 triage note, this file is - `` (`producer="SIL.FLEx 2.4.0.39737"`), so - `migrate_corpus.py` also produces `misc/sample.0.13.lift` from it. +- **Note**: this file is `` + (`producer="SIL.FLEx 2.4.0.39737"`), so `migrate_corpus.py` also produces + `misc/sample.0.13.lift` from it. ## large/sango/ — real 3507-entry FLEx export @@ -90,27 +88,27 @@ that script; committed so tests don't depend on regeneration. - **Commit**: `3b2359defe6c4ac0c223864cdcff8925778538b9` (HEAD of default branch at fetch time) - **License**: MIT -- 4.8 MB / 3507 entries (`producer="SIL.FLEx 9.1.15.658"`, `version="0.13"`) + +- 4.8 MB / 3507 entries (`producer="SIL.FLEx 9.1.15.658"`, `version="0.13"`) \+ 1.5 MB ranges companion. Credit Nate Marti (SIL Cameroon) if used in any - published material (decision D1). Upstream `WritingSystems/` not taken (the - AllFLExFields fixture already covers LDML-carry). + published material. Upstream `WritingSystems/` not taken (the AllFLExFields + fixture already covers LDML-carry). ## Not fetchable as files -- **chorus / LiftTools test data** (corpus plan §C.4): verified at the Phase 1 - pinned SHAs (`7313dd6…`, `f3e87cc…`) that neither repo contains any standalone - `.lift`/`.lift-ranges` file — their LIFT test data is inline C# strings. The - C# suites remain a behavioral oracle; targeted extraction into - `negative/`/edge-case fixtures happens per-milestone (§C.5, M4). -- **libpalaso inline edge-case XML** (§C.5): extracted per-milestone as needed. -- **Enggano export** (§C.8): license/permission check pending; not fetched. +- **chorus / LiftTools test data**: verified at pinned SHAs (`7313dd6…`, + `f3e87cc…`) that neither repo contains any standalone `.lift`/`.lift-ranges` + file — their LIFT test data is inline C# strings. The C# suites remain a + behavioral oracle; targeted extraction into `negative/`/edge-case fixtures + happens as needed. +- **libpalaso inline edge-case XML**: extracted as needed. +- **Enggano export**: license/permission check pending; not fetched. ## Known RNG-invalid fixtures (kept deliberately) Validated 2026-07-14 against the vendored `lift-0.13.rng` via `lxml.etree.RelaxNG`. Two real-world quirk classes make some fixtures schema-invalid; they are kept -as-is — the library's losslessness contract (A2) must carry exactly this kind of -content, and the validator (M4) needs realistic subjects: +as-is — the library's losslessness contract must carry exactly this kind of +content, and the validator needs realistic subjects: 1. **`
` without `@lang` inside ``** — the RNG requires `@lang` on every form. Affects: `spec-examples/0.13/dialects.lift`, @@ -122,11 +120,11 @@ content, and the validator (M4) needs realistic subjects: `misc/sample.0.13.lift`, `flex/AllFLExFields/AllFLExFields.lift`, `large/sango/sango.lift`. - **M4 design implication**: the C# validator's RELAX NG engine evidently did + **Design implication**: the C# validator's RELAX NG engine evidently did not enforce anyURI syntax, so "RNG-valid" per SIL.Lift ≠ RNG-valid per lxml on real FLEx output. The validation layer must account for this (e.g. downgrade/annotate anyURI-only failures) or it will flag virtually every - FLEx lexicon. Recorded in the planning repo's Phase 3 notes. + FLEx lexicon. RNG-valid fixtures: the other 16 migrated spec examples, `ranges/test20080407.lift`, and `folder/Moma/Moma.lift` (WeSay writes relative @@ -138,18 +136,18 @@ hrefs, which pass). `tests/test_corpus.py` locks in both lists. morph-type traits). Affects `flex/AllFLExFields/AllFLExFields.lift-ranges` and `large/sango/sango.lift-ranges`; the hand-crafted `ranges/test20080407.lift-ranges` validates. Carried losslessly in - `Extras`; same M4 implication as the anyURI quirk. + `Extras`; same implication as the anyURI quirk. ## generated/ — synthetic large files (not committed) -Produced by `tests/tools/generate_large.py` for streaming/perf tests (M6); +Produced by `tests/tools/generate_large.py` for streaming/perf tests; git-ignored, regenerated on demand. -## negative/ — invalid fixtures (hand-authored, milestone M4) +## negative/ — invalid fixtures (hand-authored) Each file carries an XML comment documenting its defect and the expected Problem code: `duplicate-guid`, `dangling-ref`, `range-parent`, -`undefined-range-value` (2 warnings + a clean control entry), +`undefined-range-value` (2 warnings \+ a clean control entry), `duplicate-form-lang` (the Schematron-only rule), `schema-invalid` (structural), `missing-media/` (a folder fixture), and `flex-quirks` (URI quirks that must yield warnings, never schema errors). diff --git a/tests/test_corpus.py b/tests/test_corpus.py index 0f65e51..c5ec05e 100644 --- a/tests/test_corpus.py +++ b/tests/test_corpus.py @@ -36,9 +36,9 @@ p for p in LIFT_FILES # Only version-0.13 .lift documents are subjects of the 0.13 schema: - # .lift-ranges files have a different root (no schema exists yet — M3 authors - # one), and the 0.12 originals (spec-examples/0.12/, misc/sample.lift) are - # version-guard fixtures. + # .lift-ranges files have a different root (no schema exists yet), and the + # 0.12 originals (spec-examples/0.12/, misc/sample.lift) are version-guard + # fixtures. if p.suffix == ".lift" and "0.12" not in p.parts and p.name != "sample.lift" ] diff --git a/tests/tools/build_ranges_schema.py b/tests/tools/build_ranges_schema.py index f2ceb0e..48eaf6f 100644 --- a/tests/tools/build_ranges_schema.py +++ b/tests/tools/build_ranges_schema.py @@ -1,10 +1,10 @@ """Author schemas/lift-ranges-0.13.rng from the vendored lift-0.13.rng. -No schema for standalone ``.lift-ranges`` documents exists anywhere (research -finding 05): the LIFT RNG defines ```` only inside ``
``. This -tool builds one by copying the relevant ```` blocks verbatim from the -vendored grammar and adding a ```` root, so the range content -model stays byte-faithful to the spec's. +No known schema for standalone ``.lift-ranges`` exists: the LIFT RNG defines +```` only inside ``
``. This tool builds one by copying the +relevant ```` blocks verbatim from the vendored grammar and adding a +```` root, so the range content model stays byte-faithful to the +spec's. Usage: python tests/tools/build_ranges_schema.py """ diff --git a/tests/tools/generate_large.py b/tests/tools/generate_large.py index 2c3426e..17f7195 100644 --- a/tests/tools/generate_large.py +++ b/tests/tools/generate_large.py @@ -1,4 +1,4 @@ -"""Generate a synthetic large LIFT 0.13 file for streaming/perf tests (milestone M6). +"""Generate a synthetic large LIFT 0.13 file for streaming/perf tests. Deterministic for a given (--entries, --seed): the same arguments always produce the same bytes. Entries average roughly 1 KB, so --entries 200000 yields a file of a few From 3cecd8bf438a4c7308eefed62e3a714d84cebe4d Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 15:28:41 -0400 Subject: [PATCH 27/42] Bump actions/checkout to v7.0.0, actions/setup-python to v6.3.0 Both were several majors behind (v4->v7, v5->v6). Checked release notes: neither breaks plain checkout/setup-python usage with no special inputs, provided the runner is >= v2.327.1 -- true unconditionally for GitHub-hosted runners. upload-pages-artifact, deploy-pages, and gh-action-pypi-publish were already on latest. Co-Authored-By: Claude Fable 5 --- .github/workflows/build.yml | 4 ++-- .github/workflows/docs.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7855d29..8c0a5f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Set up Python - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 with: python-version: ${{ matrix.python-version }} - name: Install build tools diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a7767d6..f994397 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Set up Python - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 with: python-version: "3.14" - name: Install docs dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8fa6544..764137b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,9 +19,9 @@ jobs: id-token: write steps: - name: Check out the release's tagged commit - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Set up Python - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 with: python-version: "3.14" - name: Install build tools diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14b87c1..b64a0f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,9 +21,9 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Check out - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Set up Python - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 with: python-version: ${{ matrix.python-version }} - name: Install From e5947db9298469c69e6d5554330bdaa35655ddc0 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Fri, 17 Jul 2026 16:18:35 -0400 Subject: [PATCH 28/42] Fix 3 validation coverage gaps; scheme-valid dummy GUIDs in tests Review findings: stats undercounted media (missed variant.pronunciations, media_refs already covered it); dangling-ref missed refs nested in variant.relations; duplicate-form-lang only checked 3 of ~14 Multitext fields (replaced with a generic dataclass-tree walk, which also catches Multitext nested inside Annotation.content -- unbounded, not just the missed fields). Also: dummy GUIDs in test fixtures were structurally invalid UUIDs (wrong version/variant nibbles). Repeating-digit blocks are kept for at-a-glance obviousness, with -4444-8888- inserted at the version/variant positions -- valid-by-scheme, distinguishable from real data by any grep. Co-Authored-By: Claude Fable 5 --- src/sil_lift/_cli.py | 5 ++- src/sil_lift/_validate.py | 40 +++++++++++++++++------ tests/corpus/negative/dangling-ref.lift | 4 +-- tests/corpus/negative/duplicate-guid.lift | 4 +-- tests/test_canonical.py | 6 ++-- tests/test_cli.py | 19 +++++++++++ tests/test_validate.py | 36 ++++++++++++++++++-- tests/test_writer.py | 2 +- 8 files changed, 94 insertions(+), 22 deletions(-) diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index a93dd4b..85a7d27 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -61,7 +61,10 @@ def _cmd_stats(args: argparse.Namespace) -> int: entries += 1 langs.update(entry.lexical_unit.keys()) traits.update(trait.name for trait in entry.traits) - for pronunciation in entry.pronunciations: + pronunciations = list(entry.pronunciations) + for variant in entry.variants: + pronunciations.extend(variant.pronunciations) + for pronunciation in pronunciations: media += len(pronunciation.media) for sense in _iter_senses(entry): senses += 1 diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index 0523d88..d99d8cf 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -29,7 +29,7 @@ from __future__ import annotations import unicodedata -from dataclasses import dataclass +from dataclasses import dataclass, fields, is_dataclass from pathlib import Path from typing import TYPE_CHECKING, Literal @@ -37,6 +37,7 @@ from ._errors import LiftValidationError from ._model import Lexicon +from ._text import Multitext if TYPE_CHECKING: import os @@ -44,7 +45,6 @@ from ._header import Range from ._model import Entry, Sense - from ._text import Multitext __all__ = ["Problem", "iter_problems", "validate_file"] @@ -214,6 +214,29 @@ def _iter_senses(entry: Entry) -> Iterator[Sense]: stack.extend(sense.subsenses) +def _iter_multitexts(obj: object) -> Iterator[tuple[str, Multitext]]: + """Every ``Multitext`` reachable from ``obj``, generic over the model shape. + + Mirrors the RNG's Schematron ``multitext-content`` rule, which fires on + every ````-bearing element in the grammar — including forms nested + inside annotation content (``Annotation.content`` is itself a Multitext, + reachable from almost any node via ``.annotations``). Walking the + dataclass tree instead of hand-listing fields keeps this in sync as the + model grows. + """ + if isinstance(obj, list): + for item in obj: + yield from _iter_multitexts(item) + return + if not is_dataclass(obj) or isinstance(obj, type): + return + for f in fields(obj): + value = getattr(obj, f.name) + if isinstance(value, Multitext): + yield f.name.replace("_", "-"), value + yield from _iter_multitexts(value) + + def _semantic_problems( lexicon: Lexicon, entry_lines: list[tuple[int | None, str | None, str | None]], @@ -252,6 +275,8 @@ def at(index: int) -> int | None: for index, entry in enumerate(lexicon.entries): refs: list[str] = [r.ref for r in entry.relations] refs.extend(v.ref for v in entry.variants if v.ref) + for variant in entry.variants: + refs.extend(r.ref for r in variant.relations) for sense in _iter_senses(entry): refs.extend(r.ref for r in sense.relations) for ref in refs: @@ -266,15 +291,10 @@ def at(index: int) -> int | None: line=at(index), ) - # Duplicate form languages (the RNG's Schematron rule; lxml ignores it). + # Duplicate form languages (the RNG's Schematron rule; lxml ignores it) — + # every Multitext under the entry, not just the top-level ones. for index, entry in enumerate(lexicon.entries): - multitexts: list[tuple[str, Multitext]] = [ - ("lexical-unit", entry.lexical_unit), - ("citation", entry.citation), - ] - for sense in _iter_senses(entry): - multitexts.append(("definition", sense.definition)) - for label, multitext in multitexts: + for label, multitext in _iter_multitexts(entry): langs = [f.lang for f in multitext.forms if f.lang is not None] for lang in sorted({lang for lang in langs if langs.count(lang) > 1}): yield Problem( diff --git a/tests/corpus/negative/dangling-ref.lift b/tests/corpus/negative/dangling-ref.lift index e4404c0..6feec61 100644 --- a/tests/corpus/negative/dangling-ref.lift +++ b/tests/corpus/negative/dangling-ref.lift @@ -3,14 +3,14 @@ matches nothing. Expected: exactly one error dangling-ref on entry "one". Entry "two" exercises the valid target kinds (entry id, sense id). --> - + one first - +
two
diff --git a/tests/corpus/negative/duplicate-guid.lift b/tests/corpus/negative/duplicate-guid.lift index ffd1805..6329fbc 100644 --- a/tests/corpus/negative/duplicate-guid.lift +++ b/tests/corpus/negative/duplicate-guid.lift @@ -2,10 +2,10 @@ - +
one
- +
two
diff --git a/tests/test_canonical.py b/tests/test_canonical.py index 6585ce6..1145502 100644 --- a/tests/test_canonical.py +++ b/tests/test_canonical.py @@ -31,13 +31,13 @@
- +
mid
- +
last
- +
first
diff --git a/tests/test_cli.py b/tests/test_cli.py index 7007f12..46172a0 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -40,6 +40,25 @@ def test_stats_streaming_on_sango(capsys: pytest.CaptureFixture[str]) -> None: assert "sg" in out # a language present in the data +def test_stats_counts_variant_media(tmp_path: Path, capsys: pytest.CaptureFixture[str]) -> None: + # Regression: media inside a 's must count too, + # matching media_refs()/check-media rather than just top-level pronunciations. + path = tmp_path / "variant-media.lift" + path.write_bytes( + b'\n' + b'\n' + b'\n' + b'
x
\n' + b"\n" + b'\n' + b"\n" + b"
\n" + b"
\n" + ) + assert main(["stats", str(path)]) == 0 + assert "media refs: 1" in capsys.readouterr().out + + def test_sort_writes_canonical_copy(tmp_path: Path, capsys: pytest.CaptureFixture[str]) -> None: source = CORPUS_DIR / "spec-examples" / "0.13" / "subsenses.lift" out = tmp_path / "sorted.lift" diff --git a/tests/test_validate.py b/tests/test_validate.py index 481d3b1..76c8dc6 100644 --- a/tests/test_validate.py +++ b/tests/test_validate.py @@ -22,7 +22,7 @@ def test_duplicate_guid_is_error_with_addressing() -> None: (problem,) = problems assert (problem.level, problem.code) == ("error", "duplicate-guid") assert problem.entry_id == "two" - assert problem.guid == "11111111-1111-1111-1111-111111111111" + assert problem.guid == "11111111-1111-4444-8888-111111111111" assert problem.line is not None and problem.line > 1 @@ -157,7 +157,7 @@ def test_semantic_addressing_covers_added_entries() -> None: # Regression: the entry-line table must align with lexicon.entries even # after edits, so problems in appended entries get line addressing. lexicon = sil_lift.Lexicon.load(NEGATIVE_DIR / "duplicate-guid.lift") - extra = sil_lift.Entry(id="three", guid="11111111-1111-1111-1111-111111111111") + extra = sil_lift.Entry(id="three", guid="11111111-1111-4444-8888-111111111111") extra.lexical_unit["en"] = "three" lexicon.entries.append(extra) problems = [p for p in lexicon.iter_problems() if p.code == "duplicate-guid"] @@ -165,10 +165,40 @@ def test_semantic_addressing_covers_added_entries() -> None: assert all(p.line is not None for p in problems) +def test_dangling_ref_inside_variant_relation() -> None: + # Regression: relation/@ref nested inside a must be checked too, + # not just entry-level and sense-level relations. + lexicon = sil_lift.Lexicon() + entry = sil_lift.Entry(id="e1", guid="44444444-4444-4444-8888-444444444444") + entry.lexical_unit["en"] = "e1" + variant = sil_lift.Variant() + variant.relations.append(sil_lift.Relation(type="see", ref="no-such-target")) + entry.variants.append(variant) + lexicon.entries.append(entry) + problems = [p for p in lexicon.iter_problems() if p.code == "dangling-ref"] + assert len(problems) == 1 + assert "no-such-target" in problems[0].message + + +def test_duplicate_form_lang_found_in_nested_multitext() -> None: + # Regression: the check must cover every Multitext, not just lexical-unit, + # citation, and sense.definition -- a 's forms is a fourth, nested one. + lexicon = sil_lift.Lexicon() + entry = sil_lift.Entry(id="e1", guid="55555555-5555-4444-8888-555555555555") + entry.lexical_unit["en"] = "e1" + note = sil_lift.Note() + note.forms.forms.append(sil_lift.Form(lang="en", text=sil_lift.Text(["a"]))) + note.forms.forms.append(sil_lift.Form(lang="en", text=sil_lift.Text(["b"]))) + entry.notes.append(note) + lexicon.entries.append(entry) + problems = [p for p in lexicon.iter_problems() if p.code == "duplicate-form-lang"] + assert any(p.message.startswith("forms has more than one form") for p in problems) + + def test_in_memory_lexicon_validation() -> None: lexicon = sil_lift.Lexicon() for entry_id in ("a", "b"): - entry = sil_lift.Entry(id=entry_id, guid="33333333-3333-3333-3333-333333333333") + entry = sil_lift.Entry(id=entry_id, guid="66666666-6666-4444-8888-666666666666") entry.lexical_unit["en"] = entry_id lexicon.entries.append(entry) problems = list(lexicon.iter_problems()) diff --git a/tests/test_writer.py b/tests/test_writer.py index c3390cf..4d28d7b 100644 --- a/tests/test_writer.py +++ b/tests/test_writer.py @@ -128,7 +128,7 @@ def test_added_and_removed_entries(tmp_path: Path) -> None: def test_from_scratch_document(tmp_path: Path) -> None: lexicon = sil_lift.Lexicon(producer="sil-lift tests") - entry = sil_lift.Entry(id="hello", guid="00000000-0000-0000-0000-000000000001") + entry = sil_lift.Entry(id="hello", guid="00000000-0000-4444-8888-000000000000") entry.lexical_unit["en"] = "hello" sense = sil_lift.Sense() sense.glosses.append(sil_lift.Form("fr", sil_lift.Text(["bonjour"]))) From 82e4fe69a1bafae3a8cbc57b46b8ea5b89150ca3 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Mon, 20 Jul 2026 13:46:35 -0400 Subject: [PATCH 29/42] Fix audit findings: doc/comment consistency, test enforcement, writer blank line Docs and comments brought in line with the code: - README lists the export subcommand; docs build uses `mkdocs build --strict` - schemas/PROVENANCE.md: lift-ranges-0.13.rng is authored, not "planned" - cli.md stats sample shows the real sense count (4541); export = "leaf sense" - validate.md snippet defines `lex` before using it - csharp-differences.md: ranges validated as companions, no standalone entry - _cli.py drops the stale "decision-document section D" reference - test_stream.py drops the stale "implementation plan" reference - check.py docstring accurate; CONTRIBUTING documents the 90% coverage floor - _canonical.canonicalize docstring notes companions are not rewritten - _model.Lexicon.load docstring: candidates are all tried, not a "fallback" - _model find/save and RangesFile.save docstrings document their ValueError Behavior and robustness: - check.py runs pytest under --cov=sil_lift --cov-fail-under=90 (CI parity) - test_public_api no longer silently skips members whose annotations use TYPE_CHECKING-only names; it checks raw annotations for etree/lxml instead - _writer._slot_bytes: touched entries/headers/ranges no longer emit a blank line in the byte-passthrough path - _validate parses internally-rendered bytes with a hardened parser (resolve_entities=False, no_network=True) Co-Authored-By: Claude Opus 4.8 (1M context) --- CONTRIBUTING.md | 9 ++++---- README.md | 5 ++-- docs/en/csharp-differences.md | 2 +- docs/en/guides/cli.md | 7 ++++-- docs/en/guides/validate.md | 1 + scripts/check.py | 12 ++++++++-- src/sil_lift/_canonical.py | 6 +++++ src/sil_lift/_cli.py | 4 ++-- src/sil_lift/_model.py | 26 +++++++++++++++------ src/sil_lift/_validate.py | 3 ++- src/sil_lift/_writer.py | 20 ++++++++++++---- src/sil_lift/schemas/PROVENANCE.md | 10 ++++---- tests/test_public_api.py | 37 +++++++++++++++++++----------- tests/test_stream.py | 2 +- 14 files changed, 100 insertions(+), 44 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6876121..63d32f8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,15 +11,16 @@ python -m venv .venv pip install -e .[dev] ``` -Run everything CI runs (lint, format check, type-check, and tests) with one -command: +Run everything CI runs (lint, format check, type-check, and tests under a 90% +coverage floor) with one command: ``` python scripts/check.py ``` -All four must be green before a commit. `ruff format .` fixes formatting; the -rest you fix by hand. +All four must be green before a commit. The test step runs under coverage and +fails below 90% (`--cov-fail-under=90`), matching the floor CI enforces. +`ruff format .` fixes formatting; the rest you fix by hand. ## Branches, tags, releases diff --git a/README.md b/README.md index 9d8bd44..f3178dd 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,10 @@ lex.save() # untouched entries byte-identical Requires Python 3.11+; the only runtime dependency is lxml. Install [from PyPI](https://pypi.org/project/sil-lift/): `sil-lift`, or `sil-lift[cli]` -for the `sil-lift` command (`validate` / `stats` / `sort` / `check-media`). +for the `sil-lift` command (`validate` / `stats` / `sort` / `check-media` / +`export`). Documentation lives in `docs/en/` (mkdocs-material; build with -`pip install -e .[docs] && mkdocs build`). +`pip install -e .[docs] && mkdocs build --strict`). ## Fidelity guarantees diff --git a/docs/en/csharp-differences.md b/docs/en/csharp-differences.md index 2a4fc99..4bce20c 100644 --- a/docs/en/csharp-differences.md +++ b/docs/en/csharp-differences.md @@ -33,7 +33,7 @@ The C# `Validator` runs one RELAX NG pass and reports the first errors as string - **Schematron rules are enforced** (as semantic checks): duplicate form languages and similar co-constraints in the LIFT grammar were silently ignored by both C# and raw lxml validation. - **Cross-file comparisons are Unicode-normalized**, because FLEx writes the `.lift` in NFC and the companion `.lift-ranges` in NFD. -sil-lift also validates standalone `.lift-ranges` files against a schema this project authored — no such schema (or check) exists in the C# world. +sil-lift also validates the `.lift-ranges` companions of a loaded lexicon against a schema this project authored — every tracked external ranges file is checked whenever the `.lift` is validated — with no such schema (or check) in the C# world. (There is no entry point for validating a `.lift-ranges` file on its own, detached from a `.lift`.) ## Canonical sorting diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md index c1cad14..2d279f1 100644 --- a/docs/en/guides/cli.md +++ b/docs/en/guides/cli.md @@ -8,9 +8,12 @@ sil-lift stats PATH entry/sense/language counts (streaming sil-lift sort PATH [-o OUT] canonically sorted, diff-ready copy (default: in place) sil-lift check-media PATH missing and orphaned media report; exit 1 if missing sil-lift export PATH [-o OUT] [--langs L] [--tsv] - one row per sense (subsenses flattened) to CSV/TSV (streaming) + one row per leaf sense (subsenses flattened) to CSV/TSV (streaming) ``` +`sort` rewrites only the `.lift` file; companion `.lift-ranges` files are left +untouched (sort those separately with the `RangesFile` API). + Examples: ``` @@ -21,7 +24,7 @@ warning [uri-not-rfc] dictionary.lift:6: : Windows d $ sil-lift stats sango.lift entries: 3507 -senses: 4238 +senses: 4541 ... $ sil-lift export dictionary.lift --langs en,fr -o dictionary.csv diff --git a/docs/en/guides/validate.md b/docs/en/guides/validate.md index ce9db3c..5c7751f 100644 --- a/docs/en/guides/validate.md +++ b/docs/en/guides/validate.md @@ -14,6 +14,7 @@ for problem in sil_lift.iter_problems("dictionary.lift"): sil_lift.validate_file("dictionary.lift") # In-memory state (serializes first — a documented cost on large lexicons): +lex = sil_lift.load("dictionary.lift") problems = list(lex.iter_problems()) ``` diff --git a/scripts/check.py b/scripts/check.py index 6a4f4f7..cd7661b 100644 --- a/scripts/check.py +++ b/scripts/check.py @@ -1,4 +1,5 @@ -"""Local stand-in for CI while the repo has no remote: run all checks. +"""Run everything CI runs, in one command: lint, format check, type-check, and +tests under the 90% coverage floor. Usage: python scripts/check.py """ @@ -10,7 +11,14 @@ [sys.executable, "-m", "ruff", "check", "."], [sys.executable, "-m", "ruff", "format", "--check", "."], [sys.executable, "-m", "mypy"], - [sys.executable, "-m", "pytest"], + [ + sys.executable, + "-m", + "pytest", + "--cov=sil_lift", + "--cov-report=term-missing", + "--cov-fail-under=90", + ], ] diff --git a/src/sil_lift/_canonical.py b/src/sil_lift/_canonical.py index 7343f16..192f013 100644 --- a/src/sil_lift/_canonical.py +++ b/src/sil_lift/_canonical.py @@ -71,6 +71,12 @@ def canonicalize(src: str | os.PathLike[str], dst: str | os.PathLike[str]) -> No byte passthrough) — that is the point: two canonicalized files diff cleanly. Text content is never whitespace-normalized. The whole document is held in memory (sorting requires it; the C# oracle buffers too). + + Only the ``.lift`` file is written: companion ``.lift-ranges`` files are + neither read nor rewritten (the source is loaded with + ``resolve_ranges=False``). Sort a ranges file separately via + :meth:`RangesFile.sort` + :meth:`RangesFile.save`. This differs from + :meth:`Lexicon.save`, which writes every tracked companion. """ from ._writer import canonical_document diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index 85a7d27..c11e70e 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -1,4 +1,4 @@ -"""The demo CLI (decision-document section D): validate / stats / sort / check-media / export. +"""The demo CLI: validate / stats / sort / check-media / export. A LiftTools-style utility exercising every scope pillar end-to-end: validation (all three layers), streaming reads (stats, export), the canonical sort + write @@ -211,7 +211,7 @@ def main(argv: Sequence[str] | None = None) -> int: check_media.set_defaults(func=_cmd_check_media) export = subparsers.add_parser( - "export", help="flatten senses to CSV/TSV, one row per sense (streaming)" + "export", help="flatten senses to CSV/TSV, one row per leaf sense (streaming)" ) export.add_argument("path", type=Path, help="a .lift file") export.add_argument("-o", "--output", type=Path, default=None, help="default: stdout") diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 216cc54..40f1b82 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -266,7 +266,11 @@ def load(cls, path: str | os.PathLike[str]) -> RangesFile: return parse_ranges_document(Path(path)) def save(self, path: str | os.PathLike[str] | None = None) -> None: - """Write the ``.lift-ranges`` file (byte-identical when unchanged).""" + """Write the ``.lift-ranges`` file (byte-identical when unchanged). + + Raises :class:`ValueError` if no target path is available (none was + passed and the file was not loaded from disk). + """ from ._writer import render_ranges_document target = Path(path) if path is not None else self.path @@ -332,11 +336,13 @@ def load(cls, path: str | os.PathLike[str], *, resolve_ranges: bool = True) -> L """Parse a ``.lift`` file (LIFT 0.13 only) into a full object graph. With ``resolve_ranges`` (the default), companion ``.lift-ranges`` - files are loaded and tracked in :attr:`ranges_files`: any existing - file a header ``range/@href`` points at (falling back to the href's - basename next to the ``.lift`` file — FLEx hrefs are usually dangling - absolute paths from the exporting machine) plus the conventional - ``.lift-ranges`` sibling. + files are loaded and tracked in :attr:`ranges_files`. Several + candidates are tried and every one that exists is loaded: the + conventional ``.lift-ranges`` sibling, and for each header + ``range/@href`` both the href resolved as a path relative to the + ``.lift`` file and its bare basename in the same directory (FLEx + hrefs are usually dangling absolute ``file://C:/...`` paths from the + exporting machine, so the basename is what resolves locally). """ from ._reader import parse_document @@ -380,6 +386,9 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: new ``.lift`` file under their original basenames. Saving under a new name in the *same* directory leaves companions at their original paths (they are shared with the original document, not copied). + + Raises :class:`ValueError` if no target path is available (none was + passed and the lexicon was not loaded from a file). """ from ._writer import render_document @@ -483,7 +492,10 @@ def missing_media(self) -> list[MediaRef]: return missing def find(self, *, id: str | None = None, guid: str | None = None) -> Entry | None: - """The first entry matching the given id and/or guid, or None.""" + """The first entry matching the given id and/or guid, or None. + + Raises :class:`ValueError` if neither ``id`` nor ``guid`` is given. + """ if id is None and guid is None: raise ValueError("find() needs id= and/or guid=") for entry in self.entries: diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index d99d8cf..17d722e 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -49,6 +49,7 @@ __all__ = ["Problem", "iter_problems", "validate_file"] _SCHEMAS_DIR = Path(__file__).parent / "schemas" +_PARSER = etree.XMLParser(resolve_entities=False, no_network=True) @dataclass(slots=True) @@ -146,7 +147,7 @@ def _schema_problems( ) -> tuple[list[tuple[int | None, str | None, str | None]], list[Problem]]: """Validate one document; returns (per-entry line/id/guid table, problems).""" problems: list[Problem] = [] - root = etree.fromstring(data) + root = etree.fromstring(data, parser=_PARSER) _group_children_by_tag(root, is_root=True) entry_lines: list[tuple[int | None, str | None, str | None]] = [] for child in root: diff --git a/src/sil_lift/_writer.py b/src/sil_lift/_writer.py index eba5dab..4ced3a7 100644 --- a/src/sil_lift/_writer.py +++ b/src/sil_lift/_writer.py @@ -660,6 +660,18 @@ def canonical_document( return b"".join(parts) +def _slot_bytes(chunk: bytes) -> bytes: + """Fit a re-serialized node into a passthrough matrix slot. + + In :func:`canonical_document` a node's chunk ends with a newline that *is* + the separator between chunks. In the passthrough path the surrounding + matrix already supplies those separators, so a re-serialized (touched) + node's trailing newline would double up into a blank line. Original-byte + spans reused verbatim end at ``>`` and are unaffected. + """ + return chunk[:-1] if chunk.endswith(b"\n") else chunk + + def _root_unchanged(lexicon: Lexicon, source: _SourceInfo) -> bool: return ( lexicon.producer == source.producer @@ -736,7 +748,7 @@ def render_document(lexicon: Lexicon) -> bytes: had_header = any(span.tag == "header" for span in source.children) if not had_header and lexicon.header: - parts.append(b"\n" + header_fn(lexicon.header)) + parts.append(b"\n" + _slot_bytes(header_fn(lexicon.header))) entry_index = 0 for span in source.children: @@ -744,9 +756,9 @@ def render_document(lexicon: Lexicon) -> bytes: if span.tag == "header": # Unconditional (even for a now-empty Header): the digest check # inside header_fn restores the original bytes when unchanged. - parts.append(header_fn(lexicon.header)) + parts.append(_slot_bytes(header_fn(lexicon.header))) elif span.tag == "entry": - parts.append(entry_fn(lexicon.entries[entry_index])) + parts.append(_slot_bytes(entry_fn(lexicon.entries[entry_index]))) entry_index += 1 else: parts.append(data[span.start : span.end]) @@ -830,7 +842,7 @@ def render_ranges_document(ranges_file: RangesFile) -> bytes: for span in source.children: parts.append(data[position : span.start]) if span.tag == "range": - parts.append(range_fn(ranges_file.ranges[range_index])) + parts.append(_slot_bytes(range_fn(ranges_file.ranges[range_index]))) range_index += 1 else: parts.append(data[span.start : span.end]) diff --git a/src/sil_lift/schemas/PROVENANCE.md b/src/sil_lift/schemas/PROVENANCE.md index f93e334..6adc4c6 100644 --- a/src/sil_lift/schemas/PROVENANCE.md +++ b/src/sil_lift/schemas/PROVENANCE.md @@ -13,8 +13,10 @@ gap). SIL-internal use; resolve with upstream before any public release of this package. -## lift-ranges-0.13.rng (planned) +## lift-ranges-0.13.rng -To be authored by this project — no schema for standalone `.lift-ranges` files -exists anywhere. Will reuse the `range`/`range-element` defines from -`lift-0.13.rng`. +- **Source**: authored by this project — no schema for standalone + `.lift-ranges` files exists upstream. Built from the `range`/`range-element` + defines of the vendored `lift-0.13.rng` so the content model matches the + spec exactly (regenerate with `tests/tools/build_ranges_schema.py`). +- **License**: MIT (this project's own; see `LICENSE`). diff --git a/tests/test_public_api.py b/tests/test_public_api.py index 53a0d24..31052bd 100644 --- a/tests/test_public_api.py +++ b/tests/test_public_api.py @@ -1,32 +1,41 @@ import inspect -import typing import sil_lift -def _hint_names(obj: object) -> list[str]: - try: - hints = typing.get_type_hints(obj) - except Exception: - return [] - return [repr(hint) for hint in hints.values()] +def _annotation_strings(obj: object) -> list[str]: + """Raw source annotations for a function or class. + + Static (PEP 563 strings) rather than resolved: ``typing.get_type_hints`` + raises on the TYPE_CHECKING-only imports several public signatures use + (``os``, ``Iterator``, ...), and silently skipping those members — as an + earlier ``try/except: return []`` did — let the check pass without ever + examining them. lxml only ever enters this codebase as ``from lxml import + etree``, so a leak is always visible in the source text as an ``etree.`` + (or ``lxml``) reference; no resolution is needed to catch it. + """ + return [str(hint) for hint in getattr(obj, "__annotations__", {}).values()] + + +def _leaks_lxml(annotation: str) -> bool: + return "lxml" in annotation or "etree." in annotation def test_no_lxml_in_public_annotations() -> None: offenders: list[str] = [] for name in sil_lift.__all__: public = getattr(sil_lift, name) - for hint in _hint_names(public): - if "lxml" in hint: - offenders.append(f"{name}: {hint}") + offenders += [f"{name}: {a}" for a in _annotation_strings(public) if _leaks_lxml(a)] if inspect.isclass(public): for member_name, member in inspect.getmembers(public): - if member_name.startswith("_") and member_name not in ("__init__",): + if member_name.startswith("_") and member_name != "__init__": continue if inspect.isfunction(member): - for hint in _hint_names(member): - if "lxml" in hint: - offenders.append(f"{name}.{member_name}: {hint}") + offenders += [ + f"{name}.{member_name}: {a}" + for a in _annotation_strings(member) + if _leaks_lxml(a) + ] assert not offenders, f"lxml types leaked into the public API: {offenders}" diff --git a/tests/test_stream.py b/tests/test_stream.py index 018d3c8..6fadfbc 100644 --- a/tests/test_stream.py +++ b/tests/test_stream.py @@ -108,7 +108,7 @@ class PROCESS_MEMORY_COUNTERS(ctypes.Structure): # The default run uses a ~35 MB file (quick); set SIL_LIFT_PERF=1 for the -# multi-hundred-MB variant the implementation plan calls for. +# multi-hundred-MB variant. _PERF = os.environ.get("SIL_LIFT_PERF") == "1" _ENTRIES = 400_000 if _PERF else 40_000 From e55c88b86a754d72c8c6b47f05ca5bd3592187e1 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Mon, 20 Jul 2026 14:38:45 -0400 Subject: [PATCH 30/42] Fix canonical-output gluing, header wrapper residue, and duplicate headers - Canonical serialization (canonical_document / canonical_ranges_document) now guarantees a newline separator between chunks, so byte-reused (untouched) spans no longer glue to their neighbors when a structural edit (add/remove/reorder) routes through the canonical fallback. Pure-canonical output is unchanged, since its chunks already end in a newline. - Header gains ranges_extra / fields_extra: out-of-schema residue on the / wrapper elements (unknown attributes, stray nodes) now stays on the wrapper instead of migrating up onto
during canonical re-serialization. The reader test is updated to assert the new attribution. - The duplicate-
guard tracks whether a header has been seen instead of testing Header truthiness, so an empty first
is treated as the model header and a second
is preserved as residue rather than silently overwriting it. - AGENTS.md documents that the hard-wrapped root docs backslash-escape bare Markdown list markers (e.g. `sort \+ save`) so a reflow cannot turn them into stray bullets, and that docs/en/ (not hard-wrapped) needs no such escaping. Co-Authored-By: Claude Opus 4.8 (1M context) --- AGENTS.md | 6 ++++++ src/sil_lift/_header.py | 20 ++++++++++++++++++-- src/sil_lift/_reader.py | 16 ++++++++++------ src/sil_lift/_writer.py | 19 +++++++++++++------ tests/test_reader.py | 6 ++++-- 5 files changed, 51 insertions(+), 16 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 5679d71..d0c1a5b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -10,3 +10,9 @@ Not covered there: creation, issue or PR creations, PyPI publishing, or posting anywhere. - No destructive actions ever — no force push, branch deletion, or changing repo settings. +- Root-level prose docs (`README.md`, `CHANGELOG.md`, `CONTRIBUTING.md`, this + file) are hard-wrapped, so a bare Markdown list marker (`+`, `-`, `*`) can be + pushed to the start of a re-wrapped line and render as a stray bullet. Where + that can bite — e.g. `sort \+ save` in the changelog — the marker is + backslash-escaped on purpose; keep the `\`. `docs/en/` is not hard-wrapped + (one line per paragraph), so it uses no such escaping. diff --git a/src/sil_lift/_header.py b/src/sil_lift/_header.py index ac56ddd..19d61aa 100644 --- a/src/sil_lift/_header.py +++ b/src/sil_lift/_header.py @@ -58,12 +58,28 @@ class Range: @dataclass(slots=True, kw_only=True) class Header: - """The optional ``
``: description, ranges, field definitions.""" + """The optional ``
``: description, ranges, field definitions. + + ``ranges_extra`` / ``fields_extra`` carry out-of-schema residue found on + the ```` / ```` wrapper elements themselves (unknown + attributes, stray nodes). Those wrappers have no model object of their + own, so their residue is kept apart from the header's and re-emitted onto + the wrapper rather than migrating up onto ``
``. + """ description: Multitext = field(default_factory=Multitext) ranges: list[Range] = field(default_factory=list) fields: list[FieldDefinition] = field(default_factory=list) extra: Extras = field(default_factory=Extras) + ranges_extra: Extras = field(default_factory=Extras) + fields_extra: Extras = field(default_factory=Extras) def __bool__(self) -> bool: - return bool(self.description or self.ranges or self.fields or self.extra) + return bool( + self.description + or self.ranges + or self.fields + or self.extra + or self.ranges_extra + or self.fields_extra + ) diff --git a/src/sil_lift/_reader.py b/src/sil_lift/_reader.py index 0543b72..6fd140b 100644 --- a/src/sil_lift/_reader.py +++ b/src/sil_lift/_reader.py @@ -156,10 +156,14 @@ def parse_root(root: etree._Element, *, path: Path | None = None) -> Lexicon: attrs = _split_attrs(root, ("version", "producer"), lexicon.extra) lexicon.producer = attrs.get("producer") + header_seen = False + def handle_header(el: etree._Element) -> None: - if lexicon.header: - _push_node(lexicon.extra, el) # duplicate
is out-of-schema + nonlocal header_seen + if header_seen: # a second
, even after an empty first, is out-of-schema + _push_node(lexicon.extra, el) else: + header_seen = True lexicon.header = _parse_header(el) _walk( @@ -639,18 +643,18 @@ def _parse_header(el: etree._Element) -> Header: _split_attrs(el, (), header.extra) def handle_ranges(ranges_el: etree._Element) -> None: - _split_attrs(ranges_el, (), header.extra) + _split_attrs(ranges_el, (), header.ranges_extra) _walk( ranges_el, - header.extra, + header.ranges_extra, {"range": lambda c: header.ranges.append(_parse_range(c))}, ) def handle_fields(fields_el: etree._Element) -> None: - _split_attrs(fields_el, (), header.extra) + _split_attrs(fields_el, (), header.fields_extra) _walk( fields_el, - header.extra, + header.fields_extra, {"field": lambda c: header.fields.append(_parse_field_definition(c))}, ) diff --git a/src/sil_lift/_writer.py b/src/sil_lift/_writer.py index 4ced3a7..c3e7018 100644 --- a/src/sil_lift/_writer.py +++ b/src/sil_lift/_writer.py @@ -580,14 +580,18 @@ def _header_el(header: Header) -> etree._Element: el = _element("header", [], header.extra) if header.description: el.append(_multitext_el("description", header.description)) - if header.ranges: - ranges_el = etree.SubElement(el, "ranges") + if header.ranges or header.ranges_extra: + ranges_el = _element("ranges", [], header.ranges_extra) + el.append(ranges_el) for range_ in header.ranges: ranges_el.append(_range_el(range_)) - if header.fields: - fields_el = etree.SubElement(el, "fields") + _apply_extra_nodes(ranges_el, header.ranges_extra) + if header.fields or header.fields_extra: + fields_el = _element("fields", [], header.fields_extra) + el.append(fields_el) for definition in header.fields: fields_el.append(_field_definition_el(definition)) + _apply_extra_nodes(fields_el, header.fields_extra) _apply_extra_nodes(el, header.extra) return el @@ -655,7 +659,9 @@ def canonical_document( position = min(node.index, len(chunks)) chunks.insert(position, node.xml.encode("utf-8") + b"\n") parts = [b'\n', _root_open_bytes(lexicon), b"\n"] - parts.extend(chunks) + # Each chunk's trailing newline is the inter-chunk separator. Byte-reused + # (untouched) spans end at ">", so top them up to avoid gluing neighbors. + parts.extend(chunk if chunk.endswith(b"\n") else chunk + b"\n" for chunk in chunks) parts.append(b"\n") return b"".join(parts) @@ -784,7 +790,8 @@ def canonical_ranges_document( root = _element("lift-ranges", [], ranges_file.extra) serialized = etree.tostring(root, encoding="unicode").encode("utf-8") parts = [b'\n', serialized[:-2] + b">", b"\n"] - parts.extend(chunks) + # See canonical_document: top up reused spans so neighbors don't glue. + parts.extend(chunk if chunk.endswith(b"\n") else chunk + b"\n" for chunk in chunks) parts.append(b"\n") return b"".join(parts) diff --git a/tests/test_reader.py b/tests/test_reader.py index fad189c..22add05 100644 --- a/tests/test_reader.py +++ b/tests/test_reader.py @@ -130,8 +130,10 @@ def test_all_flex_fields_spot_check() -> None: "summary-definition", "scientific-name", ] - # The two comments inside are carried as header residue. - assert header.extra + # The two comments inside are carried as the wrapper's + # own residue, not hoisted onto the header. + assert header.ranges_extra + assert not header.extra entry = lexicon.find(guid="0a18bb95-0eb2-422e-bf7e-c1fd90274670") assert entry is not None From fe65d6f4fd17496cd8b21c8059e445cd62887aeb Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Tue, 21 Jul 2026 14:18:05 -0400 Subject: [PATCH 31/42] Add JSON, strict, and no-check-media options to CLI validate `sil-lift validate` now accepts: - `--format json`: emit findings as a single JSON object (a problems array plus an errors/warnings summary) instead of human text, for machine consumption. - `--strict`: treat warnings as errors, exiting 1 on any warning. - `--no-check-media`: skip the filesystem media-presence check, suppressing missing-media findings (noise when validating a freshly generated export whose media lives elsewhere). Document the flags and a JSON example in the CLI guide, note that validate's exit codes and JSON schema are a supported, SemVer-covered interface, and drop the "demo" framing from the CLI's description. Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 5 +++- docs/en/guides/cli.md | 40 ++++++++++++++++++++++++--- pyproject.toml | 2 +- src/sil_lift/_cli.py | 63 ++++++++++++++++++++++++++++++++++++------- tests/test_cli.py | 31 +++++++++++++++++++++ 5 files changed, 126 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a04b33e..2f6c348 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -60,7 +60,10 @@ releases may contain breaking changes. - The `sil-lift` CLI (stdlib-only, installed via the `[cli]` extra): `validate` / `stats` / `sort` / `check-media`, plus `export` — one row per leaf sense (subsenses flattened) to CSV/TSV, streaming; analysis languages - auto-detected or set with `--langs`. + auto-detected or set with `--langs`. `validate` supports `--format json` + (machine-readable findings), `--strict` (warnings become errors), and + `--no-check-media` (skip the filesystem media-presence check); its exit + codes and JSON schema are a supported interface. - Documentation site: task-oriented guides, the fidelity contract, generated API reference, localization-ready configuration; includes a worked example ("bulk-editing glosses", complete runnable script with verified output) and diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md index 2d279f1..5c91045 100644 --- a/docs/en/guides/cli.md +++ b/docs/en/guides/cli.md @@ -1,9 +1,10 @@ # The command line -`pip install sil-lift[cli]` provides the `sil-lift` command — a small LiftTools-style utility (and a worked example of the library API). +`pip install sil-lift[cli]` provides the `sil-lift` command — a supported LiftTools-style tool that ships with the package (and, for `validate`, a worked example of the library API). ``` -sil-lift validate PATH all problems, entry/line-addressed; exit 1 on errors +sil-lift validate PATH [--format {text,json}] [--strict] [--no-check-media] + all problems, entry/line-addressed; exit 1 on errors sil-lift stats PATH entry/sense/language counts (streaming; any size) sil-lift sort PATH [-o OUT] canonically sorted, diff-ready copy (default: in place) sil-lift check-media PATH missing and orphaned media report; exit 1 if missing @@ -11,6 +12,11 @@ sil-lift export PATH [-o OUT] [--langs L] [--tsv] one row per leaf sense (subsenses flattened) to CSV/TSV (streaming) ``` +`--format json` writes a single JSON object to stdout (and nothing else) for CI/automation consumption; see the schema in the example below. `--strict` treats warnings as errors, exiting 1 if any are found — use it to gate a build on a clean bill of health rather than errors alone. `--no-check-media` skips the filesystem media-presence check (suppressing `missing-media` findings), which is useful when validating a freshly generated export whose audio/photo files live elsewhere and aren't colocated on disk. + +!!! note + `validate`'s exit codes and `--format json` schema are a supported automation interface: both are covered by tests and change only under SemVer. + `sort` rewrites only the `.lift` file; companion `.lift-ranges` files are left untouched (sort those separately with the `RangesFile` API). @@ -22,6 +28,34 @@ error [dangling-ref] dictionary.lift:88 (entry apu): ref 'nope' matches no entry warning [uri-not-rfc] dictionary.lift:6: : Windows drive letter used as URI authority (FLEx-style file://C:/) 1 error(s), 1 warning(s) +$ sil-lift validate dictionary.lift --format json +{ + "problems": [ + { + "level": "error", + "code": "dangling-ref", + "message": "ref 'nope' matches no entry id/guid or sense id", + "file": "dictionary.lift", + "entry_id": "apu", + "guid": null, + "line": 88 + }, + { + "level": "warning", + "code": "uri-not-rfc", + "message": ": Windows drive letter used as URI authority (FLEx-style file://C:/)", + "file": "dictionary.lift", + "entry_id": null, + "guid": null, + "line": 6 + } + ], + "summary": { + "errors": 1, + "warnings": 1 + } +} + $ sil-lift stats sango.lift entries: 3507 senses: 4541 @@ -30,4 +64,4 @@ senses: 4541 $ sil-lift export dictionary.lift --langs en,fr -o dictionary.csv ``` -Exit codes: `0` success (warnings allowed), `1` findings (validation errors / missing media), `2` unreadable input. +Exit codes: `0` success (warnings allowed, unless `--strict`), `1` findings (validation errors / missing media / warnings under `--strict`), `2` unreadable input. diff --git a/pyproject.toml b/pyproject.toml index 44d3fee..c278854 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ Forum = "https://community.software.sil.org/c/other/" sil-lift = "sil_lift._cli:main" [project.optional-dependencies] -# The demo CLI uses only the stdlib, so this extra is empty; it exists so +# The CLI uses only the stdlib, so this extra is empty; it exists so # `pip install sil-lift[cli]` stays the documented install for CLI users. cli = [] dev = [ diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index c11e70e..8996418 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -1,14 +1,18 @@ -"""The demo CLI: validate / stats / sort / check-media / export. +"""The ``sil-lift`` command line: validate / stats / sort / check-media / export. A LiftTools-style utility exercising every scope pillar end-to-end: validation (all three layers), streaming reads (stats, export), the canonical sort + write path (sort), and the folder/media model (check-media). Deliberately stdlib-only. + +``validate`` is a supported interface for automation: its exit codes and +``--format json`` schema are covered by tests and change only under SemVer. """ from __future__ import annotations import argparse import csv +import json import sys from collections import Counter from pathlib import Path @@ -26,20 +30,48 @@ from ._model import Entry, Sense from ._text import Text + from ._validate import Problem __all__ = ["main"] +def _problem_json(problem: Problem) -> dict[str, object]: + return { + "level": problem.level, + "code": problem.code, + "message": problem.message, + "file": problem.file.name if problem.file else None, + "entry_id": problem.entry_id, + "guid": problem.guid, + "line": problem.line, + } + + def _cmd_validate(args: argparse.Namespace) -> int: - errors = warnings = 0 - for problem in iter_problems(args.path): - print(problem) - if problem.level == "error": - errors += 1 - else: - warnings += 1 - print(f"{errors} error(s), {warnings} warning(s)") - return 1 if errors else 0 + problems = [ + problem + for problem in iter_problems(args.path) + if not (args.no_check_media and problem.code == "missing-media") + ] + errors = sum(1 for problem in problems if problem.level == "error") + warnings = len(problems) - errors + failed = bool(errors) or (args.strict and bool(warnings)) + if args.format == "json": + json.dump( + { + "problems": [_problem_json(problem) for problem in problems], + "summary": {"errors": errors, "warnings": warnings}, + }, + sys.stdout, + indent=2, + ) + print() + else: + for problem in problems: + print(problem) + strict_note = " (strict: warnings treated as errors)" if args.strict and warnings else "" + print(f"{errors} error(s), {warnings} warning(s){strict_note}") + return 1 if failed else 0 def _iter_senses(entry: Entry) -> list[Sense]: @@ -193,6 +225,17 @@ def main(argv: Sequence[str] | None = None) -> int: "validate", help="schema + semantic validation; exit 1 on errors" ) validate.add_argument("path", type=Path, help="a .lift file") + validate.add_argument( + "--format", choices=("text", "json"), default="text", help="output format (default: text)" + ) + validate.add_argument( + "--strict", action="store_true", help="treat warnings as errors (exit 1 on any warning)" + ) + validate.add_argument( + "--no-check-media", + action="store_true", + help="skip the filesystem media-presence check (suppresses missing-media findings)", + ) validate.set_defaults(func=_cmd_validate) stats = subparsers.add_parser("stats", help="entry/sense/language counts (streaming)") diff --git a/tests/test_cli.py b/tests/test_cli.py index 46172a0..687f0cb 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,4 +1,5 @@ import csv +import json import shutil from pathlib import Path @@ -27,6 +28,36 @@ def test_validate_warnings_only_exits_0(capsys: pytest.CaptureFixture[str]) -> N assert "uri-not-rfc" in capsys.readouterr().out +def test_validate_json_reports_findings(capsys: pytest.CaptureFixture[str]) -> None: + path = CORPUS_DIR / "negative" / "duplicate-guid.lift" + assert main(["validate", str(path), "--format", "json"]) == 1 + payload = json.loads(capsys.readouterr().out) + assert payload["summary"]["errors"] >= 1 + assert any(problem["code"] == "duplicate-guid" for problem in payload["problems"]) + + +def test_validate_json_clean_file(capsys: pytest.CaptureFixture[str]) -> None: + path = CORPUS_DIR / "ranges" / "test20080407.lift" + assert main(["validate", str(path), "--format", "json"]) == 0 + payload = json.loads(capsys.readouterr().out) + assert payload == {"problems": [], "summary": {"errors": 0, "warnings": 0}} + + +def test_validate_strict_treats_warnings_as_errors(capsys: pytest.CaptureFixture[str]) -> None: + path = CORPUS_DIR / "negative" / "flex-quirks.lift" + assert main(["validate", str(path)]) == 0 # warnings alone pass by default + assert main(["validate", str(path), "--strict"]) == 1 + assert "strict: warnings treated as errors" in capsys.readouterr().out + + +def test_validate_no_check_media(capsys: pytest.CaptureFixture[str]) -> None: + path = CORPUS_DIR / "negative" / "missing-media" / "missing-media.lift" + assert main(["validate", str(path)]) == 0 + assert "[missing-media]" in capsys.readouterr().out + assert main(["validate", str(path), "--no-check-media"]) == 0 + assert "[missing-media]" not in capsys.readouterr().out + + def test_filename_with_space(capsys: pytest.CaptureFixture[str]) -> None: path = CORPUS_DIR / "spec-examples" / "0.13" / "fields any order.lift" assert main(["stats", str(path)]) == 0 From 0065b081cebf011be8da9f2758ee5ef317085e0c Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Tue, 21 Jul 2026 14:18:11 -0400 Subject: [PATCH 32/42] Note in AGENTS.md that commit messages must be self-contained Commit messages should describe the diff and stand on their own, without referencing conversation, tasks, audits, or review context. Co-Authored-By: Claude Opus 4.8 (1M context) --- AGENTS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index d0c1a5b..6877366 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -10,6 +10,10 @@ Not covered there: creation, issue or PR creations, PyPI publishing, or posting anywhere. - No destructive actions ever — no force push, branch deletion, or changing repo settings. +- Commit messages describe the commit's diff and stand on their own. Do not + reference conversation, tasks, audits, review rounds, or other outside context + ("as requested", "fixes audit finding", "per feedback") — a reader with only + the diff should understand the message fully. - Root-level prose docs (`README.md`, `CHANGELOG.md`, `CONTRIBUTING.md`, this file) are hard-wrapped, so a bare Markdown list marker (`+`, `-`, `*`) can be pushed to the start of a re-wrapped line and render as a stray bullet. Where From 605b200458e2771031fa530f4e820635de923391 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Tue, 21 Jul 2026 20:10:56 -0400 Subject: [PATCH 33/42] Add LIFT-export tooling: builders, validator checks, CLI, container Support producing and validating LIFT exports. Construction API for building LIFT from scratch: - `Lexicon.add_ranges_file()` attaches a `.lift-ranges` companion and adds the header `` references; `save()` writes a path-less companion beside the target `.lift`. - `RangesFile.add_range()` and `Range.add_element()` builder helpers. - `open_writer(..., ranges=...)` emits the companion on the streaming path. Validation: - `dangling-ranges-href` warning when a relative header `range/@href` resolves to no companion (absolute/file:// FLEx-style hrefs are exempt). - `missing-id` errors for entries without a guid or senses without an id, opt-in via `iter_problems(require_ids=True)`. CLI: - `validate --require-ids`, `validate -` (read from stdin), and `stats --format json`. Container and GitHub Action wrapping `sil-lift validate` (`Dockerfile`, `action.yml`, `docker-entrypoint.sh`, container build workflow) so a non-Python CI pipeline can run the conformance check with no local Python toolchain. Docs: a "Producing conformant LIFT" guide covering the conformance gate, the `.lift-ranges` companion shape, and the multitext and XML-escaping rules. Co-Authored-By: Claude Opus 4.8 (1M context) --- .dockerignore | 10 +++ .github/workflows/container.yml | 27 ++++++++ CHANGELOG.md | 24 +++++-- Dockerfile | 27 ++++++++ action.yml | 27 ++++++++ docker-entrypoint.sh | 32 +++++++++ docs/en/guides/lift-export-interop.md | 99 +++++++++++++++++++++++++++ mkdocs.yml | 1 + src/sil_lift/_cli.py | 64 +++++++++++++---- src/sil_lift/_header.py | 12 ++++ src/sil_lift/_model.py | 48 +++++++++++-- src/sil_lift/_stream.py | 29 ++++++-- src/sil_lift/_validate.py | 73 +++++++++++++++++--- tests/test_cli.py | 43 ++++++++++++ tests/test_ranges_folder.py | 31 +++++++++ tests/test_stream.py | 15 ++++ tests/test_validate.py | 64 +++++++++++++++++ 17 files changed, 591 insertions(+), 35 deletions(-) create mode 100644 .dockerignore create mode 100644 .github/workflows/container.yml create mode 100644 Dockerfile create mode 100644 action.yml create mode 100644 docker-entrypoint.sh create mode 100644 docs/en/guides/lift-export-interop.md diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..de92962 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,10 @@ +.venv/ +.git/ +.mypy_cache/ +.ruff_cache/ +.pytest_cache/ +.hypothesis/ +site/ +__pycache__/ +.coverage +tests/ diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml new file mode 100644 index 0000000..c0b60b5 --- /dev/null +++ b/.github/workflows/container.yml @@ -0,0 +1,27 @@ +name: Container + +on: + push: + branches: [main] + pull_request: + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: Build image + run: docker build -t sil-lift:ci . + - name: Smoke test + run: | + tmp="$(mktemp -d)" + cat > "$tmp/smoke.lift" <<'EOF' + +
x
+ EOF + cd "$tmp" + docker run --rm -v "$PWD:/work" -w /work sil-lift:ci validate smoke.lift --format json diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f6c348..54e5477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,8 +35,11 @@ releases may contain breaking changes. - LIFT-folder handling: `RangesFile` (standalone `.lift-ranges` documents, same fidelity guarantees), automatic companion discovery/tracking on load (`Lexicon.ranges_files`), `save()` writes companions together, - `all_ranges()` merged view, `media_refs()` / `missing_media()` helpers; - authored `schemas/lift-ranges-0.13.rng` — the first schema for standalone + `all_ranges()` merged view, `media_refs()` / `missing_media()` helpers, + build-from-scratch helpers `Lexicon.add_ranges_file()` / + `RangesFile.add_range()` / `Range.add_element()` (`save()` writes and + header-references a new companion beside the `.lift`); authored + `schemas/lift-ranges-0.13.rng` — the first schema for standalone ranges documents (spec-faithful, built from the vendored grammar's own defines). - Validation: `validate_file()` / `iter_problems()` / @@ -45,7 +48,8 @@ releases may contain breaking changes. libxml2 (href masking with `uri-not-rfc` warnings; tag-grouped validation to sidestep libxml2's interleave limitation); authored ranges schema over companions; semantic checks: duplicate-guid, dangling-ref, range-parent, - undefined-range-value (NFC-normalized), duplicate-form-lang, missing-media. + undefined-range-value (NFC-normalized), duplicate-form-lang, missing-media, + dangling-ranges-href, and (opt-in via `require_ids`) missing-id. - Canonical sort: `Lexicon.sort()` / `RangesFile.sort()` (entries by case-folded guid/id, ranges/range-elements by id, field definitions by tag; informed by the C# LiftSorter, locale-independent) and @@ -54,16 +58,22 @@ releases may contain breaking changes. without rewriting them. Text whitespace is never normalized. - Streaming: `open_reader()` (lazy entry iterator with the parsed header available up front) and `open_writer()` (header \+ one canonical chunk per - entry; byte-identical to `canonical_document` output by construction), both + entry; byte-identical to `canonical_document` output by construction, and + optionally writing a `.lift-ranges` companion via `ranges=`), both over the same `Entry` types as full-document mode and O(one entry) in memory (verified on a ~340 MB generated file). - The `sil-lift` CLI (stdlib-only, installed via the `[cli]` extra): `validate` / `stats` / `sort` / `check-media`, plus `export` — one row per leaf sense (subsenses flattened) to CSV/TSV, streaming; analysis languages auto-detected or set with `--langs`. `validate` supports `--format json` - (machine-readable findings), `--strict` (warnings become errors), and - `--no-check-media` (skip the filesystem media-presence check); its exit - codes and JSON schema are a supported interface. + (machine-readable findings), `--strict` (warnings become errors), + `--no-check-media` (skip the filesystem media-presence check), + `--require-ids` (error on entries/senses missing a stable id), and `-` to + read from stdin; `stats` also takes `--format json`. `validate`'s exit codes + and JSON schema are a supported interface. +- Container image and GitHub Action wrapping `sil-lift validate`, so a + non-Python CI pipeline can run the conformance check with no local Python + toolchain (`Dockerfile`, `action.yml`, `docker-entrypoint.sh`). - Documentation site: task-oriented guides, the fidelity contract, generated API reference, localization-ready configuration; includes a worked example ("bulk-editing glosses", complete runnable script with verified output) and diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..21458b7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ +# syntax=docker/dockerfile:1 + +# Build stage: install sil-lift from the local source tree into a throwaway +# prefix, so the final image carries only the installed package, not the +# source tree or pip's build-time footprint. +FROM python:3.13-slim@sha256:6771159cd4fa5d9bba1258caf0b82e6b73458c694d178ad97c5e925c2d0e1a91 AS builder + +WORKDIR /src + +COPY pyproject.toml README.md LICENSE ./ +COPY src ./src + +# lxml>=5 ships manylinux wheels, so this needs no compiler/apt packages. +RUN pip install --no-cache-dir --prefix=/install . + +FROM python:3.13-slim@sha256:6771159cd4fa5d9bba1258caf0b82e6b73458c694d178ad97c5e925c2d0e1a91 + +COPY --from=builder /install /usr/local + +COPY docker-entrypoint.sh /docker-entrypoint.sh +RUN chmod +x /docker-entrypoint.sh + +# Plain `docker run validate ...` uses this entrypoint directly; the +# GitHub Action (action.yml) overrides it with /docker-entrypoint.sh, which +# turns the action's optional/boolean inputs into CLI flags before exec'ing +# this same command. +ENTRYPOINT ["sil-lift"] diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..1c3a789 --- /dev/null +++ b/action.yml @@ -0,0 +1,27 @@ +name: "sil-lift validate" +description: >- + Validate a LIFT (Lexicon Interchange Format) lexicon file with sil-lift -- + no Python toolchain required. +inputs: + path: + description: "Path to the .lift file to validate, relative to the workspace." + required: true + format: + description: "Output format: text or json." + required: false + default: "text" + strict: + description: "Treat warnings as errors (exit 1 if any are found)." + required: false + default: "false" + no-check-media: + description: "Skip the filesystem media-presence check." + required: false + default: "false" +runs: + using: "docker" + image: "Dockerfile" + entrypoint: "/docker-entrypoint.sh" +branding: + icon: "check-circle" + color: "green" diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh new file mode 100644 index 0000000..ac6be29 --- /dev/null +++ b/docker-entrypoint.sh @@ -0,0 +1,32 @@ +#!/bin/bash +# Entrypoint for the "sil-lift validate" Docker/GitHub Action. +# +# Docker-action `args:` are static, so they can't conditionally add flags +# for boolean inputs. This script reads the GitHub-supplied INPUT_* env +# vars and builds the `sil-lift validate` argument list instead, then +# execs it so sil-lift's exit code (0/1/2) propagates unchanged. +# +# bash, not /bin/sh, on purpose: GitHub only replaces spaces with `_` when +# deriving INPUT_ env vars, so the `no-check-media` input's hyphen +# survives literally as INPUT_NO-CHECK-MEDIA -- not a valid shell +# identifier. dash (this image's /bin/sh) discards any env var whose name +# isn't a valid identifier before the script body even runs, so under +# /bin/sh the value is unrecoverable by the time this script starts +# (verified: `sh -c 'printenv "INPUT_NO-CHECK-MEDIA"'` fails, even though +# the var is present in the container's env). bash does not filter the +# environment this way, so `printenv` can still retrieve it here. +set -eu + +no_check_media=$(printenv 'INPUT_NO-CHECK-MEDIA' 2>/dev/null || printenv INPUT_NO_CHECK_MEDIA 2>/dev/null || echo false) + +set -- validate "$INPUT_PATH" --format "${INPUT_FORMAT:-text}" + +if [ "${INPUT_STRICT:-false}" = "true" ]; then + set -- "$@" --strict +fi + +if [ "$no_check_media" = "true" ]; then + set -- "$@" --no-check-media +fi + +exec sil-lift "$@" diff --git a/docs/en/guides/lift-export-interop.md b/docs/en/guides/lift-export-interop.md new file mode 100644 index 0000000..985662c --- /dev/null +++ b/docs/en/guides/lift-export-interop.md @@ -0,0 +1,99 @@ +# Producing conformant LIFT + +This guide is for anyone writing a LIFT *exporter* — code in any language that turns another application's data model into LIFT 0.13. `sil-lift` serves two roles for that work: a conformance gate that checks the output against the schema and the semantics a schema can't express, and a reference for the shapes and text rules the output must follow. + +Writing LIFT is much easier than parsing it: an exporter only emits the subset of constructs its own model produces, and never faces the full spec's optionality. The hard part is the details — the `.lift-ranges` companion, per-writing-system text, stable ids, and XML escaping — and those are exactly what the checks below catch. + +## Validate the output as a conformance gate + +Point `sil-lift validate` at the produced `.lift` file. It runs RELAX NG (over both the `.lift` and its `.lift-ranges` companion) plus semantic checks the grammar can't express: dangling `relation`/`variant` references, duplicate GUIDs, range-element parent integrity, trait and grammatical-info values not defined in their range, and header `range/@href` references that resolve to no companion. + +For CI, fail on anything and emit machine-readable findings: + +``` +sil-lift validate export.lift --strict --no-check-media --format json +``` + +- `--strict` makes warnings (not just errors) fail the run. +- `--no-check-media` skips the filesystem media-presence check, whose `missing-media` findings are noise when the audio/photo files aren't colocated with the `.lift` in CI. +- `--format json` prints a single JSON object (`{"problems": [...], "summary": {...}}`) instead of human text; its exit codes and schema are a supported, SemVer-covered interface (see [the command line guide](cli.md)). +- `--require-ids` additionally errors on entries missing a `guid` or senses missing an `id` — useful when a later re-import must update rather than duplicate. + +Guard against silent data loss (the failure mode that makes flat CSV export lossy) by asserting counts with `stats --format json` against your source model: + +``` +sil-lift stats export.lift --format json +``` + +It reports `entries`, `senses`, `examples`, `media_refs`, `languages`, and per-name `traits` counts. + +### Running the gate without a Python toolchain + +A TypeScript or C# project's CI can run the same check without installing Python, via the bundled GitHub Action: + +```yaml +- uses: sillsdev/python-sil-lift@v0.1.0 + with: + path: export.lift + strict: "true" + no-check-media: "true" + format: json +``` + +or the container image, built from the repo's `Dockerfile`: + +``` +docker build -t sil-lift . +docker run --rm -v "$PWD:/work" -w /work sil-lift validate export.lift --strict +``` + +## The `.lift-ranges` companion + +Controlled vocabularies — parts of speech, semantic domains, and any other trait-keyed value set — live in a sibling `.lift-ranges` file, referenced from the `
`: + +```xml +
+ + + + +
+``` + +The companion carries each range's full definition. Values are ``s; `parent` builds a hierarchy; `label` / `abbrev` / `description` are multitexts: + +```xml + + + + + +
n
+
+
+ + + + + +
+``` + +An entry then refers to a value by id: a sense's part of speech is ``, and a semantic domain is ``. `sil-lift validate` warns (`undefined-range-value`) when a value isn't defined in its range and errors (`range-parent`) when a `parent` isn't a sibling id — so emit the ranges your data actually uses. See also [Ranges and media](folder-media.md). + +If you build the export in Python, `Lexicon.add_ranges_file()`, `RangesFile.add_range()`, and `Range.add_element()` construct the companion and add the header references for you; `open_writer(..., ranges=...)` does the same on the streaming path. + +## Text and multitext + +Every human-language string in LIFT is a *multitext*: one `
` per writing system, each wrapping a ``: + +```xml + + kanga +
galinha
+
+``` + +A model that keys strings by language code (a `MultiString`, a `Record`, a `dict[str, str]`) maps onto this one-to-one: one entry per key becomes one `
`. At most one form per language is allowed in a single multitext — `sil-lift` warns `duplicate-form-lang` otherwise. + +XML escaping is the one genuinely correctness-sensitive part. In element text, `&`, `<`, and `>` must be escaped (`&`, `<`, `>`); in attribute values, the quote character too. `sil-lift`'s writer applies exactly these rules and never alters whitespace inside `` — it adds no indentation there, because that would corrupt the lexical data. If you aim to match its output, reuse a real XML serializer's escaping (not a hand-rolled replace that forgets `&`) and leave `` content byte-for-byte as your source has it. diff --git a/mkdocs.yml b/mkdocs.yml index 5c89294..194cc70 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -54,6 +54,7 @@ nav: - Large files: guides/large-files.md - Ranges and media: guides/folder-media.md - Command line: guides/cli.md + - Producing conformant LIFT: guides/lift-export-interop.md - "Worked example: bulk-editing glosses": guides/bulk-edit-glosses.md - Fidelity guarantees: fidelity.md - Differences from the C# libraries: csharp-differences.md diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index 8996418..bc8c13c 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -14,6 +14,7 @@ import csv import json import sys +import tempfile from collections import Counter from pathlib import Path from typing import TYPE_CHECKING @@ -47,12 +48,28 @@ def _problem_json(problem: Problem) -> dict[str, object]: } -def _cmd_validate(args: argparse.Namespace) -> int: - problems = [ +def _collect_problems(args: argparse.Namespace) -> list[Problem]: + if str(args.path) == "-": + data = sys.stdin.buffer.read() + with tempfile.TemporaryDirectory() as tmp: + tmp_file = Path(tmp) / "stdin.lift" + tmp_file.write_bytes(data) + # A piped document has no folder context, so companion .lift-ranges + # and media can't be resolved; those checks are skipped (path None). + lexicon = Lexicon.load(tmp_file, resolve_ranges=False) + lexicon.path = None + problems = list(lexicon.iter_problems(require_ids=args.require_ids)) + else: + problems = list(iter_problems(args.path, require_ids=args.require_ids)) + return [ problem - for problem in iter_problems(args.path) + for problem in problems if not (args.no_check_media and problem.code == "missing-media") ] + + +def _cmd_validate(args: argparse.Namespace) -> int: + problems = _collect_problems(args) errors = sum(1 for problem in problems if problem.level == "error") warnings = len(problems) - errors failed = bool(errors) or (args.strict and bool(warnings)) @@ -105,14 +122,29 @@ def _cmd_stats(args: argparse.Namespace) -> int: langs.update(g.lang for g in sense.glosses if g.lang) langs.update(sense.definition.keys()) traits.update(trait.name for trait in sense.traits) - print(f"entries: {entries}") - print(f"senses: {senses}") - print(f"examples: {examples}") - print(f"media refs: {media}") - print(f"languages: {', '.join(sorted(langs)) if langs else '(none)'}") - if traits: - top = ", ".join(f"{name} ({count})" for name, count in traits.most_common(5)) - print(f"top traits: {top}") + if args.format == "json": + json.dump( + { + "entries": entries, + "senses": senses, + "examples": examples, + "media_refs": media, + "languages": sorted(langs), + "traits": dict(sorted(traits.items())), + }, + sys.stdout, + indent=2, + ) + print() + else: + print(f"entries: {entries}") + print(f"senses: {senses}") + print(f"examples: {examples}") + print(f"media refs: {media}") + print(f"languages: {', '.join(sorted(langs)) if langs else '(none)'}") + if traits: + top = ", ".join(f"{name} ({count})" for name, count in traits.most_common(5)) + print(f"top traits: {top}") return 0 @@ -224,7 +256,7 @@ def main(argv: Sequence[str] | None = None) -> int: validate = subparsers.add_parser( "validate", help="schema + semantic validation; exit 1 on errors" ) - validate.add_argument("path", type=Path, help="a .lift file") + validate.add_argument("path", type=Path, help="a .lift file, or - for stdin") validate.add_argument( "--format", choices=("text", "json"), default="text", help="output format (default: text)" ) @@ -236,10 +268,18 @@ def main(argv: Sequence[str] | None = None) -> int: action="store_true", help="skip the filesystem media-presence check (suppresses missing-media findings)", ) + validate.add_argument( + "--require-ids", + action="store_true", + help="error on entries missing a guid or senses missing an id", + ) validate.set_defaults(func=_cmd_validate) stats = subparsers.add_parser("stats", help="entry/sense/language counts (streaming)") stats.add_argument("path", type=Path, help="a .lift file") + stats.add_argument( + "--format", choices=("text", "json"), default="text", help="output format (default: text)" + ) stats.set_defaults(func=_cmd_stats) sort = subparsers.add_parser("sort", help="write a canonically sorted copy") diff --git a/src/sil_lift/_header.py b/src/sil_lift/_header.py index 19d61aa..9fe7e1f 100644 --- a/src/sil_lift/_header.py +++ b/src/sil_lift/_header.py @@ -55,6 +55,18 @@ class Range: elements: list[RangeElement] = field(default_factory=list) extra: Extras = field(default_factory=Extras) + def add_element( + self, id: str, *, parent: str | None = None, guid: str | None = None + ) -> RangeElement: + """Append a new :class:`RangeElement` to this range and return it. + + The ``label`` / ``abbrev`` / ``description`` multitexts start empty; + populate them on the returned element (e.g. ``el.label["en"] = "..."``). + """ + element = RangeElement(id=id, parent=parent, guid=guid) + self.elements.append(element) + return element + @dataclass(slots=True, kw_only=True) class Header: diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 40f1b82..853b625 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -285,6 +285,15 @@ def find(self, id: str) -> Range | None: return range_ return None + def add_range(self, id: str, *, href: str | None = None, guid: str | None = None) -> Range: + """Append a new :class:`Range` to this file and return it. + + Populate its values with :meth:`Range.add_element`. + """ + range_ = Range(id=id, href=href, guid=guid) + self.ranges.append(range_) + return range_ + def sort(self) -> None: """Sort ranges and their elements into canonical (id) order.""" from ._canonical import sort_ranges_file @@ -398,8 +407,12 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: original_dir = self.path.parent if self.path is not None else None target.write_bytes(render_document(self)) self.path = target - for ranges_file in self.ranges_files.values(): - if ranges_file.path is not None and target.parent != original_dir: + for key, ranges_file in self.ranges_files.items(): + if ranges_file.path is None: + # A from-scratch companion (see add_ranges_file): the dict key + # is its intended href — write it beside the saved .lift. + ranges_file.save(target.parent / Path(key).name) + elif target.parent != original_dir: ranges_file.save(target.parent / ranges_file.path.name) else: ranges_file.save() @@ -423,7 +436,7 @@ def sort(self) -> None: sort_lexicon(self) - def iter_problems(self) -> Iterator[Problem]: + def iter_problems(self, *, require_ids: bool = False) -> Iterator[Problem]: """Validate the in-memory state (schema layers + semantic checks). The schema layers need serialized bytes: what :meth:`save` would @@ -431,10 +444,14 @@ def iter_problems(self) -> Iterator[Problem]: untouched loaded document those are the source bytes (line numbers match the file on disk); otherwise serialization is a documented cost on large lexicons. + + With ``require_ids``, entries missing a ``guid`` and senses missing an + ``id`` are reported as ``missing-id`` errors — stricter than LIFT (both + are optional there), for workflows that re-import by a stable id. """ from ._validate import iter_lexicon_problems - return iter_lexicon_problems(self) + return iter_lexicon_problems(self, require_ids=require_ids) def all_ranges(self) -> dict[str, Range]: """Inline and external ranges, merged by id. @@ -452,6 +469,29 @@ def all_ranges(self) -> dict[str, Range]: merged[range_.id] = range_ return merged + def add_ranges_file(self, ranges_file: RangesFile | None = None, *, href: str) -> RangesFile: + """Attach a companion ``.lift-ranges`` document so :meth:`save` writes it. + + For every range already in ``ranges_file`` that the header does not + list, a ```` reference is added to the header so + LIFT consumers can find the companion. ``href`` is the reference as + written in the header — normally a filename beside the ``.lift`` (e.g. + ``"mydict.lift-ranges"``); the companion is written next to the saved + ``.lift`` under that basename. Populate the companion before calling + (or call again to reference ranges added later). + + Returns the attached (or newly created) :class:`RangesFile`. + """ + if ranges_file is None: + ranges_file = RangesFile() + referenced = {range_.id for range_ in self.header.ranges} + for range_ in ranges_file.ranges: + if range_.id not in referenced: + self.header.ranges.append(Range(id=range_.id, href=href)) + referenced.add(range_.id) + self.ranges_files[Path(href)] = ranges_file + return ranges_file + def media_refs(self) -> Iterator[MediaRef]: """Every ```` and ```` reference, with its owner.""" for entry in self.entries: diff --git a/src/sil_lift/_stream.py b/src/sil_lift/_stream.py index 6a78463..23a4903 100644 --- a/src/sil_lift/_stream.py +++ b/src/sil_lift/_stream.py @@ -14,12 +14,13 @@ from __future__ import annotations +from pathlib import Path from typing import TYPE_CHECKING from lxml import etree from ._errors import LiftParseError -from ._header import Header +from ._header import Header, Range from ._reader import SUPPORTED_VERSION, _parse_entry, _parse_header if TYPE_CHECKING: @@ -27,7 +28,7 @@ from collections.abc import Iterator from types import TracebackType - from ._model import Entry + from ._model import Entry, RangesFile __all__ = ["LiftReader", "LiftWriter", "open_reader", "open_writer"] @@ -152,10 +153,22 @@ def __init__( *, header: Header | None = None, producer: str | None = None, + ranges: RangesFile | None = None, ) -> None: from ._model import Lexicon from ._writer import _root_open_bytes, canonical_header_bytes + self._ranges = ranges + self._ranges_path: Path | None = None + if ranges is not None: + companion = Path(path).with_name(Path(path).name + "-ranges") + self._ranges_path = companion + header = header if header is not None else Header() + referenced = {range_.id for range_ in header.ranges} + for range_ in ranges.ranges: + if range_.id not in referenced: + header.ranges.append(Range(id=range_.id, href=companion.name)) + referenced.add(range_.id) self._file = open(path, "wb") # noqa: SIM115 - lifetime managed by close() self._closed = False prototype = Lexicon(producer=producer) @@ -174,6 +187,8 @@ def close(self) -> None: self._closed = True self._file.write(b"\n") self._file.close() + if self._ranges is not None and self._ranges_path is not None: + self._ranges.save(self._ranges_path) def __enter__(self) -> LiftWriter: return self @@ -201,6 +216,12 @@ def open_writer( *, header: Header | None = None, producer: str | None = None, + ranges: RangesFile | None = None, ) -> LiftWriter: - """Open a ``.lift`` file for streaming writes (O(one entry) memory).""" - return LiftWriter(path, header=header, producer=producer) + """Open a ``.lift`` file for streaming writes (O(one entry) memory). + + If ``ranges`` is given, its companion ``.lift-ranges`` is written beside + ``path`` on clean close, and matching ```` references are added + to ``header`` (created if absent) so the document points to the companion. + """ + return LiftWriter(path, header=header, producer=producer, ranges=ranges) diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index 17d722e..bf9196a 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -23,7 +23,8 @@ dangling ``relation/@ref`` and ``variant/@ref``, ``range-element/@parent`` integrity, undefined range values (grammatical-info and range-keyed traits), duplicate form languages (the RNG's Schematron rule, which lxml - ignores), and missing media files. + ignores), missing media files, header ``range/@href`` references that + resolve to no companion, and — opt-in — entries/senses missing a stable id. """ from __future__ import annotations @@ -36,7 +37,7 @@ from lxml import etree from ._errors import LiftValidationError -from ._model import Lexicon +from ._model import Lexicon, _normalize_href from ._text import Multitext if TYPE_CHECKING: @@ -58,7 +59,8 @@ class Problem: level: Literal["error", "warning"] code: str # "schema", "duplicate-guid", "dangling-ref", "range-parent", - # "undefined-range-value", "duplicate-form-lang", "missing-media", "uri-not-rfc" + # "undefined-range-value", "duplicate-form-lang", "missing-media", + # "uri-not-rfc", "dangling-ranges-href", "missing-id" message: str file: Path | None = None entry_id: str | None = None @@ -73,9 +75,13 @@ def __str__(self) -> str: return f"{self.level} [{self.code}] {where}{entry}: {self.message}" -def iter_problems(path: str | os.PathLike[str]) -> Iterator[Problem]: - """All problems in the document and its tracked companions, lazily.""" - return Lexicon.load(path).iter_problems() +def iter_problems(path: str | os.PathLike[str], *, require_ids: bool = False) -> Iterator[Problem]: + """All problems in the document and its tracked companions, lazily. + + With ``require_ids``, also report entries/senses missing a stable id + (``missing-id`` errors); see :meth:`Lexicon.iter_problems`. + """ + return Lexicon.load(path).iter_problems(require_ids=require_ids) def validate_file(path: str | os.PathLike[str]) -> None: @@ -85,7 +91,7 @@ def validate_file(path: str | os.PathLike[str]) -> None: raise LiftValidationError(problem) -def iter_lexicon_problems(lexicon: Lexicon) -> Iterator[Problem]: +def iter_lexicon_problems(lexicon: Lexicon, *, require_ids: bool = False) -> Iterator[Problem]: from ._writer import render_document, render_ranges_document lift_schema = etree.RelaxNG(etree.parse(_SCHEMAS_DIR / "lift-0.13.rng")) @@ -103,7 +109,7 @@ def iter_lexicon_problems(lexicon: Lexicon) -> Iterator[Problem]: rdata = render_ranges_document(ranges_file) _, range_problems = _schema_problems(rdata, ranges_schema, ranges_file.path) yield from range_problems - yield from _semantic_problems(lexicon, entry_lines) + yield from _semantic_problems(lexicon, entry_lines, require_ids=require_ids) # --- schema layer ---------------------------------------------------------------- @@ -241,12 +247,39 @@ def _iter_multitexts(obj: object) -> Iterator[tuple[str, Multitext]]: def _semantic_problems( lexicon: Lexicon, entry_lines: list[tuple[int | None, str | None, str | None]], + *, + require_ids: bool = False, ) -> Iterator[Problem]: file = lexicon.path def at(index: int) -> int | None: return entry_lines[index][0] if index < len(entry_lines) else None + # Missing stable ids (opt-in): a guid on every entry, an id on every sense. + # Both are optional in LIFT; required only by workflows that re-import by id. + if require_ids: + for index, entry in enumerate(lexicon.entries): + if entry.guid is None: + yield Problem( + "error", + "missing-id", + "entry has no guid (needed for re-import by a stable id)", + file=file, + entry_id=entry.id, + line=at(index), + ) + for sense in _iter_senses(entry): + if sense.id is None: + yield Problem( + "error", + "missing-id", + "sense has no id (needed for re-import by a stable id)", + file=file, + entry_id=entry.id, + guid=entry.guid, + line=at(index), + ) + # Duplicate GUIDs (C# Validator parity case). seen_guids: dict[str, int] = {} for index, entry in enumerate(lexicon.entries): @@ -322,6 +355,30 @@ def at(index: int) -> int | None: file=file, ) + # Header references (relative) that resolve to no companion. + # Absolute/file:// hrefs are FLEx's dangling-by-design pattern (resolved by + # basename when the companion is colocated) and are not judged here; this + # catches an exporter that writes a relative href but not the file. + if lexicon.path is not None: + base = lexicon.path.parent + for range_ in lexicon.header.ranges: + if not range_.href or range_.elements: + continue + relative = _normalize_href(range_.href) + if relative is None: + continue + resolved = all_ranges.get(range_.id) + if resolved is not None and resolved.elements: + continue # supplied by a sibling companion instead + if not (base / relative).is_file(): + yield Problem( + "warning", + "dangling-ranges-href", + f"header range {range_.id!r} references {range_.href!r} " + "but no companion file was found", + file=lexicon.path, + ) + # Undefined range values: grammatical-info against the grammatical-info # range; traits whose name matches a known range. Only ranges that # actually enumerate elements can vouch for values; empty values skipped diff --git a/tests/test_cli.py b/tests/test_cli.py index 687f0cb..b9ba7a7 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,4 +1,5 @@ import csv +import io import json import shutil from pathlib import Path @@ -58,6 +59,48 @@ def test_validate_no_check_media(capsys: pytest.CaptureFixture[str]) -> None: assert "[missing-media]" not in capsys.readouterr().out +def test_validate_require_ids(tmp_path: Path, capsys: pytest.CaptureFixture[str]) -> None: + path = tmp_path / "noid.lift" + path.write_bytes( + b'\n' + b'\n' + b'\n' # no guid + b'x\n' + b"\n" + b"\n" + ) + assert main(["validate", str(path)]) == 0 # ids are optional by default + assert main(["validate", str(path), "--require-ids"]) == 1 + assert "missing-id" in capsys.readouterr().out + + +def test_validate_stdin( + monkeypatch: pytest.MonkeyPatch, capsys: pytest.CaptureFixture[str] +) -> None: + doc = ( + b'\n' + b'' + b'
x
\n' + ) + + class _Stdin: + buffer = io.BytesIO(doc) + + monkeypatch.setattr("sys.stdin", _Stdin()) + assert main(["validate", "-", "--format", "json"]) == 0 + payload = json.loads(capsys.readouterr().out) + assert payload == {"problems": [], "summary": {"errors": 0, "warnings": 0}} + + +def test_stats_json(capsys: pytest.CaptureFixture[str]) -> None: + path = CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift" + assert main(["stats", str(path), "--format", "json"]) == 0 + payload = json.loads(capsys.readouterr().out) + assert payload["entries"] == 1 + assert payload["senses"] >= 1 + assert isinstance(payload["languages"], list) + + def test_filename_with_space(capsys: pytest.CaptureFixture[str]) -> None: path = CORPUS_DIR / "spec-examples" / "0.13" / "fields any order.lift" assert main(["stats", str(path)]) == 0 diff --git a/tests/test_ranges_folder.py b/tests/test_ranges_folder.py index 7f676ce..7bdbc4d 100644 --- a/tests/test_ranges_folder.py +++ b/tests/test_ranges_folder.py @@ -18,6 +18,37 @@ def _copy_pair(src_dir: Path, stem: str, dst: Path) -> Path: return dst / f"{stem}.lift" +def test_build_lexicon_and_ranges_from_scratch(tmp_path: Path) -> None: + lexicon = sil_lift.Lexicon(producer="test") + entry = sil_lift.Entry(id="e1", guid="77777777-7777-4444-8888-777777777777") + entry.lexical_unit["seh"] = "kanga" + sense = sil_lift.Sense(id="s1") + sense.glosses.append(sil_lift.Form(lang="en", text=Text(["chicken"]))) + sense.traits.append(sil_lift.Trait(name="semantic-domain-ddp4", value="1.6.1.2")) + entry.senses.append(sense) + lexicon.entries.append(entry) + + ranges = RangesFile() + domain = ranges.add_range("semantic-domain-ddp4") + domain.add_element("1.6.1.2").label["en"] = "Bird" + lexicon.add_ranges_file(ranges, href="dict.lift-ranges") + + lexicon.save(tmp_path / "dict.lift") + assert (tmp_path / "dict.lift").is_file() + assert (tmp_path / "dict.lift-ranges").is_file() + # add_ranges_file registered the companion in the header. + assert any( + r.id == "semantic-domain-ddp4" and r.href == "dict.lift-ranges" + for r in lexicon.header.ranges + ) + + reloaded = sil_lift.load(tmp_path / "dict.lift") + assert [r.id for rf in reloaded.ranges_files.values() for r in rf.ranges] == [ + "semantic-domain-ddp4" + ] + assert list(reloaded.iter_problems()) == [] # trait value is defined; href resolves + + def test_sibling_ranges_file_is_discovered_and_tracked() -> None: lexicon = sil_lift.load(PAIR_DIR / "test20080407.lift") assert len(lexicon.ranges_files) == 1 diff --git a/tests/test_stream.py b/tests/test_stream.py index 6fadfbc..1e90a41 100644 --- a/tests/test_stream.py +++ b/tests/test_stream.py @@ -18,6 +18,21 @@ def corpus_id(path: Path) -> str: return path.relative_to(CORPUS_DIR).as_posix() +def test_open_writer_emits_ranges_companion(tmp_path: Path) -> None: + ranges = sil_lift.RangesFile() + ranges.add_range("grammatical-info").add_element("Noun") + lift_path = tmp_path / "stream.lift" + with open_writer(lift_path, producer="test", ranges=ranges) as writer: + entry = sil_lift.Entry(id="e1", guid="88888888-8888-4444-8888-888888888888") + entry.lexical_unit["en"] = "x" + writer.write(entry) + assert (tmp_path / "stream.lift-ranges").is_file() + reloaded = sil_lift.load(lift_path) + assert reloaded.all_ranges()["grammatical-info"].elements[0].id == "Noun" + assert any(r.href == "stream.lift-ranges" for r in reloaded.header.ranges) + assert list(reloaded.iter_problems()) == [] + + @pytest.mark.parametrize("path", LOADABLE, ids=corpus_id) def test_streaming_parse_equals_full_parse(path: Path) -> None: full = sil_lift.load(path, resolve_ranges=False) diff --git a/tests/test_validate.py b/tests/test_validate.py index 76c8dc6..4ae596d 100644 --- a/tests/test_validate.py +++ b/tests/test_validate.py @@ -80,6 +80,70 @@ def test_flex_uri_quirks_warn_but_never_error() -> None: assert codes(problems) == {("warning", "uri-not-rfc")} +def test_dangling_ranges_href_flags_missing_relative_companion(tmp_path: Path) -> None: + path = tmp_path / "d.lift" + path.write_bytes( + b'\n' + b'\n' + b"
\n" + b'\n' + b"
\n" + b'\n' + b'
x
\n' + b"
\n" + b"
\n" + ) + assert ("warning", "dangling-ranges-href") in codes(problems_for(path)) + + +def test_dangling_ranges_href_ignores_absolute_flex_href(tmp_path: Path) -> None: + # FLEx writes header hrefs as dangling file://C:/ URIs resolved by basename; + # those are the uri-not-rfc case, not a dangling companion. + path = tmp_path / "d.lift" + path.write_bytes( + b'\n' + b'\n' + b"
\n" + b'\n' + b"
\n" + b'\n' + b'
x
\n' + b"
\n" + b"
\n" + ) + found = codes(problems_for(path)) + assert ("warning", "dangling-ranges-href") not in found + assert ("warning", "uri-not-rfc") in found + + +def test_require_ids_flags_missing_guid_and_sense_id() -> None: + lexicon = sil_lift.Lexicon() + entry = sil_lift.Entry(id="e1") # no guid + entry.lexical_unit["en"] = "x" + entry.senses.append(sil_lift.Sense()) # no id + lexicon.entries.append(entry) + assert not any(p.code == "missing-id" for p in lexicon.iter_problems()) + required = [p for p in lexicon.iter_problems(require_ids=True) if p.code == "missing-id"] + assert len(required) == 2 + assert all(p.level == "error" for p in required) + + +def test_undefined_semantic_domain_value_is_flagged() -> None: + lexicon = sil_lift.Lexicon() + ranges = sil_lift.RangesFile() + ranges.add_range("semantic-domain-ddp4").add_element("1.6.1.2") + lexicon.add_ranges_file(ranges, href="x.lift-ranges") + entry = sil_lift.Entry(id="e1", guid="bbbbbbbb-bbbb-4444-8888-bbbbbbbbbbbb") + entry.lexical_unit["en"] = "x" + sense = sil_lift.Sense(id="s1") + sense.traits.append(sil_lift.Trait(name="semantic-domain-ddp4", value="9.9.9")) + entry.senses.append(sense) + lexicon.entries.append(entry) + flagged = [p for p in lexicon.iter_problems() if p.code == "undefined-range-value"] + assert len(flagged) == 1 + assert "9.9.9" in flagged[0].message + + def test_validate_file_raises_on_first_error() -> None: with pytest.raises(LiftValidationError) as info: sil_lift.validate_file(NEGATIVE_DIR / "duplicate-guid.lift") From 8ac02cc2835353641edd93433fc4a24027073cf3 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Tue, 21 Jul 2026 20:12:37 -0400 Subject: [PATCH 34/42] Pin shell scripts to LF line endings `* text=auto` lets a Windows checkout rewrite `docker-entrypoint.sh` with CRLF, whose `\r` shebang fails in the Linux container. Force LF for `*.sh`. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index f9df029..119a2ca 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,10 @@ # Normalize line endings for source files. * text=auto +# Shell scripts must keep LF endings so they run in the Linux container even +# when checked out on Windows (a CRLF shebang breaks the entrypoint). +*.sh text eol=lf + # Fidelity-critical payloads: corpus fixtures and vendored schemas/XSLTs must be # stored byte-for-byte as fetched — git must never touch their line endings # (byte-identity round-trip tests depend on this). From ffbd524d358bd6fd8c05d6d5266f1b954a269809 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 22 Jul 2026 05:45:48 -0400 Subject: [PATCH 35/42] Remove the empty [cli] install extra The `sil-lift` console script installs unconditionally via [project.scripts], so `sil-lift[cli]` and `sil-lift` were identical installs. The empty extra only added shell-quoting friction and implied, falsely, that the CLI needed it. Install instructions now say `pip install sil-lift`. Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 +- README.md | 8 ++++---- docs/en/guides/cli.md | 2 +- docs/en/index.md | 3 +-- pyproject.toml | 3 --- 5 files changed, 7 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54e5477..8778a33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,7 +62,7 @@ releases may contain breaking changes. optionally writing a `.lift-ranges` companion via `ranges=`), both over the same `Entry` types as full-document mode and O(one entry) in memory (verified on a ~340 MB generated file). -- The `sil-lift` CLI (stdlib-only, installed via the `[cli]` extra): +- The `sil-lift` CLI (stdlib-only, installed with the package): `validate` / `stats` / `sort` / `check-media`, plus `export` — one row per leaf sense (subsenses flattened) to CSV/TSV, streaming; analysis languages auto-detected or set with `--langs`. `validate` supports `--format json` diff --git a/README.md b/README.md index f3178dd..9185444 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,10 @@ lex.save() # untouched entries byte-identical **Status: pre-release, under active development.** The API is not yet stable. -Requires Python 3.11+; the only runtime dependency is lxml. Install -[from PyPI](https://pypi.org/project/sil-lift/): `sil-lift`, or `sil-lift[cli]` -for the `sil-lift` command (`validate` / `stats` / `sort` / `check-media` / -`export`). +Requires Python 3.11+; the only runtime dependency is lxml. Install it +[from PyPI](https://pypi.org/project/sil-lift/) with `pip install sil-lift`; +that includes the `sil-lift` command (`validate` / `stats` / `sort` / +`check-media` / `export`). Documentation lives in `docs/en/` (mkdocs-material; build with `pip install -e .[docs] && mkdocs build --strict`). diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md index 5c91045..eafa927 100644 --- a/docs/en/guides/cli.md +++ b/docs/en/guides/cli.md @@ -1,6 +1,6 @@ # The command line -`pip install sil-lift[cli]` provides the `sil-lift` command — a supported LiftTools-style tool that ships with the package (and, for `validate`, a worked example of the library API). +Installing the package (`pip install sil-lift`) also installs the `sil-lift` command — a supported LiftTools-style tool that ships with the package (and, for `validate`, a worked example of the library API). ``` sil-lift validate PATH [--format {text,json}] [--strict] [--no-check-media] diff --git a/docs/en/index.md b/docs/en/index.md index 5fa489e..e6e9923 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -9,8 +9,7 @@ A Python library for [LIFT](https://github.com/sillsdev/lift-standard) (Lexicon From [PyPI](https://pypi.org/project/sil-lift/): ``` -pip install sil-lift # library -pip install sil-lift[cli] # library + the sil-lift command +pip install sil-lift # library + the sil-lift command ``` Requires Python 3.11+. The only runtime dependency is lxml. diff --git a/pyproject.toml b/pyproject.toml index c278854..a9a01bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,9 +47,6 @@ Forum = "https://community.software.sil.org/c/other/" sil-lift = "sil_lift._cli:main" [project.optional-dependencies] -# The CLI uses only the stdlib, so this extra is empty; it exists so -# `pip install sil-lift[cli]` stays the documented install for CLI users. -cli = [] dev = [ "hypothesis>=6", "lxml-stubs>=0.5", From 17a50811b9fb09181ede8abdf700edc7c9d55030 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 22 Jul 2026 13:05:11 -0400 Subject: [PATCH 36/42] Add zip-packaged LIFT read/write with hardened extraction MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Read and write LIFT as a `.zip` package, in both the flat and folder-wrapped layouts: - `sil_lift.load()` / `Lexicon.load()` detect a `.zip`, extract to a temp dir kept alive for the lexicon, and load the single contained `.lift` (junk entries like `__MACOSX` ignored; 0 or >1 `.lift` is an error). - `Lexicon.save_zip()` writes a package: the `.lift` and `.lift-ranges` are re-serialized with the usual fidelity and other package files (media, `WritingSystems/`, ...) are carried through verbatim; `wrap_folder` picks the layout (folder-wrapped by default). - The `validate`, `stats`, and `check-media` CLI commands accept a `.zip`. Extraction is hardened against malicious archives: path-traversal members are rejected by resolving each target against the destination, and the total uncompressed size (10 GiB) and entry count (100,000) are capped — the size both from the declared sizes up front and while streaming each member, so a lying header cannot slip a zip bomb past. Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 6 + docs/en/guides/cli.md | 2 + docs/en/guides/lift-export-interop.md | 9 ++ src/sil_lift/_cli.py | 12 +- src/sil_lift/_model.py | 40 +++++- src/sil_lift/_zip.py | 178 ++++++++++++++++++++++++++ tests/test_zip.py | 172 +++++++++++++++++++++++++ 7 files changed, 412 insertions(+), 7 deletions(-) create mode 100644 src/sil_lift/_zip.py create mode 100644 tests/test_zip.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 8778a33..a9ea8c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,12 @@ releases may contain breaking changes. `schemas/lift-ranges-0.13.rng` — the first schema for standalone ranges documents (spec-faithful, built from the vendored grammar's own defines). +- Zipped LIFT packages: `sil_lift.load()` reads a `.zip` (both the flat and + folder-wrapped layouts, junk entries like `__MACOSX` ignored), + `Lexicon.save_zip()` writes one (carrying media, `WritingSystems/`, and other + package files through verbatim), and the `validate` / `stats` / `check-media` + CLI commands accept a `.zip` path. Extraction rejects path-traversal members + and is capped (entry count and a 10 GiB uncompressed total) against zip bombs. - Validation: `validate_file()` / `iter_problems()` / `Lexicon.iter_problems()` returning an addressable `Problem` stream (file/entry/line). RELAX NG layer with two documented deviations from raw diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md index eafa927..57afb22 100644 --- a/docs/en/guides/cli.md +++ b/docs/en/guides/cli.md @@ -20,6 +20,8 @@ sil-lift export PATH [-o OUT] [--langs L] [--tsv] `sort` rewrites only the `.lift` file; companion `.lift-ranges` files are left untouched (sort those separately with the `RangesFile` API). +`validate`, `stats`, and `check-media` also accept a zipped LIFT package (a `.zip` in either layout — files at the archive root, or nested under one top-level folder); it is extracted to a temporary directory and discarded when the command finishes. + Examples: ``` diff --git a/docs/en/guides/lift-export-interop.md b/docs/en/guides/lift-export-interop.md index 985662c..9205c20 100644 --- a/docs/en/guides/lift-export-interop.md +++ b/docs/en/guides/lift-export-interop.md @@ -4,6 +4,15 @@ This guide is for anyone writing a LIFT *exporter* — code in any language that Writing LIFT is much easier than parsing it: an exporter only emits the subset of constructs its own model produces, and never faces the full spec's optionality. The hard part is the details — the `.lift-ranges` companion, per-writing-system text, stable ids, and XML escaping — and those are exactly what the checks below catch. +## Zipped packages + +LIFT is usually moved around as a single `.zip` — FieldWorks and The Combine both import and export that way — so `sil-lift` reads and writes zipped packages directly, in either layout the ecosystem uses: the files at the archive root, or nested under one top-level folder. + +- **Read:** `sil_lift.load("package.zip")` extracts to a temp directory, locates the single `.lift`, and loads it (companions and media resolve as usual). The `validate`, `stats`, and `check-media` CLI commands accept a `.zip` path too, so the gate below runs against a package as-is. Extraction is hardened against hostile archives — path-traversal members are refused, and the entry count and total uncompressed size (10 GiB) are capped against zip bombs. +- **Write:** `Lexicon.save_zip("out.zip", wrap_folder="MyDict")` packages the `.lift`, its `.lift-ranges`, and every other file in the source folder (media, `WritingSystems/`, `consent/`, ...) into a zip. `wrap_folder` defaults to a top-level folder named after the zip (the FieldWorks/Combine import convention); pass `False` for a flat archive. + +The `.lift` and `.lift-ranges` keep their byte-fidelity inside the package; the zip container itself is not byte-reproducible. + ## Validate the output as a conformance gate Point `sil-lift validate` at the produced `.lift` file. It runs RELAX NG (over both the `.lift` and its `.lift-ranges` companion) plus semantic checks the grammar can't express: dangling `relation`/`variant` references, duplicate GUIDs, range-element parent integrity, trait and grammatical-info values not defined in their range, and header `range/@href` references that resolve to no companion. diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index bc8c13c..7de5b3f 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -102,10 +102,12 @@ def _iter_senses(entry: Entry) -> list[Sense]: def _cmd_stats(args: argparse.Namespace) -> int: + from ._zip import lift_source + entries = senses = examples = media = 0 langs: set[str] = set() traits: Counter[str] = Counter() - with open_reader(args.path) as reader: + with lift_source(args.path) as lift_path, open_reader(lift_path) as reader: for entry in reader: entries += 1 langs.update(entry.lexical_unit.keys()) @@ -163,7 +165,7 @@ def _cmd_check_media(args: argparse.Namespace) -> int: print(f"missing {ref.kind:12s} {ref.href!r} (entry {owner})") referenced: set[Path] = set() - base = Path(args.path).parent + base = lexicon.path.parent if lexicon.path is not None else Path(args.path).parent for ref in lexicon.media_refs(): relative = _normalize_href(ref.href) if relative is None: # remote/absolute hrefs can't vouch for local files @@ -256,7 +258,7 @@ def main(argv: Sequence[str] | None = None) -> int: validate = subparsers.add_parser( "validate", help="schema + semantic validation; exit 1 on errors" ) - validate.add_argument("path", type=Path, help="a .lift file, or - for stdin") + validate.add_argument("path", type=Path, help="a .lift or .zip file, or - for stdin") validate.add_argument( "--format", choices=("text", "json"), default="text", help="output format (default: text)" ) @@ -276,7 +278,7 @@ def main(argv: Sequence[str] | None = None) -> int: validate.set_defaults(func=_cmd_validate) stats = subparsers.add_parser("stats", help="entry/sense/language counts (streaming)") - stats.add_argument("path", type=Path, help="a .lift file") + stats.add_argument("path", type=Path, help="a .lift or .zip file") stats.add_argument( "--format", choices=("text", "json"), default="text", help="output format (default: text)" ) @@ -290,7 +292,7 @@ def main(argv: Sequence[str] | None = None) -> int: check_media = subparsers.add_parser( "check-media", help="report missing and orphaned media files" ) - check_media.add_argument("path", type=Path, help="a .lift file") + check_media.add_argument("path", type=Path, help="a .lift or .zip file") check_media.set_defaults(func=_cmd_check_media) export = subparsers.add_parser( diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 853b625..cbf3c64 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -22,6 +22,7 @@ if TYPE_CHECKING: import os + import tempfile from collections.abc import Iterator from typing import Literal @@ -321,7 +322,16 @@ def _normalize_href(href: str) -> Path | None: class Lexicon: """The root handle: a parsed ``.lift`` document and its folder companions.""" - __slots__ = ("_source", "entries", "extra", "header", "path", "producer", "ranges_files") + __slots__ = ( + "_source", + "_tempdir", + "entries", + "extra", + "header", + "path", + "producer", + "ranges_files", + ) def __init__( self, @@ -339,6 +349,7 @@ def __init__( self.extra = extra if extra is not None else Extras() self.ranges_files: dict[Path, RangesFile] = {} self._source: _SourceInfo | None = None # set by the reader + self._tempdir: tempfile.TemporaryDirectory[str] | None = None # zip extraction, if any @classmethod def load(cls, path: str | os.PathLike[str], *, resolve_ranges: bool = True) -> Lexicon: @@ -352,10 +363,19 @@ def load(cls, path: str | os.PathLike[str], *, resolve_ranges: bool = True) -> L ``.lift`` file and its bare basename in the same directory (FLEx hrefs are usually dangling absolute ``file://C:/...`` paths from the exporting machine, so the basename is what resolves locally). + + A ``.zip`` path is treated as a packaged LIFT folder: it is extracted + to a temporary directory (kept alive for the returned lexicon's + lifetime) and the single contained ``.lift`` is loaded. """ + source = Path(path) + if source.suffix.lower() == ".zip": + from ._zip import load_zip + + return load_zip(source, resolve_ranges=resolve_ranges) from ._reader import parse_document - lexicon = parse_document(Path(path)) + lexicon = parse_document(source) if resolve_ranges: lexicon._resolve_ranges() return lexicon @@ -423,6 +443,22 @@ def save(self, path: str | os.PathLike[str] | None = None) -> None: if ranges_file.path is not None } + def save_zip(self, path: str | os.PathLike[str], *, wrap_folder: str | bool = True) -> None: + """Write the lexicon and its folder companions as a zip package. + + The ``.lift`` and ``.lift-ranges`` are (re-)serialized with the usual + fidelity (untouched entries byte-identical); any other files from the + source package (media, ``WritingSystems/``, ``consent/``, ...) are + carried through verbatim. ``wrap_folder`` controls the layout: ``True`` + (default) nests everything under a folder named after the zip — the + convention FieldWorks and The Combine expect on import — ``False`` + writes the files at the archive root, and a string uses that folder + name. The archive container itself is not byte-reproducible. + """ + from ._zip import save_zip + + save_zip(self, Path(path), wrap_folder=wrap_folder) + def sort(self) -> None: """Sort into canonical order, in place: entries by (guid, id), header ranges/range-elements by id, field definitions by tag. diff --git a/src/sil_lift/_zip.py b/src/sil_lift/_zip.py new file mode 100644 index 0000000..7ed90c4 --- /dev/null +++ b/src/sil_lift/_zip.py @@ -0,0 +1,178 @@ +"""Zip-packaged LIFT: read and write a LIFT folder as a ``.zip`` archive. + +A LIFT package is just a zipped LIFT folder. Two layouts occur in the wild +(both produced and accepted by FieldWorks and The Combine): the files at the +archive root (``foo.lift`` beside ``WritingSystems/``, ``audio/``, ...), or +nested one level under a single folder (``Foo/foo.lift`` ...). This module +extracts to a temporary directory, locates the single ``.lift`` (its parent is +the package root), and hands off to the ordinary path-based reader/writer — so +media resolution, companion discovery, and byte-fidelity all work unchanged. + +The archive *container* is not byte-reproducible (zip carries timestamps, +compression, and ordering); the guarantee is at the file level — the ``.lift`` +and ``.lift-ranges`` keep their fidelity contract, and every other packaged +file is carried through verbatim. +""" + +from __future__ import annotations + +import shutil +import tempfile +import zipfile +from contextlib import contextmanager +from pathlib import Path +from typing import TYPE_CHECKING + +from ._errors import LiftParseError +from ._model import Lexicon + +if TYPE_CHECKING: + from collections.abc import Iterator + +__all__ = ["load_zip", "save_zip"] + + +# Guards against malicious archives. Audio makes real LIFT projects large, so +# the size ceiling is generous; the entry cap stops "millions of tiny files" +# archives that the size cap alone would miss. +_MAX_UNCOMPRESSED_BYTES = 10 * 1024**3 # 10 GiB +_MAX_ENTRIES = 100_000 +_EXTRACT_CHUNK = 1 << 20 # 1 MiB + + +def _size_limit_message(zip_path: Path) -> str: + limit_gib = _MAX_UNCOMPRESSED_BYTES / 1024**3 + return f"{zip_path.name}: uncompressed size exceeds the {limit_gib:.0f} GiB limit" + + +def _safe_extract(zip_path: Path, dest: Path) -> None: + """Extract ``zip_path`` into ``dest``, defending against malicious archives. + + Path-traversal members (``..`` or absolute, resolved against ``dest``) are + rejected, the entry count is capped, and the total uncompressed size is + capped at ``_MAX_UNCOMPRESSED_BYTES`` — checked against the declared sizes + up front, then again while streaming each member to disk, since a crafted + archive's declared size can lie. + """ + dest_root = dest.resolve() + try: + with zipfile.ZipFile(zip_path) as archive: + infos = archive.infolist() + if len(infos) > _MAX_ENTRIES: + raise LiftParseError(f"{zip_path.name}: archive has too many entries") + for info in infos: + if not (dest / info.filename).resolve().is_relative_to(dest_root): + raise LiftParseError( + f"{zip_path.name}: unsafe path in archive: {info.filename!r}" + ) + if sum(info.file_size for info in infos) > _MAX_UNCOMPRESSED_BYTES: + raise LiftParseError(_size_limit_message(zip_path)) + written = 0 + for info in infos: + target = dest / info.filename + if info.is_dir(): + target.mkdir(parents=True, exist_ok=True) + continue + target.parent.mkdir(parents=True, exist_ok=True) + with archive.open(info) as source, target.open("wb") as sink: + while chunk := source.read(_EXTRACT_CHUNK): + written += len(chunk) + if written > _MAX_UNCOMPRESSED_BYTES: + raise LiftParseError(_size_limit_message(zip_path)) + sink.write(chunk) + except zipfile.BadZipFile as exc: + raise LiftParseError(f"{zip_path.name}: not a valid zip archive: {exc}") from exc + + +def _find_lift_root(tree: Path) -> Path: + """The single ``.lift`` file in an extracted tree; its parent is the root. + + Handles both the flat and folder-wrapped layouts, and ignores junk such as + ``__MACOSX`` and dotfile entries that some zip tools add. + """ + lifts = [ + p + for p in tree.rglob("*.lift") + if p.is_file() + and not any( + part == "__MACOSX" or part.startswith(".") for part in p.relative_to(tree).parts + ) + ] + if not lifts: + raise LiftParseError("no .lift file found in the archive") + if len(lifts) > 1: + names = ", ".join(sorted(p.name for p in lifts)) + raise LiftParseError(f"multiple .lift files found in the archive: {names}") + return lifts[0] + + +@contextmanager +def lift_source(path: Path) -> Iterator[Path]: + """Yield a ``.lift`` path for ``path``, extracting a ``.zip`` to a temp dir. + + A non-zip path is yielded unchanged. A zip is extracted for the duration of + the ``with`` block, then removed — for streaming callers that only read. + """ + if path.suffix.lower() != ".zip": + yield path + return + with tempfile.TemporaryDirectory(prefix="sil-lift-") as tmp: + _safe_extract(path, Path(tmp)) + yield _find_lift_root(Path(tmp)) + + +def load_zip(path: Path, *, resolve_ranges: bool = True) -> Lexicon: + """Load a zip-packaged LIFT folder (see :meth:`Lexicon.load`). + + The extraction directory is kept alive for the returned lexicon's lifetime + (via :attr:`Lexicon._tempdir`), so media checks and :meth:`Lexicon.save_zip` + can still reach the packaged files. + """ + tmp = tempfile.TemporaryDirectory(prefix="sil-lift-") + try: + _safe_extract(path, Path(tmp.name)) + lift_path = _find_lift_root(Path(tmp.name)) + lexicon = Lexicon.load(lift_path, resolve_ranges=resolve_ranges) + except BaseException: + tmp.cleanup() + raise + lexicon._tempdir = tmp + return lexicon + + +def _resolve_wrap_folder(wrap_folder: str | bool, dest: Path) -> str | None: + if isinstance(wrap_folder, str): + return wrap_folder + return dest.stem if wrap_folder else None + + +def save_zip(lexicon: Lexicon, dest: Path, *, wrap_folder: str | bool = True) -> None: + """Write ``lexicon`` and its folder companions to the zip at ``dest``.""" + from ._writer import render_document, render_ranges_document + + folder = _resolve_wrap_folder(wrap_folder, dest) + with tempfile.TemporaryDirectory(prefix="sil-lift-") as staging: + content = Path(staging) / folder if folder else Path(staging) + content.mkdir(parents=True, exist_ok=True) + + # Carry the whole source package through (media, WritingSystems, ...). + source_root = lexicon.path.parent if lexicon.path is not None else None + if source_root is not None and source_root.is_dir(): + shutil.copytree(source_root, content, dirs_exist_ok=True) + + # (Over)write the .lift and its companions with current, rendered bytes. + lift_name = lexicon.path.name if lexicon.path is not None else f"{folder or 'lexicon'}.lift" + (content / lift_name).write_bytes(render_document(lexicon)) + for key, ranges_file in lexicon.ranges_files.items(): + name = ranges_file.path.name if ranges_file.path is not None else Path(key).name + (content / name).write_bytes(render_ranges_document(ranges_file)) + + _write_zip(Path(staging), dest) + + +def _write_zip(root: Path, dest: Path) -> None: + dest.parent.mkdir(parents=True, exist_ok=True) + with zipfile.ZipFile(dest, "w", zipfile.ZIP_DEFLATED) as archive: + for item in sorted(root.rglob("*")): + if item.is_file(): + archive.write(item, item.relative_to(root).as_posix()) diff --git a/tests/test_zip.py b/tests/test_zip.py new file mode 100644 index 0000000..5be71cc --- /dev/null +++ b/tests/test_zip.py @@ -0,0 +1,172 @@ +import json +import zipfile +from pathlib import Path + +import pytest + +import sil_lift +from sil_lift._cli import main + +CORPUS_DIR = Path(__file__).parent / "corpus" +PAIR_DIR = CORPUS_DIR / "ranges" # test20080407.lift + companion, fully clean + +PAIR = { + "test20080407.lift": PAIR_DIR / "test20080407.lift", + "test20080407.lift-ranges": PAIR_DIR / "test20080407.lift-ranges", +} + + +def _make_zip(dst: Path, members: dict[str, Path], *, wrap: str | None = None) -> Path: + with zipfile.ZipFile(dst, "w") as archive: + for arcname, src in members.items(): + archive.write(src, f"{wrap}/{arcname}" if wrap else arcname) + return dst + + +def _names(path: Path) -> set[str]: + with zipfile.ZipFile(path) as archive: + return set(archive.namelist()) + + +def test_load_zip_flat_layout(tmp_path: Path) -> None: + lex = sil_lift.load(_make_zip(tmp_path / "flat.zip", PAIR)) + assert len(lex.entries) == 1 + assert lex.all_ranges()["grammatical-info"].elements # companion resolved + assert list(lex.iter_problems()) == [] + + +def test_load_zip_folder_wrapped_layout(tmp_path: Path) -> None: + lex = sil_lift.load(_make_zip(tmp_path / "wrapped.zip", PAIR, wrap="MyDict")) + assert len(lex.entries) == 1 + assert list(lex.iter_problems()) == [] + + +def test_load_zip_ignores_macosx_junk(tmp_path: Path) -> None: + path = tmp_path / "junk.zip" + with zipfile.ZipFile(path, "w") as archive: + archive.write(PAIR_DIR / "test20080407.lift", "MyDict/test20080407.lift") + archive.write(PAIR_DIR / "test20080407.lift-ranges", "MyDict/test20080407.lift-ranges") + archive.writestr("__MACOSX/._test20080407.lift", b"apple double junk") + assert len(sil_lift.load(path).entries) == 1 + + +def test_load_zip_with_explicit_dir_entries(tmp_path: Path) -> None: + # FieldWorks/Combine archives include explicit directory entries. + path = tmp_path / "dirs.zip" + with zipfile.ZipFile(path, "w") as archive: + archive.writestr("MyDict/", b"") + archive.write(PAIR_DIR / "test20080407.lift", "MyDict/test20080407.lift") + archive.write(PAIR_DIR / "test20080407.lift-ranges", "MyDict/test20080407.lift-ranges") + assert len(sil_lift.load(path).entries) == 1 + + +def test_zip_with_no_lift_errors(tmp_path: Path) -> None: + path = tmp_path / "empty.zip" + with zipfile.ZipFile(path, "w") as archive: + archive.writestr("readme.txt", b"nothing here") + with pytest.raises(sil_lift.LiftParseError, match=r"no \.lift"): + sil_lift.load(path) + + +def test_zip_with_multiple_lift_errors(tmp_path: Path) -> None: + path = tmp_path / "two.zip" + with zipfile.ZipFile(path, "w") as archive: + archive.write(PAIR_DIR / "test20080407.lift", "a.lift") + archive.write(PAIR_DIR / "test20080407.lift", "b.lift") + with pytest.raises(sil_lift.LiftParseError, match=r"multiple \.lift"): + sil_lift.load(path) + + +def test_load_bad_zip_errors(tmp_path: Path) -> None: + bogus = tmp_path / "bogus.zip" + bogus.write_bytes(b"this is not a zip archive") + with pytest.raises(sil_lift.LiftParseError, match="not a valid zip"): + sil_lift.load(bogus) + + +def test_zip_rejects_path_traversal(tmp_path: Path) -> None: + path = tmp_path / "evil.zip" + with zipfile.ZipFile(path, "w") as archive: + archive.writestr("../evil.lift", b"") + with pytest.raises(sil_lift.LiftParseError, match="unsafe path"): + sil_lift.load(path) + + +def test_zip_rejects_oversized_uncompressed( + tmp_path: Path, monkeypatch: pytest.MonkeyPatch +) -> None: + monkeypatch.setattr("sil_lift._zip._MAX_UNCOMPRESSED_BYTES", 100) + package = _make_zip(tmp_path / "big.zip", PAIR) # declared sizes far exceed 100 + with pytest.raises(sil_lift.LiftParseError, match="exceeds"): + sil_lift.load(package) + + +def test_zip_rejects_too_many_entries(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setattr("sil_lift._zip._MAX_ENTRIES", 1) + package = _make_zip(tmp_path / "many.zip", PAIR) # two members + with pytest.raises(sil_lift.LiftParseError, match="too many entries"): + sil_lift.load(package) + + +def test_cli_accepts_zip(tmp_path: Path, capsys: pytest.CaptureFixture[str]) -> None: + package = _make_zip(tmp_path / "pkg.zip", PAIR, wrap="Pkg") + + assert main(["validate", str(package)]) == 0 + assert "0 error(s), 0 warning(s)" in capsys.readouterr().out + + assert main(["stats", str(package), "--format", "json"]) == 0 + assert json.loads(capsys.readouterr().out)["entries"] == 1 + + assert main(["check-media", str(package)]) == 0 + assert "0 missing" in capsys.readouterr().out + + +def test_save_zip_roundtrip_wrapped(tmp_path: Path) -> None: + lex = sil_lift.load(_make_zip(tmp_path / "src.zip", PAIR, wrap="Src")) + out = tmp_path / "out.zip" + lex.save_zip(out, wrap_folder="Out") + names = _names(out) + assert "Out/test20080407.lift" in names + assert "Out/test20080407.lift-ranges" in names + assert list(sil_lift.load(out).iter_problems()) == [] + + +def test_save_zip_flat_carries_extra_files(tmp_path: Path) -> None: + src = tmp_path / "src.zip" + with zipfile.ZipFile(src, "w") as archive: + archive.write(PAIR_DIR / "test20080407.lift", "Proj/test20080407.lift") + archive.write(PAIR_DIR / "test20080407.lift-ranges", "Proj/test20080407.lift-ranges") + archive.writestr("Proj/WritingSystems/en.ldml", b"") + lex = sil_lift.load(src) + out = tmp_path / "flat.zip" + lex.save_zip(out, wrap_folder=False) + names = _names(out) + assert "test20080407.lift" in names # flat: no wrapper folder + assert "WritingSystems/en.ldml" in names # non-modeled files carried through + + +def test_save_zip_default_wraps_by_zip_stem(tmp_path: Path) -> None: + lex = sil_lift.load(_make_zip(tmp_path / "src.zip", PAIR)) + out = tmp_path / "MyExport.zip" + lex.save_zip(out) # default wrap_folder=True -> folder named after the zip + assert "MyExport/test20080407.lift" in _names(out) + + +def test_save_zip_from_scratch(tmp_path: Path) -> None: + lex = sil_lift.Lexicon(producer="test") + entry = sil_lift.Entry(id="e1", guid="dddddddd-dddd-4444-8888-dddddddddddd") + entry.lexical_unit["en"] = "x" + lex.entries.append(entry) + ranges = sil_lift.RangesFile() + ranges.add_range("grammatical-info").add_element("Noun") + lex.add_ranges_file(ranges, href="Dict.lift-ranges") + + out = tmp_path / "Dict.zip" + lex.save_zip(out) # no source folder to carry; names derive from the zip stem + names = _names(out) + assert "Dict/Dict.lift" in names + assert "Dict/Dict.lift-ranges" in names + + reloaded = sil_lift.load(out) + assert reloaded.all_ranges()["grammatical-info"].elements[0].id == "Noun" + assert list(reloaded.iter_problems()) == [] From b748aeaf8de0b3c281f52a8720df2609657e94f8 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 22 Jul 2026 13:21:20 -0400 Subject: [PATCH 37/42] Treat foreign-OS absolute hrefs as absolute in _normalize_href MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `_normalize_href` judged absoluteness with the host's `Path`, so a Windows drive-letter href (`C:\dir\pic.png`) was seen as relative on POSIX and a POSIX path (`/abs/x`) as relative on Windows — then joined to the lexicon base for media checks and companion discovery, giving a spurious finding. Test with both `PurePosixPath` and `PureWindowsPath` so either convention's absolute form is refused regardless of host. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/sil_lift/_model.py | 11 ++++++++--- tests/test_ranges_folder.py | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index cbf3c64..8c73a2d 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -13,7 +13,7 @@ from dataclasses import dataclass, field from datetime import date, datetime -from pathlib import Path +from pathlib import Path, PurePosixPath, PureWindowsPath from typing import TYPE_CHECKING from ._extras import Extras @@ -315,8 +315,13 @@ def _normalize_href(href: str) -> Path | None: """ if "://" in href or href.startswith(("http:", "https:", "file:")): return None - path = Path(href.replace("\\", "/")) - return None if path.is_absolute() else path + normalized = href.replace("\\", "/") + # Absolute under either OS convention, independent of the host: PurePosixPath + # catches "/abs", PureWindowsPath catches a drive-letter "C:/..." — each + # reports the other's form as relative, misjudging hrefs on the opposite host. + if PurePosixPath(normalized).is_absolute() or PureWindowsPath(normalized).is_absolute(): + return None + return Path(normalized) class Lexicon: diff --git a/tests/test_ranges_folder.py b/tests/test_ranges_folder.py index 7bdbc4d..187a6a1 100644 --- a/tests/test_ranges_folder.py +++ b/tests/test_ranges_folder.py @@ -6,6 +6,7 @@ import sil_lift from sil_lift import LiftParseError, RangesFile, Text +from sil_lift._model import _normalize_href CORPUS_DIR = Path(__file__).parent / "corpus" PAIR_DIR = CORPUS_DIR / "ranges" @@ -192,3 +193,22 @@ def test_missing_media_flags_broken_ref(tmp_path: Path) -> None: (tmp_path / "Moma" / "pictures" / "sdd.png").unlink() missing = lexicon.missing_media() assert [r.href for r in missing] == ["pictures\\sdd.png"] + + +@pytest.mark.parametrize( + ("href", "expected"), + [ + ("audio/one.wav", Path("audio/one.wav")), + ("pictures\\cultural law.png", Path("pictures/cultural law.png")), + ("C:/dir/pic.png", None), + ("C:\\dir\\pic.png", None), + ("/abs/pic.png", None), + ("//server/share/pic.png", None), + ("file://C:/x.png", None), + ("http://example.com/x.png", None), + ], +) +def test_normalize_href(href: str, expected: Path | None) -> None: + # WeSay backslash+space stays relative; every absolute form (drive-letter, + # POSIX, UNC, file://, remote) is refused regardless of host. + assert _normalize_href(href) == expected From 1312ed29a46ff27abbb5bdc60657804243df53c5 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Wed, 22 Jul 2026 13:58:21 -0400 Subject: [PATCH 38/42] Update provenance for resolved upstream licenses `sillsdev/lift-standard` and `sillsdev/LiftTweaker` now carry MIT LICENSE files, so: - The vendored `lift-0.13.rng` is recorded as MIT (compatible with this package's MIT), dropping the "no license / SIL-internal / resolve before public release" caveat. - The corpus license review records MIT for the lift-standard and LiftTweaker fixtures. Only the flashgrab/Moma fixture still can't be bundled in an MIT release (its LICENSE ambiguously defers to Anki's AGPL-3.0); the blanket "must not redistribute" wording is narrowed to that fixture, linking https://github.com/sillsdev/flashgrab/issues/20. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/sil_lift/schemas/PROVENANCE.md | 6 +++--- tests/corpus/PROVENANCE.md | 24 ++++++++++++------------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/sil_lift/schemas/PROVENANCE.md b/src/sil_lift/schemas/PROVENANCE.md index 6adc4c6..9b4e9b6 100644 --- a/src/sil_lift/schemas/PROVENANCE.md +++ b/src/sil_lift/schemas/PROVENANCE.md @@ -9,9 +9,9 @@ - **Note**: this is the operative LIFT 0.13 grammar. The same content (modulo whitespace/comment ordering) is embedded as `lift.rng` in both the spec repo's LiftIO and libpalaso's `SIL.Lift/Validation/` and used by the C# `Validator`. -- **License**: the lift-standard repo has **no license file** (known upstream - gap). SIL-internal use; resolve with upstream before any public release of - this package. +- **License**: MIT — `sillsdev/lift-standard` carries a + [LICENSE](https://github.com/sillsdev/lift-standard/blob/master/LICENSE) + compatible with this package's own MIT license. ## lift-ranges-0.13.rng diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md index 8573c8a..266c55b 100644 --- a/tests/corpus/PROVENANCE.md +++ b/tests/corpus/PROVENANCE.md @@ -8,22 +8,22 @@ line-ending normalization is disabled for everything under `tests/corpus/` Files under `tests/corpus/` retain their upstream licenses (recorded per fixture below) and are **not** covered by this repository's MIT license. -**License review (2026-07-17, re-verified against the live repos)**: -`lift-standard` and `LiftTweaker` still have no license file; `flashgrab`'s +**License review (2026-07-22, re-verified against the live repos)**: +`lift-standard` and `LiftTweaker` carry MIT LICENSE files; `flashgrab`'s LICENSE reads "Free and open source, under Anki's license" (Anki is -AGPL-3.0). All three are SIL-authored repos, so carrying their fixtures in -this SIL repo with provenance is acceptable, but PyPI release artifacts must -not redistribute them: the sdist excludes `tests/` (pyproject -`[tool.hatch.build.targets.sdist]`). Open asks, tracked in the planning -repo: a LICENSE for lift-standard (raised with the ranges-schema offer), -license clarification or fixture replacement for LiftTweaker's sample.lift, -and flashgrab license/attribution cleanup. +AGPL-3.0). All are SIL-authored repos, so carrying their fixtures in this SIL +repo with provenance is fine. And the sdist excludes `tests/` (pyproject +`[tool.hatch.build.targets.sdist]`) so release artifacts ship none of them. +The only required exclusion is for the flashgrab/Moma fixture, whose LICENSE +ambiguously defers to Anki's AGPL-3.0 (unsafe to bundle in an MIT release). +flashgrab license/attribution cleanup is the remaining open ask, tracked at +https://github.com/sillsdev/flashgrab/issues/20. ## spec-examples/0.12/ — 19 files - **Source**: `sillsdev/lift-standard` `examples/*.lift` - **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` (master) -- **License**: none in repo (see flag above) +- **License**: MIT (see flag above) - All are ``, small (≤205 lines). Includes `fields any order.lift` (filename with a space — path-handling edge case). The upstream `VerifyExamples.proj` (MSBuild/Jing harness) was not taken — @@ -41,7 +41,7 @@ that script; committed so tests don't depend on regeneration. - **Source**: `sillsdev/lift-standard` `LIFTDotNet/LiftIO.Tests/test20080407.lift` \+ `.lift-ranges` - **Commit**: `39a83be083174a40dff5b7bacac86b4f5e68afe4` -- **License**: none in repo (see flag above) +- **License**: MIT (see flag above) - The only known `.lift` \+ external `.lift-ranges` sample pair; primary ranges fixture. `version="0.13"`, `producer="hand crafted"`. @@ -77,7 +77,7 @@ that script; committed so tests don't depend on regeneration. - **Source**: `sillsdev/LiftTweaker` `sample/sample.lift` - **Commit**: `b7857369ccca99884c911515b8ad46cd7ba0155c` (HEAD of default branch at fetch time) -- **License**: none in repo (see flag above) +- **License**: MIT (see flag above) - **Note**: this file is `` (`producer="SIL.FLEx 2.4.0.39737"`), so `migrate_corpus.py` also produces `misc/sample.0.13.lift` from it. From 3da841071d044aed36310ebd2db968bf89c775c5 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 23 Jul 2026 09:29:21 -0400 Subject: [PATCH 39/42] Accept zip in the export command and add a from-scratch export guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - `sil-lift export` now accepts a `.zip` package (extracted once through the shared read path), joining validate/stats/check-media. - New guide "Building a LIFT export from scratch": a runnable script that constructs an entry (multitext, pronunciation, sense with an example, illustration, semantic-domain trait, and an app-specific field) plus a `.lift-ranges` companion, validates in memory, and saves — with verified output. Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 12 ++- docs/en/guides/build-export.md | 168 +++++++++++++++++++++++++++++++++ mkdocs.yml | 1 + src/sil_lift/_cli.py | 77 ++++++++------- tests/test_zip.py | 10 ++ 5 files changed, 227 insertions(+), 41 deletions(-) create mode 100644 docs/en/guides/build-export.md diff --git a/CHANGELOG.md b/CHANGELOG.md index a9ea8c3..c0f460f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,9 +45,10 @@ releases may contain breaking changes. - Zipped LIFT packages: `sil_lift.load()` reads a `.zip` (both the flat and folder-wrapped layouts, junk entries like `__MACOSX` ignored), `Lexicon.save_zip()` writes one (carrying media, `WritingSystems/`, and other - package files through verbatim), and the `validate` / `stats` / `check-media` - CLI commands accept a `.zip` path. Extraction rejects path-traversal members - and is capped (entry count and a 10 GiB uncompressed total) against zip bombs. + package files through verbatim); `validate`, `stats`, `check-media`, and + `export` accept a `.zip` path on the CLI. Extraction rejects path-traversal + members and is capped (entry count and a 10 GiB uncompressed total) against + zip bombs. - Validation: `validate_file()` / `iter_problems()` / `Lexicon.iter_problems()` returning an addressable `Problem` stream (file/entry/line). RELAX NG layer with two documented deviations from raw @@ -81,7 +82,8 @@ releases may contain breaking changes. non-Python CI pipeline can run the conformance check with no local Python toolchain (`Dockerfile`, `action.yml`, `docker-entrypoint.sh`). - Documentation site: task-oriented guides, the fidelity contract, generated - API reference, localization-ready configuration; includes a worked example - ("bulk-editing glosses", complete runnable script with verified output) and + API reference, localization-ready configuration; includes worked examples + ("bulk-editing glosses" and "building a LIFT export from scratch", complete + runnable scripts with verified output) and a "Differences from the C# libraries" page summarizing where sil-lift deviates from SIL.Lift/LiftSorter/Chorus behavior and why. diff --git a/docs/en/guides/build-export.md b/docs/en/guides/build-export.md new file mode 100644 index 0000000..ce13b26 --- /dev/null +++ b/docs/en/guides/build-export.md @@ -0,0 +1,168 @@ +# Worked example: building a LIFT export from scratch + +If you are exporting another application's data as LIFT — the task behind [Producing conformant LIFT](lift-export-interop.md) — `sil-lift` can build the document object by object and serialize it, instead of emitting XML by hand. This walks through one script that constructs an entry with the pieces a real dictionary has (multiple writing systems, a pronunciation, a sense with an example, an illustration, a semantic-domain trait, and an app-specific field), writes the controlled vocabularies into a `.lift-ranges` companion, validates, and saves. + +## The script + +```python +from pathlib import Path + +import sil_lift + +lex = sil_lift.Lexicon(producer="my-exporter") + +# One entry, built from the source model. +entry = sil_lift.Entry(id="kanga", guid="6b9e7c2a-3f4d-4a1b-8c5e-2d9f0a1b2c3d") +entry.lexical_unit["seh"] = "nkhuku" +entry.lexical_unit["pt"] = "galinha" + +pron = sil_lift.Pronunciation() +pron.forms["en"] = "Speaker: Ana" # The Combine's speaker-label convention +pron.media.append(sil_lift.URLRef(href="audio/nkhuku.wav")) +entry.pronunciations.append(pron) + +sense = sil_lift.Sense(id="kanga_s1") +sense.grammatical_info = sil_lift.GrammaticalInfo(value="Noun") +sense.glosses.append(sil_lift.Form(lang="en", text=sil_lift.Text(["chicken"]))) +sense.definition["en"] = "a domestic fowl kept for its eggs and meat" + +example = sil_lift.Example() +example.forms["seh"] = "Ndinafuna nkhuku." +translation = sil_lift.Translation() +translation.forms["en"] = "I want a chicken." +example.translations.append(translation) +sense.examples.append(example) + +photo = sil_lift.URLRef(href="pictures/hen.jpg") +photo.label["en"] = "A hen" +sense.illustrations.append(photo) + +sense.traits.append(sil_lift.Trait(name="semantic-domain-ddp4", value="1.6.1.2")) + +scientific = sil_lift.Field(type="scientific-name") # an app-specific extra field +scientific.content["en"] = "Gallus gallus domesticus" +sense.fields.append(scientific) + +entry.senses.append(sense) +lex.entries.append(entry) + +# The controlled vocabularies the entry refers to, in a companion .lift-ranges. +ranges = sil_lift.RangesFile() +ranges.add_range("grammatical-info").add_element("Noun").label["en"] = "noun" +ranges.add_range("semantic-domain-ddp4").add_element("1.6.1.2").label["en"] = "Bird" +lex.add_ranges_file(ranges, href="birds.lift-ranges") + +# Validate what save() would write, before touching the disk. +problems = list(lex.iter_problems()) +print(f"validation: {len(problems)} problem(s)") + +out = Path("export") +out.mkdir(exist_ok=True) +lex.save(out / "birds.lift") +print("=== birds.lift ===") +print((out / "birds.lift").read_text(encoding="utf-8"), end="") +print("=== birds.lift-ranges ===") +print((out / "birds.lift-ranges").read_text(encoding="utf-8"), end="") +``` + +## What it produces + +`validation: 0 problem(s)`, then the `.lift` and its companion side by side: + +``` +=== birds.lift === + + +
+ + + + +
+ + +
+ nkhuku +
+
+ galinha +
+
+ +
+ Speaker: Ana +
+ +
+ + + + chicken + + +
+ a domestic fowl kept for its eggs and meat +
+
+ +
+ Ndinafuna nkhuku. +
+ +
+ I want a chicken. +
+
+
+ + + + + +
+ Gallus gallus domesticus +
+
+
+
+
+=== birds.lift-ranges === + + + + + + + + + + + + + +``` + +## Notes on the API + +- Multitext fields (`lexical_unit`, `definition`, a `Form`/`URLRef` label, a `Field`'s content, ...) take one string per writing system through the mapping interface: `entry.lexical_unit["seh"] = "nkhuku"` adds a `
`. A source model that keys strings by language code maps straight onto this. +- `RangesFile.add_range()` / `Range.add_element()` build the controlled vocabularies, and `Lexicon.add_ranges_file(ranges, href=...)` attaches the companion and adds the header `` references — so the entry's `` and `` resolve against the ranges you defined. +- A `URLRef` is an href plus an optional caption/label multitext — used for both `` (audio) and `` (photos). The pronunciation here follows The Combine's convention of an `en` form reading `Speaker: `. +- App-specific data with no native LIFT home rides as a `` (or ``): FieldWorks reads these as custom fields and The Combine preserves them. +- Give every entry a real, stable `guid` (e.g. from `uuid.uuid4()`, reused across exports) — a later re-import updates the entry in place rather than duplicating it. `sil-lift validate --require-ids` enforces this. +- `lex.iter_problems()` validates the in-memory document (what `save()` would write) before anything hits disk; here it is clean. Because the lexicon has no folder yet, the media-presence and companion-href checks are skipped — run [`sil-lift validate`](cli.md) on the saved output (or with `--no-check-media`) once the audio and photo files are in place. + +## Packaging + +`lex.save("export/birds.lift")` writes the folder form (`.lift` + `.lift-ranges` side by side). To emit a single zipped package that FieldWorks and The Combine import directly, use `lex.save_zip("birds.zip")` instead — see [Producing conformant LIFT](lift-export-interop.md). diff --git a/mkdocs.yml b/mkdocs.yml index 194cc70..b666c45 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -55,6 +55,7 @@ nav: - Ranges and media: guides/folder-media.md - Command line: guides/cli.md - Producing conformant LIFT: guides/lift-export-interop.md + - "Worked example: building a LIFT export": guides/build-export.md - "Worked example: bulk-editing glosses": guides/bulk-edit-glosses.md - Fidelity guarantees: fidelity.md - Differences from the C# libraries: csharp-differences.md diff --git a/src/sil_lift/_cli.py b/src/sil_lift/_cli.py index 7de5b3f..a4cf677 100644 --- a/src/sil_lift/_cli.py +++ b/src/sil_lift/_cli.py @@ -210,41 +210,46 @@ def _text_or_empty(text: Text | None) -> str: def _cmd_export(args: argparse.Namespace) -> int: - if args.langs: - langs: list[str] = [lang.strip() for lang in args.langs.split(",") if lang.strip()] - else: - detected: set[str] = set() - with open_reader(args.path) as reader: - for entry in reader: - for sense in _iter_leaf_senses(entry.senses): - detected.update(form.lang for form in sense.glosses if form.lang is not None) - detected.update(sense.definition.keys()) - langs = sorted(detected) - - header = ["entry_id", "entry_guid", "sense_id", "lexeme", "pos"] - for lang in langs: - header.extend([f"gloss_{lang}", f"definition_{lang}"]) - - out_file: TextIO = ( - sys.stdout if args.output is None else args.output.open("w", encoding="utf-8", newline="") - ) - try: - writer = csv.writer(out_file, delimiter="\t" if args.tsv else ",") - writer.writerow(header) - with open_reader(args.path) as reader: - for entry in reader: - forms = entry.lexical_unit.forms - lexeme = str(forms[0].text) if forms else "" - for sense in _iter_leaf_senses(entry.senses): - pos = sense.grammatical_info.value if sense.grammatical_info else "" - row = [entry.id or "", entry.guid or "", sense.id or "", lexeme, pos] - for lang in langs: - row.append(_text_or_empty(sense.gloss(lang))) - row.append(_text_or_empty(sense.definition.get(lang))) - writer.writerow(row) - finally: - if args.output is not None: - out_file.close() + from ._zip import lift_source + + with lift_source(args.path) as lift_path: + if args.langs: + langs: list[str] = [lang.strip() for lang in args.langs.split(",") if lang.strip()] + else: + detected: set[str] = set() + with open_reader(lift_path) as reader: + for entry in reader: + for sense in _iter_leaf_senses(entry.senses): + detected.update(g.lang for g in sense.glosses if g.lang is not None) + detected.update(sense.definition.keys()) + langs = sorted(detected) + + header = ["entry_id", "entry_guid", "sense_id", "lexeme", "pos"] + for lang in langs: + header.extend([f"gloss_{lang}", f"definition_{lang}"]) + + out_file: TextIO + if args.output is None: + out_file = sys.stdout + else: + out_file = args.output.open("w", encoding="utf-8", newline="") + try: + writer = csv.writer(out_file, delimiter="\t" if args.tsv else ",") + writer.writerow(header) + with open_reader(lift_path) as reader: + for entry in reader: + forms = entry.lexical_unit.forms + lexeme = str(forms[0].text) if forms else "" + for sense in _iter_leaf_senses(entry.senses): + pos = sense.grammatical_info.value if sense.grammatical_info else "" + row = [entry.id or "", entry.guid or "", sense.id or "", lexeme, pos] + for lang in langs: + row.append(_text_or_empty(sense.gloss(lang))) + row.append(_text_or_empty(sense.definition.get(lang))) + writer.writerow(row) + finally: + if args.output is not None: + out_file.close() return 0 @@ -298,7 +303,7 @@ def main(argv: Sequence[str] | None = None) -> int: export = subparsers.add_parser( "export", help="flatten senses to CSV/TSV, one row per leaf sense (streaming)" ) - export.add_argument("path", type=Path, help="a .lift file") + export.add_argument("path", type=Path, help="a .lift or .zip file") export.add_argument("-o", "--output", type=Path, default=None, help="default: stdout") export.add_argument( "--langs", default=None, help="comma-separated analysis languages (default: auto-detect)" diff --git a/tests/test_zip.py b/tests/test_zip.py index 5be71cc..0bbb053 100644 --- a/tests/test_zip.py +++ b/tests/test_zip.py @@ -121,6 +121,16 @@ def test_cli_accepts_zip(tmp_path: Path, capsys: pytest.CaptureFixture[str]) -> assert "0 missing" in capsys.readouterr().out +def test_cli_export_accepts_zip(tmp_path: Path) -> None: + full = CORPUS_DIR / "spec-examples" / "0.13" / "full-entry.lift" + package = _make_zip(tmp_path / "pkg.zip", {"full-entry.lift": full}, wrap="Pkg") + out = tmp_path / "out.csv" + assert main(["export", str(package), "-o", str(out)]) == 0 + rows = out.read_text(encoding="utf-8").splitlines() + assert rows[0].startswith("entry_id,") + assert any("abat" in row for row in rows[1:]) # the entry id in full-entry.lift + + def test_save_zip_roundtrip_wrapped(tmp_path: Path) -> None: lex = sil_lift.load(_make_zip(tmp_path / "src.zip", PAIR, wrap="Src")) out = tmp_path / "out.zip" From ae30cbba0f21459867d30b11927bffe643dca6c0 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 23 Jul 2026 10:20:45 -0400 Subject: [PATCH 40/42] Align and polish the documentation - Bring the CLI guide in line with the shipped commands: `validate` `--require-ids` and stdin (`-`), `stats --format json`, and `export` accepting a `.zip` (all four read commands now do). - Enable the `admonition` and `toc` (heading permalink) Markdown extensions so the note callout renders and section headings are linkable. - Note in the ranges/media guide that non-modeled folders (`WritingSystems/`, `consent/`) are carried through verbatim by `save_zip()`. - Mention `SIL.DictionaryServices` (the LexEntry/LexSense layer The Combine and WeSay use) on the C#-differences page. - Refer to FieldWorks by product name rather than "FLEx" across docs and comments, list The Combine before WeSay, and regenerate the ranges schema's header comment accordingly. - Link the hosted documentation from the README. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 3 ++- docs/en/csharp-differences.md | 6 +++--- docs/en/guides/cli.md | 9 +++++---- docs/en/guides/folder-media.md | 8 ++++++-- docs/en/guides/lift-export-interop.md | 2 +- docs/en/guides/validate.md | 2 +- mkdocs.yml | 6 ++++++ src/sil_lift/_validate.py | 9 +++++---- src/sil_lift/schemas/lift-ranges-0.13.rng | 8 ++++---- tests/tools/build_ranges_schema.py | 8 ++++---- 10 files changed, 37 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 9185444..07c7272 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,8 @@ Requires Python 3.11+; the only runtime dependency is lxml. Install it [from PyPI](https://pypi.org/project/sil-lift/) with `pip install sil-lift`; that includes the `sil-lift` command (`validate` / `stats` / `sort` / `check-media` / `export`). -Documentation lives in `docs/en/` (mkdocs-material; build with +Documentation is at (source in +`docs/en/`, mkdocs-material; build locally with `pip install -e .[docs] && mkdocs build --strict`). ## Fidelity guarantees diff --git a/docs/en/csharp-differences.md b/docs/en/csharp-differences.md index 4bce20c..d0dd123 100644 --- a/docs/en/csharp-differences.md +++ b/docs/en/csharp-differences.md @@ -1,6 +1,6 @@ # Differences from the C# libraries -sil-lift is loosely analogous to SIL's C# LIFT tooling — chiefly `SIL.Lift` in [libpalaso](https://github.com/sillsdev/libpalaso) (parser, validator, migrator, `LiftSorter`) and the LIFT handlers in [Chorus](https://github.com/sillsdev/chorus). It is a fresh implementation, not a port. This page summarizes where behavior deliberately differs. +sil-lift is loosely analogous to SIL's C# LIFT tooling — chiefly `SIL.Lift` in [libpalaso](https://github.com/sillsdev/libpalaso) (parser, validator, migrator, `LiftSorter`), `SIL.DictionaryServices` in the same repo (the `LexEntry`/`LexSense` model, with its own LIFT reader/writer, that The Combine and WeSay use), and the LIFT handlers in [Chorus](https://github.com/sillsdev/chorus). It is a fresh implementation, not a port. This page summarizes where behavior deliberately differs. ## Scope @@ -14,7 +14,7 @@ sil-lift is loosely analogous to SIL's C# LIFT tooling — chiefly `SIL.Lift` in ## API shape -`SIL.Lift`'s parser is callback-driven (`ILexiconMerger`): it pushes parse events at a consumer. sil-lift instead returns a plain object graph — typed dataclasses for every LIFT element — because Python scripters want objects, not callbacks. The streaming API yields the _same_ `Entry` type, so there is no capability-reduced twin model. +`SIL.Lift`'s parser is callback-driven (`ILexiconMerger`): it pushes parse events at a consumer. sil-lift instead returns a plain object graph — typed dataclasses for every LIFT element — because Python scripters want objects, not callbacks. `SIL.DictionaryServices` does layer a `LexEntry`/`LexSense` object model over `SIL.Lift`, but as an application model it represents only the constructs those apps use — so re-serializing through it can't preserve out-of-model content the way sil-lift's residue capture and byte fidelity do (see below). The streaming API yields the _same_ `Entry` type, so there is no capability-reduced twin model. ## Round-trip fidelity @@ -29,7 +29,7 @@ See [Fidelity guarantees](fidelity.md). The C# `Validator` runs one RELAX NG pass and reports the first errors as strings. sil-lift reports a structured, entry/line-addressed `Problem` stream, and its schema layer knowingly diverges in three places: -- **Invalid URIs are warnings, not errors.** The C# RELAX NG engine never enforced the `anyURI` datatype, so FLEx has been writing `file://C:/...` hrefs into real lexicons for years. Rejecting those files would flag virtually every FLEx export. +- **Invalid URIs are warnings, not errors.** The C# RELAX NG engine never enforced the `anyURI` datatype, so FieldWorks (FLEx) has been writing `file://C:/...` hrefs into real lexicons for years. Rejecting those files would flag virtually every FLEx export. - **Schematron rules are enforced** (as semantic checks): duplicate form languages and similar co-constraints in the LIFT grammar were silently ignored by both C# and raw lxml validation. - **Cross-file comparisons are Unicode-normalized**, because FLEx writes the `.lift` in NFC and the companion `.lift-ranges` in NFD. diff --git a/docs/en/guides/cli.md b/docs/en/guides/cli.md index 57afb22..3f1401e 100644 --- a/docs/en/guides/cli.md +++ b/docs/en/guides/cli.md @@ -3,16 +3,17 @@ Installing the package (`pip install sil-lift`) also installs the `sil-lift` command — a supported LiftTools-style tool that ships with the package (and, for `validate`, a worked example of the library API). ``` -sil-lift validate PATH [--format {text,json}] [--strict] [--no-check-media] +sil-lift validate PATH [--format {text,json}] [--strict] [--no-check-media] [--require-ids] all problems, entry/line-addressed; exit 1 on errors -sil-lift stats PATH entry/sense/language counts (streaming; any size) +sil-lift stats PATH [--format {text,json}] + entry/sense/language counts (streaming; any size) sil-lift sort PATH [-o OUT] canonically sorted, diff-ready copy (default: in place) sil-lift check-media PATH missing and orphaned media report; exit 1 if missing sil-lift export PATH [-o OUT] [--langs L] [--tsv] one row per leaf sense (subsenses flattened) to CSV/TSV (streaming) ``` -`--format json` writes a single JSON object to stdout (and nothing else) for CI/automation consumption; see the schema in the example below. `--strict` treats warnings as errors, exiting 1 if any are found — use it to gate a build on a clean bill of health rather than errors alone. `--no-check-media` skips the filesystem media-presence check (suppressing `missing-media` findings), which is useful when validating a freshly generated export whose audio/photo files live elsewhere and aren't colocated on disk. +`--format json` writes a single JSON object to stdout (and nothing else) for CI/automation consumption; see the schema in the example below. `--strict` treats warnings as errors, exiting 1 if any are found — use it to gate a build on a clean bill of health rather than errors alone. `--no-check-media` skips the filesystem media-presence check (suppressing `missing-media` findings), which is useful when validating a freshly generated export whose audio/photo files live elsewhere and aren't colocated on disk. `--require-ids` additionally fails (a `missing-id` error) on any entry lacking a `guid` or sense lacking an `id` — stricter than LIFT, for workflows that re-import by a stable id. Passing `-` as the path reads the document from stdin (a piped document has no folder, so its companion `.lift-ranges` and media are not resolved). `stats` likewise takes `--format json`, emitting the counts as a single JSON object. !!! note `validate`'s exit codes and `--format json` schema are a supported automation interface: both are covered by tests and change only under SemVer. @@ -20,7 +21,7 @@ sil-lift export PATH [-o OUT] [--langs L] [--tsv] `sort` rewrites only the `.lift` file; companion `.lift-ranges` files are left untouched (sort those separately with the `RangesFile` API). -`validate`, `stats`, and `check-media` also accept a zipped LIFT package (a `.zip` in either layout — files at the archive root, or nested under one top-level folder); it is extracted to a temporary directory and discarded when the command finishes. +`validate`, `stats`, `check-media`, and `export` also accept a zipped LIFT package (a `.zip` in either layout — files at the archive root, or nested under one top-level folder); it is extracted to a temporary directory and discarded when the command finishes. Examples: diff --git a/docs/en/guides/folder-media.md b/docs/en/guides/folder-media.md index ae894b3..03355ec 100644 --- a/docs/en/guides/folder-media.md +++ b/docs/en/guides/folder-media.md @@ -5,14 +5,14 @@ A LIFT lexicon is usually a _folder_: the `.lift` file, one or more `.lift-range ## Ranges ```python -lex = sil_lift.load("dictionary.lift") # companions tracked automatically +lex = sil_lift.load("dictionary.lift") # companions tracked automatically lex.ranges_files # {Path(...): RangesFile} lex.all_ranges() # merged {id: Range} view lex.all_ranges()["grammatical-info"].elements ``` -Companion discovery handles the real world: a `range/@href` that points at an existing file is used; FLEx's dangling absolute `file://C:/...` hrefs fall back to the href's basename next to the `.lift`; and the conventional `.lift-ranges` sibling is picked up even when nothing references it. +Companion discovery handles the real world: a `range/@href` that points at an existing file is used; FieldWorks' dangling absolute `file://C:/...` hrefs fall back to the href's basename next to the `.lift`; and the conventional `.lift-ranges` sibling is picked up even when nothing references it. `lex.save()` writes the `.lift` and every tracked companion together. Edits to a `RangesFile` save back to _its_ file; untouched ranges keep their exact bytes. Standalone use: @@ -35,3 +35,7 @@ lex.missing_media() # refs whose files don't exist ``` Resolution follows the conventional layout: a relative href is checked as given (backslashes normalized — WeSay writes `pictures\photo with space.png`) and under `audio/` (for pronunciation media) or `pictures/` (for illustrations). Remote/absolute hrefs can't be checked and are skipped. + +## Other folder contents + +A LIFT folder often holds files sil-lift doesn't model — writing-system LDML under `WritingSystems/`, The Combine's speaker consent audio/image files under `consent/`, and the like; `load()`/`save()` leave these untouched, and [`Lexicon.save_zip()`](lift-export-interop.md) carries them through verbatim when packaging the folder. diff --git a/docs/en/guides/lift-export-interop.md b/docs/en/guides/lift-export-interop.md index 9205c20..b20efde 100644 --- a/docs/en/guides/lift-export-interop.md +++ b/docs/en/guides/lift-export-interop.md @@ -8,7 +8,7 @@ Writing LIFT is much easier than parsing it: an exporter only emits the subset o LIFT is usually moved around as a single `.zip` — FieldWorks and The Combine both import and export that way — so `sil-lift` reads and writes zipped packages directly, in either layout the ecosystem uses: the files at the archive root, or nested under one top-level folder. -- **Read:** `sil_lift.load("package.zip")` extracts to a temp directory, locates the single `.lift`, and loads it (companions and media resolve as usual). The `validate`, `stats`, and `check-media` CLI commands accept a `.zip` path too, so the gate below runs against a package as-is. Extraction is hardened against hostile archives — path-traversal members are refused, and the entry count and total uncompressed size (10 GiB) are capped against zip bombs. +- **Read:** `sil_lift.load("package.zip")` extracts to a temp directory, locates the single `.lift`, and loads it (companions and media resolve as usual). The `validate`, `stats`, `check-media`, and `export` CLI commands accept a `.zip` path too, so the gate below runs against a package as-is. Extraction is hardened against hostile archives — path-traversal members are refused, and the entry count and total uncompressed size (10 GiB) are capped against zip bombs. - **Write:** `Lexicon.save_zip("out.zip", wrap_folder="MyDict")` packages the `.lift`, its `.lift-ranges`, and every other file in the source folder (media, `WritingSystems/`, `consent/`, ...) into a zip. `wrap_folder` defaults to a top-level folder named after the zip (the FieldWorks/Combine import convention); pass `False` for a flat archive. The `.lift` and `.lift-ranges` keep their byte-fidelity inside the package; the zip container itself is not byte-reproducible. diff --git a/docs/en/guides/validate.md b/docs/en/guides/validate.md index 5c7751f..718c402 100644 --- a/docs/en/guides/validate.md +++ b/docs/en/guides/validate.md @@ -26,7 +26,7 @@ Each `Problem` carries `level` (`"error"`/`"warning"`), a stable `code`, `messag 2. **Ranges schema** — this project's `lift-ranges-0.13.rng` — over every tracked `.lift-ranges` companion. 3. **Semantic checks** the grammar cannot express: `duplicate-guid`, `dangling-ref`, `range-parent`, `undefined-range-value`, `duplicate-form-lang`, `missing-media`. -## Real-world FLEx output +## Real-world FieldWorks (FLEx) output FieldWorks systematically writes some content that strict tooling rejects. Here is sil-lift's policy, so that real lexicons validate usefully: diff --git a/mkdocs.yml b/mkdocs.yml index b666c45..0443f80 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -28,6 +28,12 @@ plugins: paths: [ src ] - search +markdown_extensions: +- admonition +- toc: + permalink: "🔗" + permalink_title: "Link to this section" + extra: social: - icon: fontawesome/solid/globe diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index bf9196a..0a40bf5 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -6,10 +6,11 @@ deviations from raw libxml2 behavior: - ``href`` attributes are masked before validation. libxml2's ``anyURI`` - check rejects the ``file://C:/...`` URIs that FLEx systematically writes - (the C# validator's engine never enforced anyURI), which would flag - virtually every real lexicon. Instead, sil-lift runs its own URI - plausibility check and reports offenders as *warnings* (``uri-not-rfc``). + check rejects the ``file://C:/...`` URIs that FieldWorks (FLEx) + systematically writes (the C# validator's engine never enforced anyURI), + which would flag virtually every real lexicon. Instead, sil-lift runs its + own URI plausibility check and reports offenders as *warnings* + (``uri-not-rfc``). - children are grouped by tag before validation. libxml2's interleave support rejects legally-interleaved documents once an element type appears in more than one run (e.g. ``field, note, field, note`` inside a diff --git a/src/sil_lift/schemas/lift-ranges-0.13.rng b/src/sil_lift/schemas/lift-ranges-0.13.rng index 5bfb675..feed47c 100644 --- a/src/sil_lift/schemas/lift-ranges-0.13.rng +++ b/src/sil_lift/schemas/lift-ranges-0.13.rng @@ -3,10 +3,10 @@ RELAX NG grammar for standalone .lift-ranges documents (LIFT 0.13). Authored by the sil-lift project: the LIFT 0.13 grammar has no root element - for a ranges-only document, yet FieldWorks/WeSay write them routinely. The - blocks below are copied verbatim from lift-0.13.rng (see - PROVENANCE.md in this directory) so the content model is exactly the spec's; - only the root is new. + for a ranges-only document, yet FieldWorks and The Combine write them + routinely. The blocks below are copied verbatim from lift-0.13.rng + (see PROVENANCE.md in this directory) so the content model is exactly the + spec's; only the root is new. --> blocks below are copied verbatim from lift-0.13.rng (see - PROVENANCE.md in this directory) so the content model is exactly the spec's; - only the root is new. + for a ranges-only document, yet FieldWorks and The Combine write them + routinely. The blocks below are copied verbatim from lift-0.13.rng + (see PROVENANCE.md in this directory) so the content model is exactly the + spec's; only the root is new. --> """ From 0ab57e75b4b675b576185ca94c4fbd1ba9202aaa Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 23 Jul 2026 15:45:52 -0400 Subject: [PATCH 41/42] Drop numbered data-model quirk references from comments These comments (quirk 1, 2, 3, 4, 11) implied a shared, enumerated catalog that never existed anywhere in the repo, with gaps at 5-10 and no canonical list to resolve the numbers against. Each site already explains the specific oddity in prose, so the number added a dangling cross-reference without a payoff. Replaced with self-contained wording. Also tighten a License line in schemas/PROVENANCE.md to drop the redundant "see LICENSE" parenthetical. --- src/sil_lift/_header.py | 4 ++-- src/sil_lift/_model.py | 10 +++++----- src/sil_lift/_reader.py | 6 +++--- src/sil_lift/_text.py | 12 ++++++------ src/sil_lift/schemas/PROVENANCE.md | 2 +- tests/test_writer.py | 6 +++--- 6 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/sil_lift/_header.py b/src/sil_lift/_header.py index 9fe7e1f..215c544 100644 --- a/src/sil_lift/_header.py +++ b/src/sil_lift/_header.py @@ -2,8 +2,8 @@ The header ```` (a field *definition*) is a structurally different element from the entry-level ```` usage variant -(data-model quirk 1) — hence ``FieldDefinition`` here vs ``Field`` in -``_model``. None of these elements are extensible. +— hence ``FieldDefinition`` here vs ``Field`` in ``_model``. None of these +elements are extensible. """ from __future__ import annotations diff --git a/src/sil_lift/_model.py b/src/sil_lift/_model.py index 8c73a2d..353e036 100644 --- a/src/sil_lift/_model.py +++ b/src/sil_lift/_model.py @@ -1,8 +1,8 @@ """Entry-side model: Entry, Sense, and everything below them, plus Lexicon. Shapes follow the LIFT 0.13 RNG inventory exactly. Extensibility is a -three-way split (data-model quirk 4): the eight fully-extensible elements -derive from ``_Extensible``; the usage ```` gets the field-less variant +three-way split: the eight fully-extensible elements derive from +``_Extensible``; the usage ```` gets the field-less variant ``_ExtensibleNoFields`` (no field-in-field recursion); ``GrammaticalInfo`` is the outlier with bare traits only. Typed attributes that fail to parse (malformed dates/integers in real-world files) are preserved verbatim in the @@ -78,7 +78,7 @@ class Field(_ExtensibleNoFields): @dataclass(slots=True) class GrammaticalInfo: - """A ````; carries traits only (quirk 4 outlier).""" + """A ````; the extensibility outlier — traits only, no fields.""" value: str traits: list[Trait] = field(default_factory=list) @@ -133,7 +133,7 @@ class Relation(_Extensible): @dataclass(slots=True, kw_only=True) class Etymology(_Extensible): - """An ````; glosses are form-shaped (quirk 3).""" + """An ````; glosses are form-shaped, not multitext-shaped.""" type: str source: str @@ -197,7 +197,7 @@ class Sense(_Extensible): subsenses: list[Sense] = field(default_factory=list) def gloss(self, lang: str) -> Text | None: - """The gloss text in ``lang``, or None (first match; quirk-3 helper).""" + """The gloss text in ``lang``, or None (first match; glosses are form-shaped).""" for gloss_form in self.glosses: if gloss_form.lang == lang: return gloss_form.text diff --git a/src/sil_lift/_reader.py b/src/sil_lift/_reader.py index 6fd140b..2d6cae0 100644 --- a/src/sil_lift/_reader.py +++ b/src/sil_lift/_reader.py @@ -6,8 +6,8 @@ The only refusals are non-XML input, a non-```` root, and a version other than 0.13. -Interleave everywhere (data-model quirk 2) means child order is never assumed: -every parser dispatches children by tag, whatever their order. +The RNG uses interleave everywhere, so child order is never assumed: every +parser dispatches children by tag, whatever their order. """ from __future__ import annotations @@ -285,7 +285,7 @@ def _parse_span(el: etree._Element) -> Span: def _parse_form(el: etree._Element) -> Form: - """A or (form-shaped, quirk 3) .""" + """A or (form-shaped) .""" form = Form(None) attrs = _split_attrs(el, ("lang",), form.extra) form.lang = attrs.get("lang") diff --git a/src/sil_lift/_text.py b/src/sil_lift/_text.py index 287dd54..beb8849 100644 --- a/src/sil_lift/_text.py +++ b/src/sil_lift/_text.py @@ -1,11 +1,11 @@ """The text model: Span, Text, Form, Multitext, plus Trait and Annotation. -```` is mixed content with recursively nestable ```` (data-model -quirk 11), so ``Text`` is structured — an ordered list of ``str | Span`` -fragments — with ``str(...)`` as the flattening escape hatch. ``Multitext`` is -the "one localized text per language" collection used all over LIFT; ``gloss`` -is form-shaped rather than multitext-shaped (quirk 3), which is why ``Form`` is -a public type of its own. +```` is mixed content with recursively nestable ````, so ``Text`` +is structured — an ordered list of ``str | Span`` fragments — with +``str(...)`` as the flattening escape hatch. ``Multitext`` is the "one +localized text per language" collection used all over LIFT; ``gloss`` is +form-shaped rather than multitext-shaped, which is why ``Form`` is a public +type of its own. """ from __future__ import annotations diff --git a/src/sil_lift/schemas/PROVENANCE.md b/src/sil_lift/schemas/PROVENANCE.md index 9b4e9b6..7003145 100644 --- a/src/sil_lift/schemas/PROVENANCE.md +++ b/src/sil_lift/schemas/PROVENANCE.md @@ -19,4 +19,4 @@ `.lift-ranges` files exists upstream. Built from the `range`/`range-element` defines of the vendored `lift-0.13.rng` so the content model matches the spec exactly (regenerate with `tests/tools/build_ranges_schema.py`). -- **License**: MIT (this project's own; see `LICENSE`). +- **License**: MIT — this project's own `LICENSE`. diff --git a/tests/test_writer.py b/tests/test_writer.py index 4d28d7b..d610dc5 100644 --- a/tests/test_writer.py +++ b/tests/test_writer.py @@ -20,9 +20,9 @@ def _normalize(el: etree._Element) -> None: """Make interleave-equivalent documents compare equal. Outside mixed content: drop ignorable whitespace, then stable-sort children - by tag — the RNG uses interleave everywhere (quirk 2), so cross-type sibling - order is not semantically significant, while relative order within one tag - (a repeated list) is preserved by the stable sort. + by tag — the RNG uses interleave everywhere, so cross-type sibling order is + not semantically significant, while relative order within one tag (a + repeated list) is preserved by the stable sort. """ if el.tag in ("text", "span"): return # everything inside mixed content is significant From 7ccf0b4330ecc9ea7eb6cd918c44b8ead5933030 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 23 Jul 2026 16:17:38 -0400 Subject: [PATCH 42/42] Widen duplicate-guid and undefined-range-value semantic checks duplicate-guid previously scanned only entry guids; range and range-element guids (both schema-legal) went unchecked. Scope is now per rendered document, matching the C# Validator's document-wide guid scan: the .lift (entries plus inline header ranges) and each .lift-ranges companion are checked independently. undefined-range-value previously only inspected entry-direct traits and a sense's own grammatical-info. Real FLEx exports nest range-keyed traits inside (is-primary, complex-form-type) and (morph-type), and grammatical-info can appear on too. Both checks now walk the full entry tree via generic recursive helpers mirroring the existing _iter_multitexts pattern. The widened duplicate-guid check surfaces a real defect in the bundled FLEx fixtures: FLEx aliases its part-of-speech list under both grammatical-info and from-part-of-speech range ids (and similarly for Publications/do-not-publish-in), reusing the same range-element guids under each. Now reported and locked in by tests (5 occurrences in AllFLExFields, 37 in Sango). Co-Authored-By: Claude Sonnet 5 --- CHANGELOG.md | 10 ++- src/sil_lift/_validate.py | 151 +++++++++++++++++++++++++++---------- tests/corpus/PROVENANCE.md | 14 ++++ tests/test_validate.py | 65 +++++++++++++++- 4 files changed, 198 insertions(+), 42 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f460f..d6962fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,9 +54,13 @@ releases may contain breaking changes. (file/entry/line). RELAX NG layer with two documented deviations from raw libxml2 (href masking with `uri-not-rfc` warnings; tag-grouped validation to sidestep libxml2's interleave limitation); authored ranges schema over - companions; semantic checks: duplicate-guid, dangling-ref, range-parent, - undefined-range-value (NFC-normalized), duplicate-form-lang, missing-media, - dangling-ranges-href, and (opt-in via `require_ids`) missing-id. + companions; semantic checks: duplicate-guid (entries, and + ranges/range-elements within their own document — matching the C# + `Validator`'s document-wide guid scan), dangling-ref, range-parent, + undefined-range-value (every grammatical-info and range-keyed trait + reachable from an entry, however nested \+ NFC-normalized), + duplicate-form-lang, missing-media, dangling-ranges-href, and (opt-in via + `require_ids`) missing-id. - Canonical sort: `Lexicon.sort()` / `RangesFile.sort()` (entries by case-folded guid/id, ranges/range-elements by id, field definitions by tag; informed by the C# LiftSorter, locale-independent) and diff --git a/src/sil_lift/_validate.py b/src/sil_lift/_validate.py index 0a40bf5..e735d2a 100644 --- a/src/sil_lift/_validate.py +++ b/src/sil_lift/_validate.py @@ -20,12 +20,14 @@ left untouched. 2. The project-authored ``lift-ranges-0.13.rng`` over each tracked ``.lift-ranges`` companion. -3. Semantic checks the grammar cannot express: duplicate entry GUIDs, - dangling ``relation/@ref`` and ``variant/@ref``, ``range-element/@parent`` - integrity, undefined range values (grammatical-info and range-keyed - traits), duplicate form languages (the RNG's Schematron rule, which lxml - ignores), missing media files, header ``range/@href`` references that - resolve to no companion, and — opt-in — entries/senses missing a stable id. +3. Semantic checks the grammar cannot express: duplicate GUIDs (entries, and + ranges/range-elements within their own document), dangling ``relation/@ref`` + and ``variant/@ref``, ``range-element/@parent`` integrity, undefined range + values (every grammatical-info and range-keyed trait anywhere in the entry, + however deeply nested), duplicate form languages (the RNG's Schematron + rule, which lxml ignores), missing media files, header ``range/@href`` + references that resolve to no companion, and — opt-in — entries/senses + missing a stable id. """ from __future__ import annotations @@ -38,8 +40,8 @@ from lxml import etree from ._errors import LiftValidationError -from ._model import Lexicon, _normalize_href -from ._text import Multitext +from ._model import GrammaticalInfo, Lexicon, _normalize_href +from ._text import Multitext, Trait if TYPE_CHECKING: import os @@ -245,6 +247,44 @@ def _iter_multitexts(obj: object) -> Iterator[tuple[str, Multitext]]: yield from _iter_multitexts(value) +def _iter_traits(obj: object) -> Iterator[Trait]: + """Every ``Trait`` reachable from ``obj``, generic over the model shape. + + Traits are not just entry/sense-direct: real FLEx exports nest them inside + ```` (``is-primary``, ``complex-form-type``), ```` + (``morph-type``), ````, and other extensible elements — + walking the dataclass tree (mirrors ``_iter_multitexts``) catches all of + them instead of only the two levels a hand-written traversal would name. + """ + if isinstance(obj, Trait): + yield obj + return + if isinstance(obj, list): + for item in obj: + yield from _iter_traits(item) + return + if not is_dataclass(obj) or isinstance(obj, type): + return + for f in fields(obj): + yield from _iter_traits(getattr(obj, f.name)) + + +def _iter_grammatical_infos(obj: object) -> Iterator[GrammaticalInfo]: + """Every ``GrammaticalInfo`` reachable from ``obj`` (sense, reversal, and + reversal ``main`` chains all carry one).""" + if isinstance(obj, GrammaticalInfo): + yield obj + return + if isinstance(obj, list): + for item in obj: + yield from _iter_grammatical_infos(item) + return + if not is_dataclass(obj) or isinstance(obj, type): + return + for f in fields(obj): + yield from _iter_grammatical_infos(getattr(obj, f.name)) + + def _semantic_problems( lexicon: Lexicon, entry_lines: list[tuple[int | None, str | None, str | None]], @@ -281,23 +321,58 @@ def at(index: int) -> int | None: line=at(index), ) - # Duplicate GUIDs (C# Validator parity case). - seen_guids: dict[str, int] = {} - for index, entry in enumerate(lexicon.entries): - if entry.guid is None: - continue - if entry.guid in seen_guids: - yield Problem( - "error", - "duplicate-guid", - f"guid {entry.guid} already used by entry index {seen_guids[entry.guid]}", - file=file, - entry_id=entry.id, - guid=entry.guid, - line=at(index), - ) - else: - seen_guids[entry.guid] = index + # Duplicate GUIDs (C# Validator parity case): Validator.GetDuplicateGuidErrors + # scans every element's guid attribute in the document being validated, not + # just entries -- the RNG also allows one on and . + # Scope is per rendered document, matching that per-file scan: the .lift + # (entries plus any inline header ranges/range-elements) is one scope, and + # each .lift-ranges companion (its own ranges/range-elements) is another. + def _range_guids( + ranges: list[Range], + ) -> Iterator[tuple[str, str, str | None, int | None]]: + for range_ in ranges: + if range_.guid is not None: + yield f"range {range_.id!r}", range_.guid, None, None + for element in range_.elements: + if element.guid is not None: + yield ( + f"range-element {element.id!r} (range {range_.id!r})", + element.guid, + None, + None, + ) + + def _duplicate_guid_problems( + pairs: Iterator[tuple[str, str, str | None, int | None]], doc_file: Path | None + ) -> Iterator[Problem]: + first_seen: dict[str, str] = {} + for label, guid, entry_id, line in pairs: + if guid in first_seen: + yield Problem( + "error", + "duplicate-guid", + f"guid {guid} already used by {first_seen[guid]}", + file=doc_file, + entry_id=entry_id, + guid=guid, + line=line, + ) + else: + first_seen[guid] = label + + def _entry_guids() -> Iterator[tuple[str, str, str | None, int | None]]: + for index, entry in enumerate(lexicon.entries): + if entry.guid is not None: + label = f"entry {entry.id!r}" if entry.id else f"entry #{index}" + yield label, entry.guid, entry.id, at(index) + + def _main_doc_guids() -> Iterator[tuple[str, str, str | None, int | None]]: + yield from _entry_guids() + yield from _range_guids(lexicon.header.ranges) + + yield from _duplicate_guid_problems(_main_doc_guids(), file) + for ranges_file in lexicon.ranges_files.values(): + yield from _duplicate_guid_problems(_range_guids(ranges_file.ranges), ranges_file.path) # Dangling refs: relation/@ref and variant/@ref may target an entry id, # an entry guid, or a sense id (FLEx does all three). @@ -380,11 +455,16 @@ def at(index: int) -> int | None: file=lexicon.path, ) - # Undefined range values: grammatical-info against the grammatical-info - # range; traits whose name matches a known range. Only ranges that - # actually enumerate elements can vouch for values; empty values skipped - # (FLEx writes them). Comparison is NFC-normalized: FLEx writes the .lift - # in NFC but the companion .lift-ranges in NFD within the same export. + # Undefined range values: every grammatical-info (sense, reversal, and + # reversal main chains) against the grammatical-info range; every trait + # anywhere in the entry whose name matches a known range — not just + # entry- and sense-direct ones, since real FLEx exports nest traits like + # is-primary/complex-form-type inside and morph-type inside + # (_iter_traits/_iter_grammatical_infos walk the whole entry). + # Only ranges that actually enumerate elements can vouch for values; + # empty values skipped (FLEx writes them). Comparison is NFC-normalized: + # FLEx writes the .lift in NFC but the companion .lift-ranges in NFD + # within the same export. def nfc(value: str) -> str: return unicodedata.normalize("NFC", value) @@ -397,15 +477,10 @@ def defined(range_id: str) -> set[str] | None: grammatical_values = defined("grammatical-info") for index, entry in enumerate(lexicon.entries): checks: list[tuple[str, str, set[str]]] = [] # (label, value, allowed) - for sense in _iter_senses(entry): - info = sense.grammatical_info - if info is not None and info.value and grammatical_values is not None: + for info in _iter_grammatical_infos(entry): + if info.value and grammatical_values is not None: checks.append(("grammatical-info", info.value, grammatical_values)) - for trait in sense.traits: - allowed = defined(trait.name) - if allowed is not None and trait.value: - checks.append((f"trait {trait.name!r}", trait.value, allowed)) - for trait in entry.traits: + for trait in _iter_traits(entry): allowed = defined(trait.name) if allowed is not None and trait.value: checks.append((f"trait {trait.name!r}", trait.value, allowed)) diff --git a/tests/corpus/PROVENANCE.md b/tests/corpus/PROVENANCE.md index 266c55b..9ee37fc 100644 --- a/tests/corpus/PROVENANCE.md +++ b/tests/corpus/PROVENANCE.md @@ -138,6 +138,20 @@ hrefs, which pass). `tests/test_corpus.py` locks in both lists. `ranges/test20080407.lift-ranges` validates. Carried losslessly in `Extras`; same implication as the anyURI quirk. +## Known semantic ``duplicate-guid`` findings in real fixtures + +Both real FLEx `.lift-ranges` companions (`flex/AllFLExFields/AllFLExFields.lift-ranges`, +`large/sango/sango.lift-ranges`) genuinely reuse the same `guid` under two +different range names: FLEx aliases its part-of-speech possibility list under +both `grammatical-info` and `from-part-of-speech` (identical range-element ids +and guids under each), and separately aliases a custom list under both +`Publications`/`do-not-publish-in` (same range guid). This is a real defect by +LIFT's own rules — the RNG never declares `guid` unique, but the C# `Validator` +(`GetDuplicateGuidErrors`) scans every element's `guid` attribute in a document +with one `HashSet` and would flag this too — so sil-lift's `duplicate-guid` +check reports it as an error, matching that behavior. `tests/test_validate.py` +locks in the exact counts found (5 in AllFLExFields, 37 in Sango). + ## generated/ — synthetic large files (not committed) Produced by `tests/tools/generate_large.py` for streaming/perf tests; diff --git a/tests/test_validate.py b/tests/test_validate.py index 4ae596d..6249154 100644 --- a/tests/test_validate.py +++ b/tests/test_validate.py @@ -188,7 +188,10 @@ def test_flex_lift_is_schema_clean_but_companion_is_not() -> None: ] assert lift_errors == [] # href-masking + tag-grouping make the .lift clean assert ranges_errors, "FLEx trait/field in range-element (see PROVENANCE.md)" - assert {p.code for p in ranges_errors} == {"schema"} + # duplicate-guid: FLEx aliases its POS possibility list under both + # "grammatical-info" and "from-part-of-speech" range ids, reusing the + # same range-element guids under each (see PROVENANCE.md). + assert {p.code for p in ranges_errors} == {"schema", "duplicate-guid"} def test_sango_real_defects_are_found() -> None: @@ -201,6 +204,10 @@ def test_sango_real_defects_are_found() -> None: assert by_code.get("range-parent") == 2 assert by_code.get("undefined-range-value") == 1 assert by_code.get("schema", 0) > 0 # companion's trait/field extensions + # 37 real duplicate guids: FLEx aliases its POS list under both + # "grammatical-info" and "from-part-of-speech" (same range-element guids + # under each), and similarly for "Publications"/"do-not-publish-in". + assert by_code.get("duplicate-guid") == 37 assert all( p.file is not None and p.file.suffix == ".lift-ranges" for p in problems @@ -259,6 +266,62 @@ def test_duplicate_form_lang_found_in_nested_multitext() -> None: assert any(p.message.startswith("forms has more than one form") for p in problems) +def test_undefined_range_value_found_in_nested_relation_trait() -> None: + # Regression: a trait nested inside a (real FLEx pattern: the + # is-primary/complex-form-type traits under a component-lexeme relation, + # see PROVENANCE.md) must be checked too, not just entry- and sense-direct + # traits. + lexicon = sil_lift.Lexicon() + ranges = sil_lift.RangesFile() + ranges.add_range("complex-form-type").add_element("Compound") + lexicon.add_ranges_file(ranges, href="x.lift-ranges") + entry = sil_lift.Entry(id="e1", guid="77777777-7777-4444-8888-777777777777") + entry.lexical_unit["en"] = "e1" + relation = sil_lift.Relation(type="_component-lexeme", ref="e1") + relation.traits.append(sil_lift.Trait(name="complex-form-type", value="Idiom")) + entry.relations.append(relation) + lexicon.entries.append(entry) + flagged = [p for p in lexicon.iter_problems() if p.code == "undefined-range-value"] + assert len(flagged) == 1 + assert "Idiom" in flagged[0].message + + +def test_undefined_range_value_found_on_reversal_grammatical_info() -> None: + # Regression: grammatical-info on a (and its main chain) must + # be checked too, not just a sense's own grammatical-info. + lexicon = sil_lift.Lexicon() + ranges = sil_lift.RangesFile() + ranges.add_range("grammatical-info").add_element("Noun") + lexicon.add_ranges_file(ranges, href="x.lift-ranges") + entry = sil_lift.Entry(id="e1", guid="aaaaaaaa-1111-4444-8888-aaaaaaaaaaaa") + entry.lexical_unit["en"] = "e1" + sense = sil_lift.Sense(id="s1") + sense.reversals.append(sil_lift.Reversal(grammatical_info=sil_lift.GrammaticalInfo("Verb"))) + entry.senses.append(sense) + lexicon.entries.append(entry) + flagged = [p for p in lexicon.iter_problems() if p.code == "undefined-range-value"] + assert len(flagged) == 1 + assert "Verb" in flagged[0].message + + +def test_duplicate_guid_across_range_elements() -> None: + # Regression: a guid reused across range-elements (real FLEx pattern: + # aliasing one possibility list under two range ids, see PROVENANCE.md) + # must be caught too, not just duplicate entry guids. + lexicon = sil_lift.Lexicon() + ranges = sil_lift.RangesFile() + shared_guid = "88888888-8888-4444-8888-888888888888" + ranges.add_range("grammatical-info").add_element("Noun", guid=shared_guid) + ranges.add_range("from-part-of-speech").add_element("Noun", guid=shared_guid) + lexicon.add_ranges_file(ranges, href="x.lift-ranges") + entry = sil_lift.Entry(id="e1", guid="99999999-9999-4444-8888-999999999999") + entry.lexical_unit["en"] = "e1" + lexicon.entries.append(entry) + flagged = [p for p in lexicon.iter_problems() if p.code == "duplicate-guid"] + assert len(flagged) == 1 + assert shared_guid in flagged[0].message + + def test_in_memory_lexicon_validation() -> None: lexicon = sil_lift.Lexicon() for entry_id in ("a", "b"):